| /OK3568_Linux_fs/u-boot/board/freescale/p1022ds/ |
| H A D | README | 7 Pin Multiplex(hwconfig setting) 10 via hwconfig, i.e: 11 'setenv hwconfig usb2' to enable USB2 and disable eTsec2 12 'setenv hwconfig tdm' to enable TDM and disable Audio 13 'setenv hwconfig audclk:12' to enable Audio(codec clock sources is 12MHz) 15 'setenv hwconfig 'usb2;tdm' to enable USB2 and TDM, disable eTsec2 and Audio 16 'setenv hwconfig 'usb2;audclk:11' to enable USB2 and Audio(codec clock sources 21 'setenv hwconfig 'audclk:12;tdm' --- error ! 22 'setenv hwconfig 'audclk:11;tdm' --- error ! 23 'setenv hwconfig 'audclk:10' --- error !
|
| H A D | p1022ds.c | 128 if (hwconfig("usb2")) { in misc_init_r() 135 if (hwconfig("tdm") && hwconfig("audclk")){ in misc_init_r() 141 if (hwconfig("tdm")) { in misc_init_r() 156 if (hwconfig("audclk")) { in misc_init_r()
|
| /OK3568_Linux_fs/u-boot/board/freescale/bsc9132qds/ |
| H A D | bsc9132qds.c | 283 if (hwconfig("uart2") && hwconfig("usb1")) { in misc_init_r() 287 if (hwconfig("uart2")) { in misc_init_r() 304 if (hwconfig("sim")) { in misc_init_r() 317 if (hwconfig("uart3")) { in misc_init_r() 332 if (hwconfig("gps")) in misc_init_r() 389 if (!(hwconfig("uart2") && hwconfig("usb1"))) { in ft_board_setup() 393 if (hwconfig("uart2")) { in ft_board_setup() 402 if (hwconfig("uart3")) { in ft_board_setup() 411 if (hwconfig("sim")) { in ft_board_setup()
|
| /OK3568_Linux_fs/kernel/drivers/media/pci/mantis/ |
| H A D | mantis_core.c | 76 mantis->hwconfig = &vp1033_mantis_config; in mantis_load_config() 79 mantis->hwconfig = &vp1034_mantis_config; in mantis_load_config() 83 mantis->hwconfig = &vp1041_mantis_config; in mantis_load_config() 86 mantis->hwconfig = &vp2033_mantis_config; in mantis_load_config() 91 mantis->hwconfig = &vp2040_mantis_config; in mantis_load_config() 94 mantis->hwconfig = &vp3030_mantis_config; in mantis_load_config() 97 mantis->hwconfig = &unknown_device; in mantis_load_config() 108 mantis->hwconfig->model_name, mantis->hwconfig->dev_type, in mantis_core_init()
|
| H A D | mantis_dvb.c | 33 struct mantis_hwconfig *config = mantis->hwconfig; in mantis_frontend_power() 61 struct mantis_hwconfig *config = mantis->hwconfig; in mantis_frontend_soft_reset() 137 struct mantis_hwconfig *config = mantis->hwconfig; in mantis_dvb_init() 210 if (mantis->hwconfig) { in mantis_dvb_init()
|
| H A D | mantis_uart.c | 54 struct mantis_hwconfig *config = mantis->hwconfig; in mantis_uart_read() 145 struct mantis_hwconfig *config = mantis->hwconfig; in mantis_uart_init()
|
| H A D | mantis_common.h | 95 struct mantis_hwconfig *hwconfig; member 147 struct mantis_hwconfig *hwconfig; member
|
| /OK3568_Linux_fs/kernel/drivers/crypto/inside-secure/ |
| H A D | safexcel.c | 480 (BIT(priv->hwconfig.hwdataw) - 1)) >> in safexcel_hw_setup_cdesc_rings() 481 priv->hwconfig.hwdataw; in safexcel_hw_setup_cdesc_rings() 485 cd_fetch_cnt = (1 << priv->hwconfig.hwcfsize) / cd_size_rnd; in safexcel_hw_setup_cdesc_rings() 490 cd_fetch_cnt = ((1 << priv->hwconfig.hwcfsize) / in safexcel_hw_setup_cdesc_rings() 513 (cd_size_rnd << priv->hwconfig.hwdataw)) << 16) | in safexcel_hw_setup_cdesc_rings() 537 (BIT(priv->hwconfig.hwdataw) - 1)) >> in safexcel_hw_setup_rdesc_rings() 538 priv->hwconfig.hwdataw; in safexcel_hw_setup_rdesc_rings() 541 rd_fetch_cnt = (1 << priv->hwconfig.hwrfsize) / rd_size_rnd; in safexcel_hw_setup_rdesc_rings() 546 rd_fetch_cnt = ((1 << priv->hwconfig.hwrfsize) / in safexcel_hw_setup_rdesc_rings() 562 (rd_size_rnd << priv->hwconfig.hwdataw)) << 16) | in safexcel_hw_setup_rdesc_rings() [all …]
|
| /OK3568_Linux_fs/u-boot/doc/ |
| H A D | README.hwconfig | 4 This implements a simple hwconfig infrastructure: an 8 via the `hwconfig' environment variable. Later we could write 9 some "hwconfig <enable|disable|list>" commands, ncurses 20 2. Since we don't implement a hwconfig command, i.e. we're working 24 target after modifying the hwconfig variable. 26 3. We support hwconfig options with arguments. For example, 28 set hwconfig "dr_usb:mode=peripheral,phy_type=ulpi" 30 This selects three hwconfig options: 37 experience by adding more mature interfaces, like a hwconfig
|
| H A D | README.fsl-ddr | 61 "hwconfig=fsl_ddr:ctlr_intlv=bank" \ 68 setenv hwconfig "fsl_ddr:ctlr_intlv=null" 71 setenv hwconfig "fsl_ddr:ctlr_intlv=cacheline" 74 setenv hwconfig "fsl_ddr:ctlr_intlv=page" 77 setenv hwconfig "fsl_ddr:ctlr_intlv=bank" 80 setenv hwconfig "fsl_ddr:ctlr_intlv=superbank" 83 setenv hwconfig "fsl_ddr:ctlr_intlv=3way_1KB" 86 setenv hwconfig "fsl_ddr:ctlr_intlv=3way_4KB" 89 setenv hwconfig "fsl_ddr:ctlr_intlv=3way_8KB" 92 setenv hwconfig "fsl_ddr:bank_intlv=null" [all …]
|
| H A D | README.fsl-hwconfig | 1 Freescale-specific 'hwconfig' options. 3 This file documents Freescale-specific key:value pairs for the 'hwconfig' 4 option. See README.hwconfig for general information about 'hwconfig'.
|
| /OK3568_Linux_fs/u-boot/board/freescale/ls1021aqds/ |
| H A D | ls1021aqds.c | 384 if (hwconfig("sdhc")) in misc_init_r() 386 if (hwconfig("iic2")) in misc_init_r() 394 if (hwconfig("rgmii")) in misc_init_r() 396 if (hwconfig("can")) in misc_init_r() 398 if (hwconfig("sai")) in misc_init_r() 405 if (hwconfig("can")) in misc_init_r() 407 else if (hwconfig("rgmii")) in misc_init_r() 409 else if (hwconfig("sai")) in misc_init_r() 412 if (hwconfig("iic2")) in misc_init_r() 414 else if (hwconfig("sdhc")) in misc_init_r()
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/net/ |
| H A D | timestamping.c | 309 struct hwtstamp_config hwconfig, hwconfig_requested; in main() local 365 hwtstamp.ifr_data = (void *)&hwconfig; in main() 366 memset(&hwconfig, 0, sizeof(hwconfig)); in main() 367 hwconfig.tx_type = in main() 370 hwconfig.rx_filter = in main() 373 hwconfig_requested = hwconfig; in main() 383 hwconfig_requested.tx_type, hwconfig.tx_type, in main() 384 hwconfig_requested.rx_filter, hwconfig.rx_filter); in main()
|
| /OK3568_Linux_fs/u-boot/board/freescale/ls1043ardb/ |
| H A D | ls1043ardb.c | 124 if (hwconfig("qe-hdlc")) { in config_board_mux() 185 if (hwconfig("qe-hdlc")) in ft_board_setup() 194 if (!hwconfig("qe-uart") && !hwconfig("qe-hdlc")) in ft_board_setup()
|
| /OK3568_Linux_fs/u-boot/board/freescale/t1040qds/ |
| H A D | t1040qds.c | 97 if (hwconfig("qe") && hwconfig("tdm")) { in qe_board_setup() 104 } else if (hwconfig("qe") && hwconfig("uart")) { in qe_board_setup()
|
| /OK3568_Linux_fs/u-boot/board/freescale/p1_p2_rdb_pc/ |
| H A D | README | 43 in hwconfig. In addition, QE-UEC and QE-TDM also have pins multiplexing, to 44 enable QE-TDM for linux kernel, set "qe;tdm" in hwconfig. Syntax is as below 46 'setenv hwconfig qe' to enable QE UEC/UART and disable Nor-Flash/CPLD. 47 'setenv hwconfig 'qe;tdm'' to enalbe QE TDM and disable Nor-Flash/CPLD.
|
| H A D | p1_p2_rdb_pc.c | 391 if (hwconfig("qe")) { in fdt_board_fixup_qe_pins() 400 if (hwconfig("tdm")) in fdt_board_fixup_qe_pins() 412 if (hwconfig("tdm")) { in fdt_board_fixup_qe_pins() 463 if (hwconfig("usb2")) { in ft_board_setup()
|
| /OK3568_Linux_fs/u-boot/common/ |
| H A D | hwconfig.c | 273 assert(hwconfig("key3")); in main() 279 assert(hwconfig(NULL) == 0); in main() 280 assert(hwconfig("") == 0); in main() 281 assert(hwconfig("key3") == 0); in main()
|
| /OK3568_Linux_fs/u-boot/board/freescale/ls1021atwr/ |
| H A D | ls1021atwr.c | 335 if (hwconfig("i2c3")) { in config_board_mux() 341 if (hwconfig("ifc")) { in config_board_mux() 351 if (hwconfig("usb2")) { in config_board_mux() 357 if (hwconfig("can3")) { in config_board_mux() 367 if (hwconfig("lcd")) { in config_board_mux() 373 if (hwconfig("qe")) { in config_board_mux()
|
| /OK3568_Linux_fs/u-boot/board/freescale/mpc8569mds/ |
| H A D | mpc8569mds.c | 362 if (!hwconfig("qe_uart")) in fdt_board_fixup_qe_uart() 365 if (hwconfig("esdhc") && esdhc_disables_uart0()) { in fdt_board_fixup_qe_uart() 406 if (!hwconfig("esdhc")) in board_mmc_init() 446 if (!hwconfig("esdhc")) in fdt_board_fixup_esdhc()
|
| /OK3568_Linux_fs/u-boot/board/freescale/t104xrdb/ |
| H A D | t104xrdb.c | 109 if (hwconfig("qe-tdm")) { in misc_init_r() 154 if (hwconfig("qe-tdm")) in ft_board_setup()
|
| /OK3568_Linux_fs/u-boot/board/freescale/p1_twr/ |
| H A D | p1_twr.c | 238 if (!hwconfig("qe")) { in fdt_board_fixup_qe_pins() 251 if (hwconfig("mii")) in fdt_board_fixup_qe_pins()
|
| /OK3568_Linux_fs/u-boot/board/freescale/p1010rdb/ |
| H A D | README.P1010RDB-PB | 106 => setenv hwconfig fsl_p1010mux:tdm_can=tdm 110 => setenv hwconfig fsl_p1010mux:tdm_can=can 118 set 'esdhc' in hwconfig and save it. 125 set 'ifc' in hwconfig and save it.
|
| /OK3568_Linux_fs/u-boot/board/freescale/t208xqds/ |
| H A D | README | 94 another will use copper cable. An hwconfig env "fsl_10gkr_copper" is 99 do not have to be coexist in hwconfig. If a MAC is listed in the env 103 hwconfig, then both four XFI ports will use copper cable. 104 set "fsl_10gkr_copper:fm1_10g1,fm1_10g2" in hwconfig, then first two 118 hwconfig, MAC 1/2/5/6/9/10 will use 1G-KX mode.
|
| /OK3568_Linux_fs/u-boot/board/freescale/t4qds/ |
| H A D | README | 88 another will use copper cable. An hwconfig env "fsl_10gkr_copper" is 93 do not have to be coexist in hwconfig. If a MAC is listed in the env 97 hwconfig, then both four XFI ports will use copper cable. 98 set "fsl_10gkr_copper:fm1_10g1,fm1_10g2" in hwconfig, then first two
|