| /kernel/linux/linux-6.6/tools/testing/selftests/bpf/verifier/ |
| D | atomic_and.c | 4 /* val = 0x110; */ 5 BPF_ST_MEM(BPF_DW, BPF_REG_10, -8, 0x110), 6 /* atomic_and(&val, 0x011); */ 7 BPF_MOV64_IMM(BPF_REG_1, 0x011), 9 /* if (val != 0x010) exit(2); */ 11 BPF_JMP_IMM(BPF_JEQ, BPF_REG_0, 0x010, 2), 15 BPF_MOV64_IMM(BPF_REG_0, 0), 16 BPF_JMP_IMM(BPF_JEQ, BPF_REG_1, 0x011, 1), 26 /* val = 0x110; */ 27 BPF_ST_MEM(BPF_DW, BPF_REG_10, -8, 0x110), [all …]
|
| D | atomic_xor.c | 4 /* val = 0x110; */ 5 BPF_ST_MEM(BPF_DW, BPF_REG_10, -8, 0x110), 6 /* atomic_xor(&val, 0x011); */ 7 BPF_MOV64_IMM(BPF_REG_1, 0x011), 9 /* if (val != 0x101) exit(2); */ 11 BPF_JMP_IMM(BPF_JEQ, BPF_REG_0, 0x101, 2), 15 BPF_MOV64_IMM(BPF_REG_0, 0), 16 BPF_JMP_IMM(BPF_JEQ, BPF_REG_1, 0x011, 1), 26 /* val = 0x110; */ 27 BPF_ST_MEM(BPF_DW, BPF_REG_10, -8, 0x110), [all …]
|
| D | atomic_or.c | 4 /* val = 0x110; */ 5 BPF_ST_MEM(BPF_DW, BPF_REG_10, -8, 0x110), 6 /* atomic_or(&val, 0x011); */ 7 BPF_MOV64_IMM(BPF_REG_1, 0x011), 9 /* if (val != 0x111) exit(2); */ 11 BPF_JMP_IMM(BPF_JEQ, BPF_REG_0, 0x111, 2), 15 BPF_MOV64_IMM(BPF_REG_0, 0), 16 BPF_JMP_IMM(BPF_JEQ, BPF_REG_1, 0x011, 1), 26 /* val = 0x110; */ 27 BPF_ST_MEM(BPF_DW, BPF_REG_10, -8, 0x110), [all …]
|
| /kernel/linux/linux-5.10/arch/arm/boot/dts/ |
| D | stih407-family.dtsi | 22 reg = <0x45000000 0x00400000>; 28 reg = <0x44000000 0x01000000>; 35 #size-cells = <0>; 36 cpu@0 { 39 reg = <0>; 41 /* u-boot puts hpen in SBC dmem at 0xa4 offset */ 42 cpu-release-addr = <0x94100A4>; 45 operating-points = <1500000 0 46 1200000 0 47 800000 0 [all …]
|
| /kernel/linux/linux-6.6/arch/arm/boot/dts/st/ |
| D | stih407-family.dtsi | 22 reg = <0x45000000 0x00400000>; 28 reg = <0x44000000 0x01000000>; 35 #size-cells = <0>; 36 cpu@0 { 39 reg = <0>; 41 /* u-boot puts hpen in SBC dmem at 0xa4 offset */ 42 cpu-release-addr = <0x94100A4>; 45 operating-points = <1500000 0 46 1200000 0 47 800000 0 [all …]
|
| /kernel/liteos_m/testsuites/sample/kernel/event/ |
| D | It_los_event_007.c | 42 g_pevent.uwEventID = 0; in TaskF01() 45 LOS_EventWrite(&g_pevent, 0x10); in TaskF01() 47 ret = LOS_EventRead(&g_pevent, 0x00000110, LOS_WAITMODE_OR, LOS_WAIT_FOREVER); in TaskF01() 49 ICUNIT_GOTO_EQUAL(g_pevent.uwEventID, 0x10, g_pevent.uwEventID, EXIT); in TaskF01() 54 LOS_EventWrite(&g_pevent, 0x110); in TaskF01() 55 ICUNIT_GOTO_EQUAL(g_pevent.uwEventID, 0x110, g_pevent.uwEventID, EXIT); in TaskF01() 57 ret = LOS_EventRead(&g_pevent, 0x00000110, LOS_WAITMODE_AND, 0); in TaskF01() 59 ICUNIT_GOTO_EQUAL(g_pevent.uwEventID, 0x110, g_pevent.uwEventID, EXIT); in TaskF01() 64 ret = LOS_EventRead(&g_pevent, 0x00000011, LOS_WAITMODE_AND, 0); in TaskF01() 65 ICUNIT_GOTO_EQUAL(ret, 0, ret, EXIT); in TaskF01() [all …]
|
| D | It_los_event_006.c | 42 ret = LOS_EventRead(&g_pevent, 0x00000110, LOS_WAITMODE_OR, LOS_WAIT_FOREVER); in TaskF01() 44 ICUNIT_GOTO_EQUAL(g_pevent.uwEventID, 0x10, g_pevent.uwEventID, EXIT); in TaskF01() 48 …ret = LOS_EventRead(&g_pevent, 0x00000110, LOS_WAITMODE_AND, 2); // 2, The timeout period for read… in TaskF01() 50 ICUNIT_GOTO_EQUAL(g_pevent.uwEventID, 0x110, g_pevent.uwEventID, EXIT); in TaskF01() 62 (void)memset_s(&task1, sizeof(TSK_INIT_PARAM_S), 0, sizeof(TSK_INIT_PARAM_S)); in Testcase() 69 g_testCount = 0; in Testcase() 71 g_pevent.uwEventID = 0; in Testcase() 80 LOS_EventWrite(&g_pevent, 0x10); in Testcase() 85 LOS_EventWrite(&g_pevent, 0x110); in Testcase() 90 ret = LOS_EventClear(&g_pevent, 0); in Testcase()
|
| /kernel/liteos_a/testsuites/kernel/sample/kernel_base/ipc/event/full/ |
| D | It_los_event_007.c | 47 g_event.uwEventID = 0; in TaskF01() 50 LOS_EventWrite(&g_event, 0x10); in TaskF01() 52 ret = LOS_EventRead(&g_event, 0x00000110, LOS_WAITMODE_OR, LOS_WAIT_FOREVER); in TaskF01() 54 ICUNIT_GOTO_EQUAL(g_event.uwEventID, 0x10, g_event.uwEventID, EXIT); in TaskF01() 59 LOS_EventWrite(&g_event, 0x110); in TaskF01() 60 ICUNIT_GOTO_EQUAL(g_event.uwEventID, 0x110, g_event.uwEventID, EXIT); in TaskF01() 62 ret = LOS_EventRead(&g_event, 0x00000110, LOS_WAITMODE_AND, 0); in TaskF01() 64 ICUNIT_GOTO_EQUAL(g_event.uwEventID, 0x110, g_event.uwEventID, EXIT); in TaskF01() 69 ret = LOS_EventRead(&g_event, 0x00000011, LOS_WAITMODE_AND, 0); in TaskF01() 70 ICUNIT_GOTO_EQUAL(ret, 0, ret, EXIT); in TaskF01() [all …]
|
| D | It_los_event_006.c | 46 ret = LOS_EventRead(&g_event, 0x00000110, LOS_WAITMODE_OR, LOS_WAIT_FOREVER); in TaskF01() 48 ICUNIT_GOTO_EQUAL(g_event.uwEventID, 0x10, g_event.uwEventID, EXIT); in TaskF01() 52 …ret = LOS_EventRead(&g_event, 0x00000110, LOS_WAITMODE_AND, 4); // 4, The timeout period for readi… in TaskF01() 54 ICUNIT_GOTO_EQUAL(g_event.uwEventID, 0x110, g_event.uwEventID, EXIT); in TaskF01() 65 TSK_INIT_PARAM_S task1 = {0}; in Testcase() 73 g_testCount = 0; in Testcase() 75 g_event.uwEventID = 0; in Testcase() 86 LOS_EventWrite(&g_event, 0x10); in Testcase() 93 LOS_EventWrite(&g_event, 0x110); in Testcase() 100 ret = LOS_EventClear(&g_event, 0); in Testcase()
|
| /kernel/linux/linux-6.6/tools/testing/selftests/bpf/progs/ |
| D | atomics.c | 13 __u32 pid = 0; 16 __u64 add64_result = 0; 18 __u32 add32_result = 0; 19 __u64 add_stack_value_copy = 0; 20 __u64 add_stack_result = 0; 27 return 0; in add() 38 return 0; in add() 42 __s64 sub64_result = 0; 44 __s32 sub32_result = 0; 45 __s64 sub_stack_value_copy = 0; [all …]
|
| /kernel/linux/linux-6.6/arch/mips/include/asm/ |
| D | hpet.h | 9 #define HPET_ID 0x000 10 #define HPET_PERIOD 0x004 11 #define HPET_CFG 0x010 12 #define HPET_STATUS 0x020 13 #define HPET_COUNTER 0x0f0 15 #define HPET_Tn_CFG(n) (0x100 + 0x20 * n) 16 #define HPET_Tn_CMP(n) (0x108 + 0x20 * n) 17 #define HPET_Tn_ROUTE(n) (0x110 + 0x20 * n) 19 #define HPET_T0_IRS 0x001 20 #define HPET_T1_IRS 0x002 [all …]
|
| /kernel/linux/linux-5.10/arch/mips/include/asm/ |
| D | hpet.h | 9 #define HPET_ID 0x000 10 #define HPET_PERIOD 0x004 11 #define HPET_CFG 0x010 12 #define HPET_STATUS 0x020 13 #define HPET_COUNTER 0x0f0 15 #define HPET_Tn_CFG(n) (0x100 + 0x20 * n) 16 #define HPET_Tn_CMP(n) (0x108 + 0x20 * n) 17 #define HPET_Tn_ROUTE(n) (0x110 + 0x20 * n) 19 #define HPET_T0_IRS 0x001 20 #define HPET_T1_IRS 0x002 [all …]
|
| /kernel/linux/linux-6.6/drivers/media/pci/cx18/ |
| D | cx18-av-audio.c | 60 * VID_PLL Integer = 0x0f, VID_PLL Post Divider = 0x04 in set_audclk_freq() 61 * AUX_PLL Integer = 0x0d, AUX PLL Post Divider = 0x20 in set_audclk_freq() 63 cx18_av_write4(cx, 0x108, 0x200d040f); in set_audclk_freq() 65 /* VID_PLL Fraction = 0x2be2fe */ in set_audclk_freq() 66 /* xtal * 0xf.15f17f0/4 = 108 MHz: 432 MHz pre-postdiv*/ in set_audclk_freq() 67 cx18_av_write4(cx, 0x10c, 0x002be2fe); in set_audclk_freq() 69 /* AUX_PLL Fraction = 0x176740c */ in set_audclk_freq() 70 /* xtal * 0xd.bb3a060/0x20 = 32000 * 384: 393 MHz p-pd*/ in set_audclk_freq() 71 cx18_av_write4(cx, 0x110, 0x0176740c); in set_audclk_freq() 74 /* 0x1.f77f = (4 * xtal/8*2/455) / 32000 */ in set_audclk_freq() [all …]
|
| /kernel/linux/linux-5.10/drivers/media/pci/cx18/ |
| D | cx18-av-audio.c | 60 * VID_PLL Integer = 0x0f, VID_PLL Post Divider = 0x04 in set_audclk_freq() 61 * AUX_PLL Integer = 0x0d, AUX PLL Post Divider = 0x20 in set_audclk_freq() 63 cx18_av_write4(cx, 0x108, 0x200d040f); in set_audclk_freq() 65 /* VID_PLL Fraction = 0x2be2fe */ in set_audclk_freq() 66 /* xtal * 0xf.15f17f0/4 = 108 MHz: 432 MHz pre-postdiv*/ in set_audclk_freq() 67 cx18_av_write4(cx, 0x10c, 0x002be2fe); in set_audclk_freq() 69 /* AUX_PLL Fraction = 0x176740c */ in set_audclk_freq() 70 /* xtal * 0xd.bb3a060/0x20 = 32000 * 384: 393 MHz p-pd*/ in set_audclk_freq() 71 cx18_av_write4(cx, 0x110, 0x0176740c); in set_audclk_freq() 74 /* 0x1.f77f = (4 * xtal/8*2/455) / 32000 */ in set_audclk_freq() [all …]
|
| /kernel/linux/linux-6.6/arch/x86/include/asm/ |
| D | hpet.h | 11 #define HPET_ID 0x000 12 #define HPET_PERIOD 0x004 13 #define HPET_CFG 0x010 14 #define HPET_STATUS 0x020 15 #define HPET_COUNTER 0x0f0 17 #define HPET_Tn_CFG(n) (0x100 + 0x20 * n) 18 #define HPET_Tn_CMP(n) (0x108 + 0x20 * n) 19 #define HPET_Tn_ROUTE(n) (0x110 + 0x20 * n) 21 #define HPET_T0_CFG 0x100 22 #define HPET_T0_CMP 0x108 [all …]
|
| /kernel/linux/linux-6.6/arch/sparc/include/asm/ |
| D | compat.h | 24 #define COMPAT_RLIM_INFINITY 0x7fffffff 28 #define COMPAT_UTS_MACHINE "sparc\0\0" 154 /* Vector 0x110 is LINUX_32BIT_SYSCALL_TRAP */ in in_compat_syscall() 155 return pt_regs_trap_type(current_pt_regs()) == 0x110; in in_compat_syscall()
|
| /kernel/linux/linux-5.10/arch/x86/include/asm/ |
| D | hpet.h | 11 #define HPET_ID 0x000 12 #define HPET_PERIOD 0x004 13 #define HPET_CFG 0x010 14 #define HPET_STATUS 0x020 15 #define HPET_COUNTER 0x0f0 17 #define HPET_Tn_CFG(n) (0x100 + 0x20 * n) 18 #define HPET_Tn_CMP(n) (0x108 + 0x20 * n) 19 #define HPET_Tn_ROUTE(n) (0x110 + 0x20 * n) 21 #define HPET_T0_CFG 0x100 22 #define HPET_T0_CMP 0x108 [all …]
|
| /kernel/linux/linux-5.10/drivers/media/i2c/cx25840/ |
| D | cx25840-audio.c | 39 * VID_PLL Integer = 0x0f, VID_PLL Post Divider = 0x04 in cx25840_set_audclk_freq() 40 * AUX_PLL Integer = 0x06, AUX PLL Post Divider = 0x10 in cx25840_set_audclk_freq() 42 cx25840_write4(client, 0x108, 0x1006040f); in cx25840_set_audclk_freq() 45 * VID_PLL Fraction (register 0x10c) = 0x2be2fe in cx25840_set_audclk_freq() 46 * 28636360 * 0xf.15f17f0/4 = 108 MHz in cx25840_set_audclk_freq() 51 * AUX_PLL Fraction = 0x1bb39ee in cx25840_set_audclk_freq() 52 * 28636363 * 0x6.dd9cf70/0x10 = 32000 * 384 in cx25840_set_audclk_freq() 57 cx25840_write4(client, 0x110, 0x01bb39ee); in cx25840_set_audclk_freq() 61 * SA_MCLK_DIV = 0x10 = 384/384 * AUX_PLL post dvivider in cx25840_set_audclk_freq() 63 cx25840_write(client, 0x127, 0x50); in cx25840_set_audclk_freq() [all …]
|
| /kernel/linux/linux-6.6/drivers/media/i2c/cx25840/ |
| D | cx25840-audio.c | 39 * VID_PLL Integer = 0x0f, VID_PLL Post Divider = 0x04 in cx25840_set_audclk_freq() 40 * AUX_PLL Integer = 0x06, AUX PLL Post Divider = 0x10 in cx25840_set_audclk_freq() 42 cx25840_write4(client, 0x108, 0x1006040f); in cx25840_set_audclk_freq() 45 * VID_PLL Fraction (register 0x10c) = 0x2be2fe in cx25840_set_audclk_freq() 46 * 28636360 * 0xf.15f17f0/4 = 108 MHz in cx25840_set_audclk_freq() 51 * AUX_PLL Fraction = 0x1bb39ee in cx25840_set_audclk_freq() 52 * 28636363 * 0x6.dd9cf70/0x10 = 32000 * 384 in cx25840_set_audclk_freq() 57 cx25840_write4(client, 0x110, 0x01bb39ee); in cx25840_set_audclk_freq() 61 * SA_MCLK_DIV = 0x10 = 384/384 * AUX_PLL post dvivider in cx25840_set_audclk_freq() 63 cx25840_write(client, 0x127, 0x50); in cx25840_set_audclk_freq() [all …]
|
| /kernel/linux/linux-6.6/Documentation/translations/zh_CN/core-api/ |
| D | printk-formats.rst | 115 %pS versatile_init+0x0/0x110 117 %pSR versatile_init+0x9/0x110 119 %pB prev_fn_of_versatile_init+0x88/0x88 133 %pS versatile_init+0x0/0x110 [module_name] 134 %pSb versatile_init+0x0/0x110 [module_name ed5019fdf5e53be37cb1ba7899292d7e143b259e] 135 %pSRb versatile_init+0x9/0x110 [module_name ed5019fdf5e53be37cb1ba7899292d7e143b259e] 137 %pBb prev_fn_of_versatile_init+0x88/0x88 [module_name ed5019fdf5e53be37cb1ba7899292d7e143b259e] 195 %pr [mem 0x60000000-0x6fffffff flags 0x2200] or 196 [mem 0x0000000060000000-0x000000006fffffff flags 0x2200] 197 %pR [mem 0x60000000-0x6fffffff pref] or [all …]
|
| /kernel/linux/linux-6.6/tools/testing/selftests/bpf/prog_tests/ |
| D | atomics.c | 70 ASSERT_EQ(skel->data->and64_value, 0x010ull << 32, "and64_value"); in test_and() 71 ASSERT_EQ(skel->bss->and64_result, 0x110ull << 32, "and64_result"); in test_and() 73 ASSERT_EQ(skel->data->and32_value, 0x010, "and32_value"); in test_and() 74 ASSERT_EQ(skel->bss->and32_result, 0x110, "and32_result"); in test_and() 76 ASSERT_EQ(skel->data->and_noreturn_value, 0x010ull << 32, "and_noreturn_value"); in test_and() 92 ASSERT_EQ(skel->data->or64_value, 0x111ull << 32, "or64_value"); in test_or() 93 ASSERT_EQ(skel->bss->or64_result, 0x110ull << 32, "or64_result"); in test_or() 95 ASSERT_EQ(skel->data->or32_value, 0x111, "or32_value"); in test_or() 96 ASSERT_EQ(skel->bss->or32_result, 0x110, "or32_result"); in test_or() 98 ASSERT_EQ(skel->data->or_noreturn_value, 0x111ull << 32, "or_noreturn_value"); in test_or() [all …]
|
| /kernel/linux/linux-5.10/drivers/phy/qualcomm/ |
| D | phy-qcom-qmp.h | 10 #define QSERDES_COM_BG_TIMER 0x00c 11 #define QSERDES_COM_SSC_EN_CENTER 0x010 12 #define QSERDES_COM_SSC_ADJ_PER1 0x014 13 #define QSERDES_COM_SSC_ADJ_PER2 0x018 14 #define QSERDES_COM_SSC_PER1 0x01c 15 #define QSERDES_COM_SSC_PER2 0x020 16 #define QSERDES_COM_SSC_STEP_SIZE1 0x024 17 #define QSERDES_COM_SSC_STEP_SIZE2 0x028 18 #define QSERDES_COM_BIAS_EN_CLKBUFLR_EN 0x034 19 #define QSERDES_COM_CLK_ENABLE1 0x038 [all …]
|
| /kernel/linux/linux-5.10/drivers/media/usb/stk1160/ |
| D | stk1160-reg.h | 14 #define STK1160_GCTRL 0x000 17 #define STK1160_RMCTL 0x00c 20 #define STK1160_POSVA 0x010 21 #define STK1160_POSV_L 0x010 22 #define STK1160_POSV_M 0x011 23 #define STK1160_POSV_H 0x012 30 * with bit #7 (0x?? OR 0x80 to activate). 32 #define STK1160_DCTRL 0x100 39 * Bit 0 - Horizontal Decimation Control 40 * 0 Horizontal decimation is disabled. [all …]
|
| /kernel/linux/linux-6.6/drivers/media/usb/stk1160/ |
| D | stk1160-reg.h | 14 #define STK1160_GCTRL 0x000 17 #define STK1160_RMCTL 0x00c 20 #define STK1160_POSVA 0x010 21 #define STK1160_POSV_L 0x010 22 #define STK1160_POSV_M 0x011 23 #define STK1160_POSV_H 0x012 30 * with bit #7 (0x?? OR 0x80 to activate). 32 #define STK1160_DCTRL 0x100 39 * Bit 0 - Horizontal Decimation Control 40 * 0 Horizontal decimation is disabled. [all …]
|
| /kernel/linux/linux-5.10/arch/sparc/include/asm/ |
| D | compat.h | 12 #define COMPAT_UTS_MACHINE "sparc\0\0" 116 #define COMPAT_RLIM_INFINITY 0x7fffffff 125 #define COMPAT_OFF_T_MAX 0x7fffffff 137 usp &= 0xffffffffUL; in arch_compat_alloc_user_space() 140 usp &= ~0x7UL; in arch_compat_alloc_user_space() 212 /* Vector 0x110 is LINUX_32BIT_SYSCALL_TRAP */ in in_compat_syscall() 213 return pt_regs_trap_type(current_pt_regs()) == 0x110; in in_compat_syscall()
|