Home
last modified time | relevance | path

Searched +full:- +full:x (Results 1 – 25 of 1520) sorted by relevance

12345678910>>...61

/OK3568_Linux_fs/u-boot/include/andestech/
H A Dandes_pcu.h5 * SPDX-License-Identifier: GPL-2.0+
25 unsigned int rev; /* 0x00 - PCU Revision */
26 unsigned int spinfo; /* 0x04 - Scratch Pad Info */
27 unsigned int rsvd1[2]; /* 0x08-0x0C: Reserved */
28 unsigned int soc_id; /* 0x10 - SoC ID */
29 unsigned int soc_ahb; /* 0x14 - SoC AHB configuration */
30 unsigned int soc_apb; /* 0x18 - SoC APB configuration */
32 unsigned int dcsrcr0; /* 0x20 - Driving Capability
34 unsigned int dcsrcr1; /* 0x24 - Driving Capability
36 unsigned int dcsrcr2; /* 0x28 - Driving Capability
[all …]
/OK3568_Linux_fs/kernel/tools/lib/bpf/
H A Dbpf_tracing.h1 /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
54 #define PT_REGS_PARM1(x) ((x)->di) argument
55 #define PT_REGS_PARM2(x) ((x)->si) argument
56 #define PT_REGS_PARM3(x) ((x)->dx) argument
57 #define PT_REGS_PARM4(x) ((x)->cx) argument
58 #define PT_REGS_PARM5(x) ((x)->r8) argument
59 #define PT_REGS_RET(x) ((x)->sp) argument
60 #define PT_REGS_FP(x) ((x)->bp) argument
61 #define PT_REGS_RC(x) ((x)->ax) argument
62 #define PT_REGS_SP(x) ((x)->sp) argument
[all …]
/OK3568_Linux_fs/kernel/drivers/video/rockchip/iep/
H A Dhw_iep_reg.h1 /* SPDX-License-Identifier: GPL-2.0 */
106 /*-----------------------------------------------------------------
108 -----------------------------------------------------------------*/
110 #define IEP_REGB_V_REVERSE_DISP_Z(x) (((x)&0x1 ) << 31 ) argument
111 #define IEP_REGB_H_REVERSE_DISP_Z(x) (((x)&0x1 ) << 30 ) argument
112 #define IEP_REGB_SCL_EN_Z(x) (((x)&0x1 ) << 28 ) argument
113 #define IEP_REGB_SCL_SEL_Z(x) (((x)&0x3 ) << 26 ) argument
114 #define IEP_REGB_SCL_UP_COE_SEL_Z(x) (((x)&0x3 ) << 24 ) argument
115 #define IEP_REGB_DIL_EI_SEL_Z(x) (((x)&0x1 ) << 23 ) argument
116 #define IEP_REGB_DIL_EI_RADIUS_Z(x) (((x)&0x3 ) << 21 ) argument
[all …]
/OK3568_Linux_fs/kernel/tools/memory-model/
H A Dlinux-kernel.def1 // SPDX-License-Identifier: GPL-2.0+
4 // "Frightening small children and disconcerting grown-ups: Concurrency
9 READ_ONCE(X) __load{once}(X)
10 WRITE_ONCE(X,V) { __store{once}(X,V); }
13 smp_store_release(X,V) { __store{release}(*X,V); }
14 smp_load_acquire(X) __load{acquire}(*X)
15 rcu_assign_pointer(X,V) { __store{release}(X,V); }
16 rcu_dereference(X) __load{once}(X)
17 smp_store_mb(X,V) { __store{once}(X,V); __fence{mb}; }
23 smp_mb__before_atomic() { __fence{before-atomic}; }
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/pm/powerplay/hwmgr/
H A Dvega20_processpptables.c41 phm_cap_set(hwmgr->platform_descriptor.platformCaps, cap); in set_hw_cap()
43 phm_cap_unset(hwmgr->platform_descriptor.platformCaps, cap); in set_hw_cap()
52 const void *table_address = hwmgr->soft_pp_table; in get_powerplay_table()
56 smu_atom_get_data_table(hwmgr->adev, index, in get_powerplay_table()
59 hwmgr->soft_pp_table = table_address; in get_powerplay_table()
60 hwmgr->soft_pp_table_size = size; in get_powerplay_table()
71 pr_info("Version = 0x%08x\n", pptable->Version);
73 pr_info("FeaturesToRun[0] = 0x%08x\n", pptable->FeaturesToRun[0]);
74 pr_info("FeaturesToRun[1] = 0x%08x\n", pptable->FeaturesToRun[1]);
76 pr_info("SocketPowerLimitAc0 = %d\n", pptable->SocketPowerLimitAc0);
[all …]
/OK3568_Linux_fs/kernel/drivers/cpufreq/
H A Dlonghaul.h1 /* SPDX-License-Identifier: GPL-2.0-only */
6 * VIA-specific information
59 -1, /* 0000 -> RESERVED */
60 30, /* 0001 -> 3.0x */
61 40, /* 0010 -> 4.0x */
62 -1, /* 0011 -> RESERVED */
63 -1, /* 0100 -> RESERVED */
64 35, /* 0101 -> 3.5x */
65 45, /* 0110 -> 4.5x */
66 55, /* 0111 -> 5.5x */
[all …]
/OK3568_Linux_fs/kernel/lib/crypto/
H A Dchacha.c1 // SPDX-License-Identifier: GPL-2.0-or-later
16 static void chacha_permute(u32 *x, int nrounds) in chacha_permute() argument
24 x[0] += x[4]; x[12] = rol32(x[12] ^ x[0], 16); in chacha_permute()
25 x[1] += x[5]; x[13] = rol32(x[13] ^ x[1], 16); in chacha_permute()
26 x[2] += x[6]; x[14] = rol32(x[14] ^ x[2], 16); in chacha_permute()
27 x[3] += x[7]; x[15] = rol32(x[15] ^ x[3], 16); in chacha_permute()
29 x[8] += x[12]; x[4] = rol32(x[4] ^ x[8], 12); in chacha_permute()
30 x[9] += x[13]; x[5] = rol32(x[5] ^ x[9], 12); in chacha_permute()
31 x[10] += x[14]; x[6] = rol32(x[6] ^ x[10], 12); in chacha_permute()
32 x[11] += x[15]; x[7] = rol32(x[7] ^ x[11], 12); in chacha_permute()
[all …]
/OK3568_Linux_fs/external/rkwifibt/bin/arm/
HDrtlbtmp ... ] <-- HCI EVENT event code: 0x%x %d %s: opcode[0
/OK3568_Linux_fs/kernel/Documentation/sound/cards/
H A Dmultisound.sh4 # -- Andrew Veliath <andrewtv@usa.net>
15 # -=-=- Getting Firmware -=-=-
26 # Currently, full-duplex digital audio (/dev/dsp only, /dev/audio is
37 # snd-msnd-lib - MultiSound base (requires snd)
39 # snd-msnd-classic - Base audio/mixer support for Classic, Monetery and
42 # snd-msnd-pinnacle - Base audio/mixer support for Pinnacle and Fiji cards
45 # Important Notes - Read Before Using
69 # These cards are configured through the driver snd-msnd-classic. You must
81 # can be used to configure the card in non-PnP mode, and in PnP mode
84 # pinnaclecfg is not required; you can use the snd-msnd-pinnacle module
[all …]
/OK3568_Linux_fs/kernel/drivers/media/i2c/rk628/
H A Drk628_hdmirx.h1 /* SPDX-License-Identifier: GPL-2.0 */
5 * Author: Shunqing Chen <csq@rock-chips.com>
13 /* --------- EDID and HDCP KEY ------- */
21 /* --------- GPIO0 REG --------------- */
27 /* --------- HDMI RX REG ------------- */
31 #define HOT_PLUG_DETECT_INPUT_A(x) UPDATE(x, 24, 24) argument
33 #define HOT_PLUG_DETECT(x) UPDATE(x, 0, 0) argument
38 #define SEL_PIXCLKSRC(x) UPDATE(x, 19, 18) argument
40 #define INPUT_SELECT(x) UPDATE(x, 16, 16) argument
46 #define SPIKE_FILTER_EN(x) UPDATE(x, 18, 18) argument
[all …]
/OK3568_Linux_fs/u-boot/cmd/
H A Datags.c1 // SPDX-License-Identifier: GPL-2.0+
26 if (atags_bad_magic(t->hdr.magic)) in atags_stat()
29 in_use += (t->hdr.size << 2); in atags_stat()
32 in_available = ATAGS_SIZE - in_use; in atags_stat()
35 printf(" addr = 0x%08x ~ 0x%08x\n", start, end); in atags_stat()
36 printf(" Total size = 0x%08x\n", ATAGS_SIZE); in atags_stat()
37 printf(" in use size = 0x%08x\n", in_use); in atags_stat()
38 printf(" available size = 0x%08x\n", in_available); in atags_stat()
48 switch (t->hdr.magic) { in atags_print_tag()
51 printf(" magic = 0x%x\n", t->hdr.magic); in atags_print_tag()
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/nvkm/nvfw/
H A Dflcn.c29 nvkm_debug(subdev, "\tdmaIdx : %d\n", hdr->dma_idx); in loader_config_dump()
30 nvkm_debug(subdev, "\tcodeDmaBase : 0x%xx\n", hdr->code_dma_base); in loader_config_dump()
31 nvkm_debug(subdev, "\tcodeSizeTotal : 0x%x\n", hdr->code_size_total); in loader_config_dump()
32 nvkm_debug(subdev, "\tcodeSizeToLoad: 0x%x\n", hdr->code_size_to_load); in loader_config_dump()
33 nvkm_debug(subdev, "\tcodeEntryPoint: 0x%x\n", hdr->code_entry_point); in loader_config_dump()
34 nvkm_debug(subdev, "\tdataDmaBase : 0x%x\n", hdr->data_dma_base); in loader_config_dump()
35 nvkm_debug(subdev, "\tdataSize : 0x%x\n", hdr->data_size); in loader_config_dump()
36 nvkm_debug(subdev, "\toverlayDmaBase: 0x%x\n", hdr->overlay_dma_base); in loader_config_dump()
37 nvkm_debug(subdev, "\targc : 0x%08x\n", hdr->argc); in loader_config_dump()
38 nvkm_debug(subdev, "\targv : 0x%08x\n", hdr->argv); in loader_config_dump()
[all …]
/OK3568_Linux_fs/kernel/net/xfrm/
H A Dxfrm_state.c1 // SPDX-License-Identifier: GPL-2.0-only
11 * Split up af-specific functions
35 rcu_dereference_protected((table), lockdep_is_held(&(net)->xfrm.xfrm_state_lock))
52 static inline bool xfrm_state_hold_rcu(struct xfrm_state __rcu *x) in xfrm_state_hold_rcu() argument
54 return refcount_inc_not_zero(&x->refcnt); in xfrm_state_hold_rcu()
63 return __xfrm_dst_hash(daddr, saddr, reqid, family, net->xfrm.state_hmask); in xfrm_dst_hash()
71 return __xfrm_src_hash(daddr, saddr, family, net->xfrm.state_hmask); in xfrm_src_hash()
78 return __xfrm_spi_hash(daddr, spi, proto, family, net->xfrm.state_hmask); in xfrm_spi_hash()
88 struct xfrm_state *x; in xfrm_hash_transfer() local
90 hlist_for_each_entry_safe(x, tmp, list, bydst) { in xfrm_hash_transfer()
[all …]
/OK3568_Linux_fs/kernel/drivers/scsi/qla4xxx/
H A Dql4_dbg.c1 // SPDX-License-Identifier: GPL-2.0-only
4 * Copyright (c) 2003-2012 QLogic Corporation
19 printk("------------------------------------------------------------" in qla4xxx_dump_buffer()
20 "--\n"); in qla4xxx_dump_buffer()
22 printk("%02x", *c); in qla4xxx_dump_buffer()
38 printk(KERN_INFO "mailbox[%d] = 0x%08X\n", in qla4xxx_dump_registers()
39 i, readl(&ha->qla4_82xx_reg->mailbox_in[i])); in qla4xxx_dump_registers()
44 printk(KERN_INFO "0x%02X mailbox[%d] = 0x%08X\n", in qla4xxx_dump_registers()
46 readw(&ha->reg->mailbox[i])); in qla4xxx_dump_registers()
49 printk(KERN_INFO "0x%02X flash_address = 0x%08X\n", in qla4xxx_dump_registers()
[all …]
/OK3568_Linux_fs/app/qfm/
H A Dmimeapps.list6 audio/AMR-WB=qplayer.desktop
21 audio/rn-mpeg=qplayer.desktop
26 audio/x-adpcm=qplayer.desktop
27 audio/x-aiff=qplayer.desktop
28 audio/x-ape=qplayer.desktop
29 audio/x-flac=qplayer.desktop
30 audio/x-gsm=qplayer.desktop
31 audio/x-it=qplayer.desktop
32 audio/x-m4a=qplayer.desktop
33 audio/x-matroska=qplayer.desktop
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A Dcmath1 // -*- C++ -*-
2 //===---------------------------- cmath -----------------------------------===//
9 //===----------------------------------------------------------------------===//
48 floating_point abs(floating_point x);
50 floating_point acos (arithmetic x);
51 float acosf(float x);
52 long double acosl(long double x);
54 floating_point asin (arithmetic x);
55 float asinf(float x);
56 long double asinl(long double x);
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A Dcmath1 // -*- C++ -*-
2 //===---------------------------- cmath -----------------------------------===//
9 //===----------------------------------------------------------------------===//
48 floating_point abs(floating_point x);
50 floating_point acos (arithmetic x);
51 float acosf(float x);
52 long double acosl(long double x);
54 floating_point asin (arithmetic x);
55 float asinf(float x);
56 long double asinl(long double x);
[all …]
/OK3568_Linux_fs/kernel/arch/arm/mach-omap1/
H A Dboard-htcherald.c1 // SPDX-License-Identifier: GPL-2.0-or-later
7 * Based on the board-htcwizard.c file from the linwizard project:
19 #include <linux/platform_data/i2c-gpio.h>
25 #include <linux/platform_data/keypad-omap.h>
27 #include <asm/mach-types.h>
59 * Chip 3 - 0x03
62 * ------------------------------------
63 * DPAD light x x x x x x x 1
64 * SoundDev x x x x 1 x x x
65 * Screen white 1 x x x x x x x
[all …]
/OK3568_Linux_fs/kernel/drivers/media/platform/rockchip/isp/
H A Dprocfs.c1 // SPDX-License-Identifier: GPL-2.0
34 seq_printf(p, "%-10s %s(0x%x)\n", "DPCC0", (val & 1) ? "ON" : "OFF", val); in isp20_show()
36 seq_printf(p, "%-10s %s(0x%x)\n", "DPCC1", (val & 1) ? "ON" : "OFF", val); in isp20_show()
38 seq_printf(p, "%-10s %s(0x%x)\n", "DPCC2", (val & 1) ? "ON" : "OFF", val); in isp20_show()
40 seq_printf(p, "%-10s %s(0x%x)\n", "BLS", (val & 1) ? "ON" : "OFF", val); in isp20_show()
42 seq_printf(p, "%-10s %s(0x%x)\n", "SDG", in isp20_show()
45 seq_printf(p, "%-10s %s(0x%x)\n", "LSC", (val & 1) ? "ON" : "OFF", val); in isp20_show()
47 seq_printf(p, "%-10s %s(0x%x) (gain: 0x%08x, 0x%08x)\n", "AWBGAIN", in isp20_show()
52 seq_printf(p, "%-10s %s(0x%x)\n", "DEBAYER", (val & 1) ? "ON" : "OFF", val); in isp20_show()
54 seq_printf(p, "%-10s %s(0x%x)\n", "CCM", (val & 1) ? "ON" : "OFF", val); in isp20_show()
[all …]
/OK3568_Linux_fs/u-boot/arch/arm/include/asm/arch-mx7ulp/
H A Dimx_lpi2c.h6 * SPDX-License-Identifier: GPL-2.0+
80 /* ----------------------------------------------------------------------------
81 -- LPI2C Register Masks
82 ---------------------------------------------------------------------------- */
89 /*! @name VERID - Version ID Register */
92 #define LPI2C_VERID_FEATURE(x) (((uint32_t)(((uint32_t)(x)) << LPI2C_VERID_FEATUR… argument
95 #define LPI2C_VERID_MINOR(x) (((uint32_t)(((uint32_t)(x)) << LPI2C_VERID_MINOR_… argument
98 #define LPI2C_VERID_MAJOR(x) (((uint32_t)(((uint32_t)(x)) << LPI2C_VERID_MAJOR_… argument
100 /*! @name PARAM - Parameter Register */
103 #define LPI2C_PARAM_MTXFIFO(x) (((uint32_t)(((uint32_t)(x)) << LPI2C_PARAM_MTXFIF… argument
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/phl/hal_g6/mac/fw_ax/rtl8852b/
H A Dhal8852b_fw_log.h3 * Copyright(c) 2012 - 2020 Realtek Corporation.
25 MSG_8852B_SAMPLE_INTEGER_X, //"Sample integer:0x%x.\n"
42 …8852B_H2CPKT_1, //"content = 0x%x 0x%x 0x%x 0x%x\n"
101 MSG_8852B_CONSOLE_1, //"- CMD -\n"
102 MSG_8852B_CONSOLE_2, //"0x%x: 0x%x\n"
103 MSG_8852B_CONSOLE_3, //"Jump to 0x%x\n"
104 MSG_8852B_CONSOLE_4, //"Set dbg level to: 0x%x\n"
105 …8852B_CONSOLE_5, //"Set dbg component bitmap to: 0x%x\n"
107 … //"--------------------------------------------------------------…
109 … //"----------------------------------------------------------…
[all …]
/OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/phl/hal_g6/mac/fw_ax/rtl8852b/
H A Dhal8852b_fw_log.h3 * Copyright(c) 2012 - 2020 Realtek Corporation.
25 MSG_8852B_SAMPLE_INTEGER_X, //"Sample integer:0x%x.\n"
42 …8852B_H2CPKT_1, //"content = 0x%x 0x%x 0x%x 0x%x\n"
101 MSG_8852B_CONSOLE_1, //"- CMD -\n"
102 MSG_8852B_CONSOLE_2, //"0x%x: 0x%x\n"
103 MSG_8852B_CONSOLE_3, //"Jump to 0x%x\n"
104 MSG_8852B_CONSOLE_4, //"Set dbg level to: 0x%x\n"
105 …8852B_CONSOLE_5, //"Set dbg component bitmap to: 0x%x\n"
107 … //"--------------------------------------------------------------…
109 … //"----------------------------------------------------------…
[all …]
/OK3568_Linux_fs/kernel/arch/powerpc/platforms/44x/
H A Dfsp2.c1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * FSP-2 board specific routines
7 * Copyright 2002-2005 MontaVista Software Inc.
10 * Copyright (c) 2003-2005 Zultys Technologies
31 #define FSP2_BUS_ERR "ibm,bus-error-irq"
32 #define FSP2_CMU_ERR "ibm,cmu-error-irq"
33 #define FSP2_CONF_ERR "ibm,conf-error-irq"
34 #define FSP2_OPBD_ERR "ibm,opbd-error-irq"
35 #define FSP2_MCUE "ibm,mc-ue-irq"
36 #define FSP2_RST_WRN "ibm,reset-warning-irq"
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/amd/pm/swsmu/smu11/
H A Dsienna_cichlid_ppt.c61 #define to_amdgpu_device(x) (container_of(x, struct amdgpu_device, pm.smu_i2c)) argument
228 struct amdgpu_device *adev = smu->adev; in sienna_cichlid_get_allowed_feature_mask()
231 return -EINVAL; in sienna_cichlid_get_allowed_feature_mask()
256 if (adev->pm.pp_feature & PP_SCLK_DPM_MASK) { in sienna_cichlid_get_allowed_feature_mask()
261 if (adev->pm.pp_feature & PP_MCLK_DPM_MASK) in sienna_cichlid_get_allowed_feature_mask()
266 if (adev->pm.pp_feature & PP_PCIE_DPM_MASK) in sienna_cichlid_get_allowed_feature_mask()
269 if (adev->pm.pp_feature & PP_DCEFCLK_DPM_MASK) in sienna_cichlid_get_allowed_feature_mask()
272 if (adev->pm.pp_feature & PP_SOCCLK_DPM_MASK) in sienna_cichlid_get_allowed_feature_mask()
275 if (adev->pm.pp_feature & PP_ULV_MASK) in sienna_cichlid_get_allowed_feature_mask()
278 if (adev->pm.pp_feature & PP_SCLK_DEEP_SLEEP_MASK) in sienna_cichlid_get_allowed_feature_mask()
[all …]
/OK3568_Linux_fs/kernel/drivers/video/rockchip/rga/
H A Drga_reg_info.h1 /* SPDX-License-Identifier: GPL-2.0 */
12 #define MIN(X, Y) ((X)<(Y)?(X):(Y)) argument
16 #define MAX(X, Y) ((X)>(Y)?(X):(Y)) argument
20 #define ABS(X) (((X) < 0) ? (-(X)) : (X)) argument
24 #define CLIP(x, a, b) ((x) < (a)) ? (a) : (((x) > (b)) ? (b) : (x)) argument
100 //-----------------------------------------------------------------
102 //-----------------------------------------------------------------
108 #define s_RGA_SYS_CTRL_CMD_MODE(x) ( (x&0x1)<<2 ) argument
109 #define s_RGA_SYS_CTRL_OP_ST_SLV(x) ( (x&0x1)<<1 ) argument
110 #define s_RGA_sys_CTRL_SOFT_RESET(x) ( (x&0x1)<<0 ) argument
[all …]

12345678910>>...61