Home
last modified time | relevance | path

Searched refs:CFG (Results 1 – 25 of 72) sorted by relevance

123

/OK3568_Linux_fs/kernel/tools/testing/selftests/bpf/prog_tests/
H A Dcore_extern.c21 #define CFG "CONFIG_BPF_SYSCALL=n\n" macro
53 { .name = "tristate (y)", .cfg = CFG"CONFIG_TRISTATE=y\n",
55 { .name = "tristate (n)", .cfg = CFG"CONFIG_TRISTATE=n\n",
57 { .name = "tristate (m)", .cfg = CFG"CONFIG_TRISTATE=m\n",
59 { .name = "tristate (int)", .fails = 1, .cfg = CFG"CONFIG_TRISTATE=1" },
60 { .name = "tristate (bad)", .fails = 1, .cfg = CFG"CONFIG_TRISTATE=M" },
62 { .name = "bool (y)", .cfg = CFG"CONFIG_BOOL=y\n",
64 { .name = "bool (n)", .cfg = CFG"CONFIG_BOOL=n\n",
66 { .name = "bool (tristate)", .fails = 1, .cfg = CFG"CONFIG_BOOL=m" },
67 { .name = "bool (int)", .fails = 1, .cfg = CFG"CONFIG_BOOL=1" },
[all …]
/OK3568_Linux_fs/buildroot/build/
H A Dmerge_config.sh135 for CFG in $CFG_LIST ; do
136 grep -q -w $CFG $TMP_FILE || continue
137 PREV_VAL=$(grep -w $CFG $TMP_FILE)
138 ORIG_NEW_VAL=$(grep -w $CFG $TMP_MERGE_FILE)
140 if [ "$ORIG_NEW_VAL" = "# $CFG is reset to default" ]; then
143 elif [ "${ORIG_NEW_VAL%=*}" = "$CFG+" ]; then
170 sed -i "s#\<$CFG\>.*#$NEW_VAL#" $TMP_MERGE_FILE
178 echo "Value of $CFG is redefined by $MERGE_FILE:"
186 echo "Value of $CFG is redundant by $MERGE_FILE:"
188 sed -i "/\<$CFG[ =]/d" $TMP_FILE
[all …]
H A Dupdate_defconfig.sh87 for CFG in $CFG_LIST ; do
88 BASE_VAL=$(grep -w $CFG "$BASE_DEFCONFIG" || true)
89 ORIG_NEW_VAL=$(grep -w $CFG "$ORIG_DEFCONFIG" || true)
93 NEW_VAL="# $CFG is reset to default"
98 if grep -q "^$CFG+=" "$DEFCONFIG"; then
109 NEW_VAL="${NEW_STR:+$CFG+=\"$NEW_STR\"}"
116 echo "Value of $CFG applied to fragment:"
130 for CFG in $CFG_LIST ; do
131 grep -wq $CFG "$FRAGMENT" || \
132 echo "# $CFG is reset to default" >> $FRAGMENT
[all …]
/OK3568_Linux_fs/kernel/drivers/net/wireless/mediatek/mt76/mt76x2/
H A Dusb_init.c15 u32 val = mt76_rr(dev, MT_VEND_ADDR(CFG, MT_USB_U3DMA_CFG)); in mt76x2u_init_dma()
25 mt76_wr(dev, MT_VEND_ADDR(CFG, MT_USB_U3DMA_CFG), val); in mt76x2u_init_dma()
30 mt76_set(dev, MT_VEND_ADDR(CFG, 0x130), BIT(0) | BIT(16)); in mt76x2u_power_on_rf_patch()
33 mt76_clear(dev, MT_VEND_ADDR(CFG, 0x1c), 0xff); in mt76x2u_power_on_rf_patch()
34 mt76_set(dev, MT_VEND_ADDR(CFG, 0x1c), 0x30); in mt76x2u_power_on_rf_patch()
36 mt76_wr(dev, MT_VEND_ADDR(CFG, 0x14), 0x484f); in mt76x2u_power_on_rf_patch()
39 mt76_set(dev, MT_VEND_ADDR(CFG, 0x130), BIT(17)); in mt76x2u_power_on_rf_patch()
42 mt76_clear(dev, MT_VEND_ADDR(CFG, 0x130), BIT(16)); in mt76x2u_power_on_rf_patch()
45 mt76_set(dev, MT_VEND_ADDR(CFG, 0x14c), BIT(19) | BIT(20)); in mt76x2u_power_on_rf_patch()
54 mt76_set(dev, MT_VEND_ADDR(CFG, 0x130), BIT(0) << shift); in mt76x2u_power_on_rf()
[all …]
H A Dusb_mac.c32 mt76_rmw_field(dev, MT_VEND_ADDR(CFG, MT_XO_CTRL5), in mt76x2u_mac_fixup_xtal()
34 mt76_set(dev, MT_VEND_ADDR(CFG, MT_XO_CTRL6), MT_XO_CTRL6_C2_CTRL); in mt76x2u_mac_fixup_xtal()
112 val = mt76_rr(dev, MT_VEND_ADDR(CFG, MT_USB_U3DMA_CFG)); in mt76x2u_mac_stop()
165 val = mt76_rr(dev, MT_VEND_ADDR(CFG, MT_USB_U3DMA_CFG)); in mt76x2u_mac_stop()
H A Dusb_mcu.c102 mt76_wr(dev, MT_VEND_ADDR(CFG, MT_USB_U3DMA_CFG), val); in mt76x2u_mcu_load_rom_patch()
185 mt76_wr(dev, MT_VEND_ADDR(CFG, MT_USB_U3DMA_CFG), val); in mt76x2u_mcu_load_firmware()
/OK3568_Linux_fs/u-boot/scripts/kconfig/
H A Dmerge_config.sh117 for CFG in $CFG_LIST ; do
118 grep -q -w $CFG $TMP_FILE || continue
119 PREV_VAL=$(grep -w $CFG $TMP_FILE)
120 NEW_VAL=$(grep -w $CFG $MERGE_FILE)
122 echo Value of $CFG is redefined by fragment $MERGE_FILE:
127 echo Value of $CFG is redundant by fragment $MERGE_FILE:
129 sed -i "/$CFG[ =]/d" $TMP_FILE
158 for CFG in $(sed -n "$SED_CONFIG_EXP" $TMP_FILE); do
160 REQUESTED_VAL=$(grep -w -e "$CFG" $TMP_FILE)
161 ACTUAL_VAL=$(grep -w -e "$CFG" "$KCONFIG_CONFIG")
[all …]
/OK3568_Linux_fs/kernel/scripts/kconfig/
H A Dmerge_config.sh135 for CFG in $CFG_LIST ; do
136 grep -q -w $CFG $TMP_FILE || continue
137 PREV_VAL=$(grep -w $CFG $TMP_FILE)
138 NEW_VAL=$(grep -w $CFG $MERGE_FILE)
147 echo Value of $CFG is redefined by fragment $ORIG_MERGE_FILE:
155 echo Value of $CFG is redundant by fragment $ORIG_MERGE_FILE:
158 sed -i "/$CFG[ =]/d" $TMP_FILE
160 sed -i "/$CFG[ =]/d" $MERGE_FILE
194 for CFG in $(sed -n -e "$SED_CONFIG_EXP1" -e "$SED_CONFIG_EXP2" $TMP_FILE); do
196 REQUESTED_VAL=$(grep -w -e "$CFG" $TMP_FILE)
[all …]
/OK3568_Linux_fs/buildroot/support/kconfig/
H A Dmerge_config.sh129 for CFG in $CFG_LIST ; do
130 grep -q -w $CFG $TMP_FILE || continue
131 PREV_VAL=$(grep -w $CFG $TMP_FILE)
132 NEW_VAL=$(grep -w $CFG $MERGE_FILE)
134 echo Value of $CFG is redefined by fragment $MERGE_FILE:
139 echo Value of $CFG is redundant by fragment $MERGE_FILE:
141 sed -i "/$CFG[ =]/d" $TMP_FILE
170 for CFG in $(sed -n -e "$SED_CONFIG_EXP1" -e "$SED_CONFIG_EXP2" $TMP_FILE); do
172 REQUESTED_VAL=$(grep -w -e "$CFG" $TMP_FILE)
173 ACTUAL_VAL=$(grep -w -e "$CFG" "$KCONFIG_CONFIG")
[all …]
/OK3568_Linux_fs/buildroot/support/kconfig/patches/
H A D21-Avoid-false-positive-matches-from-comment-lines.patch22 for CFG in $CFG_LIST ; do
23 grep -q -w $CFG $TMP_FILE || continue
28 -for CFG in $(sed -n "$SED_CONFIG_EXP" $TMP_FILE); do
29 +for CFG in $(sed -n -e "$SED_CONFIG_EXP1" -e "$SED_CONFIG_EXP2" $TMP_FILE); do
31 REQUESTED_VAL=$(grep -w -e "$CFG" $TMP_FILE)
32 ACTUAL_VAL=$(grep -w -e "$CFG" "$KCONFIG_CONFIG")
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dcfg-flags.def120 This flag is only used for the RTL CFG. */
125 EH edges also have ABNORMAL set for the RTL CFG. */
130 This flag is only used for the RTL CFG. */
133 /* Not a real edge. This is used to connect parts of the CFG that do
135 EXIT_BLOCK, so that traversing of the reverse CFG is possible. */
138 /* A back edge, marked in a depth-first search of the CFG. Back edges
139 are hints that this edge may be part of a loop in the CFG. */
142 /* Edge in a part of the CFG that is an irreducible loop. */
146 This is only used for the GIMPLE CFG. */
150 This is only used for the GIMPLE CFG. */
[all …]
H A Dtimevar.def111 /* Time spent by constructing CFG. */
113 /* Time spent by cleaning up CFG. */
115 DEFTIMEVAR (TV_CFG_VERIFY , "CFG verifier")
154 DEFTIMEVAR (TV_TREE_CFG , "tree CFG construction")
155 DEFTIMEVAR (TV_TREE_CLEANUP_CFG , "tree CFG cleanup")
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dcfg-flags.def120 This flag is only used for the RTL CFG. */
125 EH edges also have ABNORMAL set for the RTL CFG. */
130 This flag is only used for the RTL CFG. */
133 /* Not a real edge. This is used to connect parts of the CFG that do
135 EXIT_BLOCK, so that traversing of the reverse CFG is possible. */
138 /* A back edge, marked in a depth-first search of the CFG. Back edges
139 are hints that this edge may be part of a loop in the CFG. */
142 /* Edge in a part of the CFG that is an irreducible loop. */
146 This is only used for the GIMPLE CFG. */
150 This is only used for the GIMPLE CFG. */
[all …]
H A Dtimevar.def111 /* Time spent by constructing CFG. */
113 /* Time spent by cleaning up CFG. */
115 DEFTIMEVAR (TV_CFG_VERIFY , "CFG verifier")
154 DEFTIMEVAR (TV_TREE_CFG , "tree CFG construction")
155 DEFTIMEVAR (TV_TREE_CLEANUP_CFG , "tree CFG cleanup")
/OK3568_Linux_fs/kernel/arch/mips/include/asm/mips-boards/
H A Dbonito64.h413 #define BONITO_PCIMEMBASECFG_SIZE(WIN, CFG) (((((~(CFG)) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MAS… argument
416 #define BONITO_PCIMEMBASECFG_ADDRMASK(WIN, CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_MAS… argument
417 #define BONITO_PCIMEMBASECFG_ADDRTRANS(WIN, CFG) ((((CFG) & BONITO_PCIMEMBASECFG_MEMBASE##WIN##_TRA… argument
419 #define BONITO_PCITOPHYS(WIN, ADDR, CFG) ( \ argument
420 … (((ADDR) & (~(BONITO_PCIMEMBASECFG_MASK))) & (~(BONITO_PCIMEMBASECFG_ADDRMASK(WIN, CFG)))) | \
421 (BONITO_PCIMEMBASECFG_ADDRTRANS(WIN, CFG)) \
/OK3568_Linux_fs/kernel/drivers/ata/
H A Dpata_cs5536.c50 CFG = 0, enumerator
134 cs5536_read(pdev, CFG, &cfg); in cs5536_cable_detect()
268 cs5536_read(dev, CFG, &cfg); in cs5536_init_one()
/OK3568_Linux_fs/kernel/tools/testing/selftests/drivers/net/mlxsw/
H A Dqos_ets_strict.sh119 lldptool -T -i $swp3 -V ETS-CFG up2tc=0:0,1:1,2:2,3:3,4:4,5:5,6:6,7:7
120 lldptool -T -i $swp3 -V ETS-CFG tsa=$(
199 lldptool -T -i $swp3 -V ETS-CFG up2tc=0:0,1:0,2:0,3:0,4:0,5:0,6:0,7:0
/OK3568_Linux_fs/kernel/drivers/ide/
H A Dcs5536.c34 CFG = 0, enumerator
106 cs5536_read(pdev, CFG, &cfg); in cs5536_cable_detect()
262 cs5536_read(dev, CFG, &cfg); in cs5536_init_one()
/OK3568_Linux_fs/device/rockchip/common/scripts/
H A Dmk-config.sh140 CFG="RK_DEFCONFIG=\"$(realpath "$RK_DEFCONFIG_LINK")\""
141 if ! grep -wq "$CFG" "$RK_CONFIG"; then
/OK3568_Linux_fs/device/rockchip/common/build-hooks/
H A D00-config.sh140 CFG="RK_DEFCONFIG=\"$(realpath "$RK_DEFCONFIG_LINK")\""
141 if ! grep -wq "$CFG" "$RK_CONFIG"; then
/OK3568_Linux_fs/u-boot/drivers/usb/gadget/
H A Datmel_usba_udc.c254 usba_ep_writel(ep, CFG, ept_cfg); in usba_ep_enable()
264 (unsigned long)usba_ep_readl(ep, CFG)); in usba_ep_enable()
296 usba_ep_writel(ep, CFG, 0); in usba_ep_disable()
651 usba_ep_writel(ep, CFG, in do_test_mode()
656 if (!(usba_ep_readl(ep, CFG) & USBA_EPT_MAPPED)) { in do_test_mode()
667 usba_ep_writel(ep, CFG, in do_test_mode()
672 if (!(usba_ep_readl(ep, CFG) & USBA_EPT_MAPPED)) { in do_test_mode()
1138 usba_ep_writel(ep0, CFG, in usba_udc_irq()
1154 if (!(usba_ep_readl(ep0, CFG) & USBA_EPT_MAPPED)) in usba_udc_irq()
/OK3568_Linux_fs/buildroot/utils/
H A Dtest-pkg238 -c CFG, --config-snippet CFG
239 Use the CFG file as the source for the config snippet. This file
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-support/pimd/pimd/
H A D0001-configure-Dont-use-uname-to-determine-target-OS.patch23 CFG=config.mk
/OK3568_Linux_fs/kernel/drivers/net/ethernet/natsemi/
H A Dns83820.c309 #define CFG 0x04 macro
606 cfg = readl(dev->base + CFG) ^ SPDSTS_POLARITY; in phy_intr()
680 writel(new_cfg, dev->base + CFG); in phy_intr()
1227 cfg = readl(dev->base + CFG) ^ SPDSTS_POLARITY;
1281 cfg = readl(dev->base + CFG) ^ SPDSTS_POLARITY;
1362 u32 cfg = readl(dev->base + CFG) ^ SPDSTS_POLARITY;
2000 dev->CFG_cache = readl(dev->base + CFG);
2052 writel(dev->CFG_cache, dev->base + CFG);
2057 writel(dev->CFG_cache | CFG_PHY_RST, dev->base + CFG);
2059 writel(dev->CFG_cache, dev->base + CFG);
/OK3568_Linux_fs/u-boot/drivers/timer/
H A Dae3xx_timer.c27 #define CFG 0x10 macro

123