Home
last modified time | relevance | path

Searched refs:ucode (Results 1 – 25 of 33) sorted by relevance

12

/u-boot/drivers/serial/
A Dserial_efi.c76 uint16_t ucode[2]; in serial_efi_putc() local
79 ucode[0] = ch; in serial_efi_putc()
80 ucode[1] = '\0'; in serial_efi_putc()
81 ret = priv->con_out->output_string(priv->con_out, ucode); in serial_efi_putc()
117 uint16_t ucode[2]; in _debug_uart_putc() local
119 ucode[0] = ch; in _debug_uart_putc()
120 ucode[1] = '\0'; in _debug_uart_putc()
121 sys_table->con_out->output_string(sys_table->con_out, ucode); in _debug_uart_putc()
/u-boot/tools/binman/etype/
A Du_boot_dtb_with_ucode.py36 self.ucode = None
64 self.ucode = fdt.GetNode('/microcode')
65 if not self.ucode:
70 self.collate = len(self.ucode.subnodes) > 1
71 for node in self.ucode.subnodes:
82 if self.ucode and not self.collate:
83 for node in self.ucode.subnodes:
/u-boot/tools/binman/test/
A D044_x86_optional_ucode.dts11 u-boot-with-ucode-ptr {
12 optional-ucode;
15 u-boot-dtb-with-ucode {
18 u-boot-ucode {
A D037_x86_no_ucode.dts11 u-boot-with-ucode-ptr {
14 u-boot-dtb-with-ucode {
17 u-boot-ucode {
A D035_x86_single_ucode.dts11 u-boot-with-ucode-ptr {
14 u-boot-dtb-with-ucode {
17 u-boot-ucode {
A D040_x86_ucode_not_in_image.dts10 u-boot-with-ucode-ptr {
13 u-boot-dtb-with-ucode {
16 u-boot-ucode {
A D034_x86_ucode.dts11 u-boot-with-ucode-ptr {
14 u-boot-dtb-with-ucode {
17 u-boot-ucode {
A D049_x86_ucode_spl.dts11 u-boot-spl-with-ucode-ptr {
14 u-boot-dtb-with-ucode {
17 u-boot-ucode {
A D093_x86_tpl_ucode.dts11 u-boot-tpl-with-ucode-ptr {
14 u-boot-tpl-dtb-with-ucode {
17 u-boot-ucode {
A D058_x86_ucode_spl_needs_retry.dts13 u-boot-spl-with-ucode-ptr {
21 u-boot-ucode {
24 u-boot-dtb-with-ucode {
A Du_boot_ucode_ptr.lds14 .ucode : {
15 *(.ucode)
A D038_x86_ucode_missing_node.dts11 u-boot-with-ucode-ptr {
14 u-boot-ucode {
A D039_x86_ucode_missing_node2.dts11 u-boot-with-ucode-ptr {
/u-boot/arch/x86/dts/
A Demulation-u-boot.dtsi12 u-boot-spl-with-ucode-ptr {
13 optional-ucode;
16 u-boot-with-ucode-ptr {
17 optional-ucode;
A Dquark-u-boot.dtsi10 u-boot-with-ucode-ptr {
11 optional-ucode;
A Du-boot.dtsi34 u-boot-tpl-with-ucode-ptr {
57 u-boot-spl-with-ucode-ptr {
61 type = "u-boot-dtb-with-ucode";
73 u-boot-with-ucode-ptr {
83 u-boot-dtb-with-ucode {
85 u-boot-ucode {
/u-boot/drivers/qe/
A Dqe.c425 const struct qe_microcode *ucode) in qe_upload_microcode() argument
430 if (ucode->major || ucode->minor || ucode->revision) in qe_upload_microcode()
432 (char *)ucode->id, (u16)ucode->major, (u16)ucode->minor, in qe_upload_microcode()
433 (u16)ucode->revision); in qe_upload_microcode()
566 if (ucode->code_offset) in qe_upload_firmware()
567 qe_upload_microcode(firmware, ucode); in qe_upload_firmware()
571 u32 trap = be32_to_cpu(ucode->traps[j]); in qe_upload_firmware()
695 if (ucode->code_offset) in u_qe_upload_firmware()
696 qe_upload_microcode(firmware, ucode); in u_qe_upload_firmware()
700 u32 trap = be32_to_cpu(ucode->traps[j]); in u_qe_upload_firmware()
[all …]
/u-boot/arch/powerpc/dts/
A Du-boot.dtsi16 u-boot-with-ucode-ptr {
18 optional-ucode;
21 u-boot-dtb-with-ucode {
A Dkmcent2-u-boot.dtsi85 u-boot-with-ucode-ptr {
87 optional-ucode;
90 u-boot-dtb-with-ucode {
/u-boot/lib/efi/
A Defi.c41 uint16_t ucode[2]; in efi_putc() local
43 ucode[0] = ch; in efi_putc()
44 ucode[1] = '\0'; in efi_putc()
45 con->output_string(con, ucode); in efi_putc()
/u-boot/board/freescale/p2041rdb/
A DREADME30 4. Program FMAN Firmware ucode
31 => tftp 1000000 ucode.bin
55 4. Program FMAN Firmware ucode
56 => tftp 1000000 ucode.bin
79 4. Program FMAN Firmware ucode
80 => tftp 1000000 ucode.bin
/u-boot/drivers/net/fm/
A Dfm.c81 u32 *ucode, unsigned int size) in fm_upload_ucode() argument
90 out_be32(&imem->idata, (be32_to_cpu(ucode[i]))); in fm_upload_ucode()
94 while ((in_be32(&imem->idata) != be32_to_cpu(ucode[0])) && --timeout) in fm_upload_ucode()
184 const struct qe_microcode *ucode = &firmware->microcode[i]; in fman_upload_firmware() local
187 if (be32_to_cpu(ucode->code_offset)) { in fman_upload_firmware()
191 fm_idx + 1, ucode->major, ucode->minor, in fman_upload_firmware()
192 ucode->revision); in fman_upload_firmware()
194 be32_to_cpu(ucode->code_offset); in fman_upload_firmware()
195 ucode_size = sizeof(u32) * be32_to_cpu(ucode->count); in fman_upload_firmware()
/u-boot/board/freescale/t208xrdb/
A DREADME125 0xEBF00000 0xEBF1FFFF FMAN ucode (alt bank) 128KB
234 0x180000 0x1FFFFF FMAN ucode 512KB (1 block)
235 0x200000 0x27FFFF CS4315 ucode 512KB (1 block)
243 0x820 0128 FMAN ucode 64KB
244 0x8a0 0512 CS4315 ucode 256KB
252 0x110000 0x11FFFF FMAN ucode 64KB
253 0x120000 0x15FFFF CS4315 ucode 256KB
256 How to update the ucode of Cortina CS4315/CS4340 10G PHY
258 => tftp 1000000 CS4315-CS4340-PHY-ucode.txt
262 How to update the ucode of Freescale FMAN
/u-boot/board/freescale/t208xqds/
A DREADME154 0xEBF00000 0xEBF1FFFF FMAN ucode (alt bank) 128KB
248 0x180000 0x1FFFFF FMAN ucode 512KB (1 block)
256 0x820 0128 FMAN ucode 64KB
264 0x110000 0x11FFFF FMAN ucode 64KB
267 How to update the ucode of Freescale FMAN
/u-boot/board/freescale/ls1046afrwy/
A DREADME68 0x00_4090_0000 - 0x00_4093_FFFF FMan ucode 256KB

Completed in 22 milliseconds

12