| /rk3399_rockchip-uboot/board/gateworks/gw_ventana/ |
| H A D | eeprom.c | 48 if (info->model[0] != 'G' || info->model[1] != 'W') { in read_eeprom() 63 baseboard = info->model[3]; in read_eeprom() 64 if (strncasecmp((const char *)info->model, "GW5400-A", 8) == 0) in read_eeprom() 85 if (info->model[4] == '1') { in read_eeprom() 88 } else if (info->model[4] == '2') { in read_eeprom() 91 } else if (info->model[4] == '3') { in read_eeprom() 97 if (info->model[4] == '0') in read_eeprom() 101 if (info->model[4] == '0' && info->model[5] == '3') in read_eeprom() 103 if (info->model[4] == '0' && info->model[5] == '4') in read_eeprom()
|
| H A D | gw_ventana.c | 587 } else if (ventana_info.model[0]) { in get_board_serial() 668 if (info->model[0]) { in checkboard() 669 printf("Model: %s\n", info->model); in checkboard() 723 if (ventana_info.model[0]) { in misc_init_r() 746 for (i = 0; i < (sizeof(str)-1) && info->model[i]; i++) in misc_init_r() 747 str[i] = tolower(info->model[i]); in misc_init_r() 1121 const char *model = env_get("model"); in ft_board_setup() local 1127 for (i = sizeof(ventana_info.model) - 1; i > 0; i--) { in ft_board_setup() 1128 if (ventana_info.model[i] >= 'A') { in ft_board_setup() 1129 rev = ventana_info.model[i]; in ft_board_setup() [all …]
|
| /rk3399_rockchip-uboot/tools/ |
| H A D | microcode-tool.py | 37 self.model = '%x' % self.words[3] 122 def List(date, microcodes, model): argument 131 if model: 132 mcode_list, tried = FindMicrocode(microcodes, model.lower()) 138 print '%-20s: model %s' % (mcode.name, mcode.model) 140 def FindMicrocode(microcodes, model): argument 159 mcode = microcodes.get(model) 166 abbrev = model[:-i] if i else model 169 if mcode.model.startswith(abbrev): 291 List(date, microcodes, options.model) [all …]
|
| H A D | microcode-tool | 37 self.model = '%x' % self.words[3] 122 def List(date, microcodes, model): argument 131 if model: 132 mcode_list, tried = FindMicrocode(microcodes, model.lower()) 138 print '%-20s: model %s' % (mcode.name, mcode.model) 140 def FindMicrocode(microcodes, model): argument 159 mcode = microcodes.get(model) 166 abbrev = model[:-i] if i else model 169 if mcode.model.startswith(abbrev): 291 List(date, microcodes, options.model) [all …]
|
| /rk3399_rockchip-uboot/drivers/demo/ |
| H A D | Kconfig | 1 menu "Demo for driver model" 7 This uclass allows you to play around with driver model. It provides 13 bool "Enable simple demo device for driver model" 16 This device allows you to play around with driver model. It prints 18 this device. It can be used to help understand how driver model 22 bool "Enable shape demo device for driver model" 25 This device allows you to play around with driver model. It prints 27 this device. It can be used to help understand how driver model
|
| /rk3399_rockchip-uboot/common/ |
| H A D | board_info.c | 22 const char *model; in show_board_info() local 24 model = fdt_getprop(gd->fdt_blob, 0, "model", NULL); in show_board_info() 26 if (model) in show_board_info() 27 printf("Model: %s\n", model); in show_board_info()
|
| /rk3399_rockchip-uboot/doc/device-tree-bindings/exynos/ |
| H A D | soc.txt | 1 Exynos SoC model 3 The "cpu-model" property is a non-standard extension for the device tree root 12 - cpu-model : Exynos product name 17 model = "Samsung/Google Peach Pi board based on Exynos5800"; 18 cpu-model = "Exynos5800";
|
| /rk3399_rockchip-uboot/arch/arm/mach-uniphier/ |
| H A D | cpu-info.c | 17 unsigned int id, model, rev, required_model = 1, required_rev = 1; in print_cpuinfo() local 20 model = uniphier_get_soc_model(); in print_cpuinfo() 59 printf(" (model %d, revision %d)\n", model, rev); in print_cpuinfo() 61 if (model < required_model) { in print_cpuinfo()
|
| /rk3399_rockchip-uboot/doc/driver-model/ |
| H A D | serial-howto.txt | 1 How to port a serial driver to driver model 14 model. Please feel free to update this file with your ideas and suggestions. 18 - If the board does not already use driver model, you need CONFIG_DM also 26 - If you convert all existing users of the driver, remove the pre-driver-model 31 - add driver model code 32 - convert at least one existing board to use driver model serial 33 - (if no boards remain that don't use driver model) remove the old code
|
| H A D | i2c-howto.txt | 1 How to port a serial driver to driver model 26 model. Please feel free to update this file with your ideas and suggestions. 30 - If the board does not already use driver model, you need CONFIG_DM also 38 - If you convert all existing users of the driver, remove the pre-driver-model 43 - add driver model code 44 - convert at least one existing board to use driver model serial 45 - (if no boards remain that don't use driver model) remove the old code
|
| H A D | MIGRATION.txt | 4 U-Boot has been migrating to a new driver model since its introduction in 5 2014. This file describes the schedule for deprecation of pre-driver-model 19 Note that this implies use of driver model for all block devices (e.g.
|
| /rk3399_rockchip-uboot/board/raspberrypi/rpi/ |
| H A D | rpi.c | 201 static const struct rpi_model *model; variable 253 fdtfile = model->fdtfile; in set_fdtfile() 287 if (!model->has_onboard_eth) in set_usbethaddr() 323 env_set("board_name", model->name); in set_board_info() 467 model = &rpi_model_unknown; in get_board_rev() 470 model = &rpi_model_unknown; in get_board_rev() 472 model = &models[rev_type]; in get_board_rev() 475 printf("RPI %s (0x%x)\n", model->name, revision); in get_board_rev()
|
| /rk3399_rockchip-uboot/arch/arm/dts/ |
| H A D | bcm2835-rpi-b.dts | 7 compatible = "raspberrypi,model-b", "brcm,bcm2835"; 8 model = "Raspberry Pi Model B";
|
| H A D | bcm2835-rpi-a.dts | 6 compatible = "raspberrypi,model-a", "brcm,bcm2835"; 7 model = "Raspberry Pi Model A";
|
| H A D | bcm2837-rpi-3-b.dts | 7 compatible = "raspberrypi,3-model-b", "brcm,bcm2837"; 8 model = "Raspberry Pi 3 Model B";
|
| H A D | bcm2835-rpi-b-rev2.dts | 7 compatible = "raspberrypi,model-b-rev2", "brcm,bcm2835"; 8 model = "Raspberry Pi Model B rev2";
|
| H A D | bcm2835-rpi-a-plus.dts | 6 compatible = "raspberrypi,model-a-plus", "brcm,bcm2835"; 7 model = "Raspberry Pi Model A+";
|
| H A D | bcm2835-rpi-b-plus.dts | 7 compatible = "raspberrypi,model-b-plus", "brcm,bcm2835"; 8 model = "Raspberry Pi Model B+";
|
| H A D | bcm2836-rpi-2-b.dts | 7 compatible = "raspberrypi,2-model-b", "brcm,bcm2836"; 8 model = "Raspberry Pi 2 Model B";
|
| /rk3399_rockchip-uboot/board/freescale/common/ |
| H A D | sgmii_riser.c | 51 const char *model; in fsl_sgmii_riser_fdt_fixup() local 88 model = fdt_getprop(fdt, enet_node, "model", NULL); in fsl_sgmii_riser_fdt_fixup() 98 if (!strstr(model, "TSEC")) in fsl_sgmii_riser_fdt_fixup()
|
| /rk3399_rockchip-uboot/drivers/input/ |
| H A D | Kconfig | 15 bool "Enable driver model keyboard support" 19 using driver model. The API is implemented by keyboard.h and 24 bool "Enable driver model key support" 30 bool "Enable driver model Remote Controller support" 44 bool "Enable driver model keyboard support" 48 using driver model. The API is implemented by keyboard.h and 53 bool "Enable driver model keyboard support" 57 using driver model. The API is implemented by keyboard.h and
|
| /rk3399_rockchip-uboot/test/dm/ |
| H A D | Kconfig | 2 bool "Enable driver model unit test command" 6 tests on the driver model code. Each subsystem (uclass) is tested.
|
| /rk3399_rockchip-uboot/drivers/usb/ |
| H A D | Kconfig | 37 bool "Enable driver model for USB" 40 Enable driver model for USB. The USB interface is then implemented 51 bool "Enable driver model for USB in SPL" 56 bool "Enable driver model for USB Gadget" 59 Enable driver model for USB Gadget (Peripheral 63 bool "Enable driver model for USB Gadget in sPL" 66 Enable driver model for USB Gadget in SPL
|
| /rk3399_rockchip-uboot/doc/ |
| H A D | README.semihosting | 18 http://www.arm.com/products/tools/models/fast-models/foundation-model.php) 21 the Foundation_v8 simulator also supports the BASE_FVP model which 23 So we can, in u-boot, run either model by either using the VE FVP (default), 24 or turning on CONFIG_BASE_FVP for the more full featured model.
|
| /rk3399_rockchip-uboot/drivers/pci/ |
| H A D | Kconfig | 12 bool "Enable driver model for PCI" 15 Use driver model for PCI. Driver model is the new method for 16 orgnising devices in U-Boot. For PCI, driver model keeps track of 26 measure when porting a board to use driver model for PCI. Once the
|