| /u-boot/common/init/ |
| A D | board_init.c | 46 CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK); in board_init_f_init_stack_protection() 49 memset((void *)stack_bottom, CONFIG_VAL(SYS_STACK_F_CHECK_BYTE), in board_init_f_init_stack_protection() 50 CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK) - 0x20); in board_init_f_init_stack_protection() 82 #if CONFIG_VAL(SYS_MALLOC_F_LEN) in board_init_f_alloc_reserve() 83 top -= CONFIG_VAL(SYS_MALLOC_F_LEN); in board_init_f_alloc_reserve() 162 #if CONFIG_VAL(SYS_MALLOC_F_LEN) in board_init_f_init_reserve()
|
| /u-boot/board/freescale/p1010rdb/ |
| A D | spl.c | 60 relocate_code(CONFIG_VAL(RELOC_STACK), 0, CONFIG_SPL_RELOC_TEXT_BASE); in board_init_f() 66 gd = (gd_t *)CONFIG_VAL(GD_ADDR); in board_init_r() 70 bd = (struct bd_info *)(CONFIG_VAL(GD_ADDR) + sizeof(gd_t)); in board_init_r() 76 mem_malloc_init(CONFIG_VAL(RELOC_MALLOC_ADDR), in board_init_r() 77 CONFIG_VAL(RELOC_MALLOC_SIZE)); in board_init_r()
|
| /u-boot/board/freescale/p1_p2_rdb_pc/ |
| A D | spl.c | 72 relocate_code(CONFIG_VAL(RELOC_STACK), 0, CONFIG_SPL_RELOC_TEXT_BASE); in board_init_f() 78 gd = (gd_t *)CONFIG_VAL(GD_ADDR); in board_init_r() 82 bd = (struct bd_info *)(CONFIG_VAL(GD_ADDR) + sizeof(gd_t)); in board_init_r() 88 mem_malloc_init(CONFIG_VAL(RELOC_MALLOC_ADDR), in board_init_r() 89 CONFIG_VAL(RELOC_MALLOC_SIZE)); in board_init_r()
|
| /u-boot/common/ |
| A D | bmp.c | 50 len = CONFIG_VAL(VIDEO_LOGO_MAX_SIZE); in gunzip_bmp() 52 dst = malloc(CONFIG_VAL(VIDEO_LOGO_MAX_SIZE) + 3); in gunzip_bmp() 61 if (gunzip(bmp, CONFIG_VAL(VIDEO_LOGO_MAX_SIZE), map_sysmem(addr, 0), in gunzip_bmp() 66 if (len == CONFIG_VAL(VIDEO_LOGO_MAX_SIZE)) in gunzip_bmp()
|
| A D | console.c | 627 #define CIRC_BUF_IDX(idx) ((idx) % (unsigned long)CONFIG_VAL(PRE_CON_BUF_SZ)) 636 buffer = map_sysmem(CONFIG_VAL(PRE_CON_BUF_ADDR), CONFIG_VAL(PRE_CON_BUF_SZ)); in pre_console_putc() 655 char buf_out[CONFIG_VAL(PRE_CON_BUF_SZ) + 1]; in print_pre_console_buffer() 661 buf_in = map_sysmem(CONFIG_VAL(PRE_CON_BUF_ADDR), CONFIG_VAL(PRE_CON_BUF_SZ)); in print_pre_console_buffer() 662 if (gd->precon_buf_idx > CONFIG_VAL(PRE_CON_BUF_SZ)) in print_pre_console_buffer() 663 in = gd->precon_buf_idx - CONFIG_VAL(PRE_CON_BUF_SZ); in print_pre_console_buffer()
|
| /u-boot/arch/arm/lib/ |
| A D | bdinfo.c | 60 #if CONFIG_VAL(SYS_MALLOC_F_LEN) in arch_print_bdinfo() 62 CONFIG_VAL(SYS_MALLOC_F_LEN)); in arch_print_bdinfo()
|
| /u-boot/include/linux/ |
| A D | kconfig.h | 61 #define CONFIG_VAL(option) config_val(option) macro 104 __concat(__unwrap, config_enabled(CONFIG_VAL(option), 0)) (case1, case0) 155 CONFIG_IS_ENABLED(option, (CONFIG_VAL(int_option)), \
|
| /u-boot/arch/arm/mach-uniphier/debug-uart/ |
| A D | debug-uart.c | 21 void __iomem *base = (void __iomem *)CONFIG_VAL(DEBUG_UART_BASE); in _debug_uart_putc() 60 void __iomem *base = (void __iomem *)CONFIG_VAL(DEBUG_UART_BASE); in _debug_uart_init()
|
| /u-boot/arch/sh/lib/ |
| A D | start.S | 56 #if CONFIG_VAL(SYS_MALLOC_F_LEN) 76 #if CONFIG_VAL(SYS_MALLOC_F_LEN)
|
| /u-boot/common/spl/ |
| A D | spl.c | 530 #if CONFIG_VAL(SYS_MALLOC_F_LEN) in spl_common_init() 535 gd->malloc_limit = CONFIG_VAL(SYS_MALLOC_F_LEN); in spl_common_init() 882 #if CONFIG_VAL(SYS_MALLOC_F_LEN) && !defined(CONFIG_SYS_SPL_MALLOC_SIZE) in board_init_r() 942 ulong stack_bottom = init_sp - CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK); in spl_relocate_stack_check() 946 for (i = 0; i < CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK); i++) { in spl_relocate_stack_check() 947 if (*ptr != CONFIG_VAL(SYS_STACK_F_CHECK_BYTE)) in spl_relocate_stack_check() 952 CONFIG_VAL(SIZE_LIMIT_PROVIDE_STACK) - i); in spl_relocate_stack_check() 983 #if defined(CONFIG_SPL_SYS_MALLOC_SIMPLE) && CONFIG_VAL(SYS_MALLOC_F_LEN) in spl_relocate_stack_gd()
|
| /u-boot/drivers/serial/ |
| A D | altera_uart.c | 126 struct altera_uart_regs *regs = (void *)CONFIG_VAL(DEBUG_UART_BASE); in _debug_uart_init() 135 struct altera_uart_regs *regs = (void *)CONFIG_VAL(DEBUG_UART_BASE); in _debug_uart_putc()
|
| A D | serial_arc.c | 140 struct arc_serial_regs *regs = (struct arc_serial_regs *)CONFIG_VAL(DEBUG_UART_BASE); in _debug_uart_init() 149 struct arc_serial_regs *regs = (struct arc_serial_regs *)CONFIG_VAL(DEBUG_UART_BASE); in _debug_uart_putc()
|
| A D | serial_xuartlite.c | 146 struct uartlite *regs = (struct uartlite *)CONFIG_VAL(DEBUG_UART_BASE); in _debug_uart_init() 162 struct uartlite *regs = (struct uartlite *)CONFIG_VAL(DEBUG_UART_BASE); in _debug_uart_putc()
|
| A D | serial_omap.c | 69 struct ns16550 *com_port = (struct ns16550 *)CONFIG_VAL(DEBUG_UART_BASE); in _debug_uart_init() 88 struct ns16550 *com_port = (struct ns16550 *)CONFIG_VAL(DEBUG_UART_BASE); in _debug_uart_putc()
|
| A D | serial_pic32.c | 190 void __iomem *base = (void __iomem *)CONFIG_VAL(DEBUG_UART_BASE); in _debug_uart_init() 197 writel(ch, CONFIG_VAL(DEBUG_UART_BASE) + U_TXR); in _debug_uart_putc()
|
| A D | serial_linflexuart.c | 204 struct linflex_fsl *base = (struct linflex_fsl *)CONFIG_VAL(DEBUG_UART_BASE); in _debug_uart_init() 211 struct linflex_fsl *base = (struct linflex_fsl *)CONFIG_VAL(DEBUG_UART_BASE); in _debug_uart_putc()
|
| A D | serial_sifive.c | 215 (struct uart_sifive *)CONFIG_VAL(DEBUG_UART_BASE); in _debug_uart_init() 225 (struct uart_sifive *)CONFIG_VAL(DEBUG_UART_BASE); in _debug_uart_putc()
|
| A D | serial_ar933x.c | 202 void __iomem *regs = (void *)CONFIG_VAL(DEBUG_UART_BASE); in _debug_uart_init() 230 void __iomem *regs = (void *)CONFIG_VAL(DEBUG_UART_BASE); in _debug_uart_putc()
|
| A D | serial_mt7620.c | 223 plat.regs = (void *)CONFIG_VAL(DEBUG_UART_BASE); in _debug_uart_init() 236 (void *)CONFIG_VAL(DEBUG_UART_BASE); in _debug_uart_putc()
|
| /u-boot/arch/mips/cpu/ |
| A D | start.S | 49 #if CONFIG_VAL(SYS_MALLOC_F_LEN) && \ 51 li t2, CONFIG_VAL(SYS_MALLOC_F_LEN) 66 #if CONFIG_VAL(SYS_MALLOC_F_LEN) && \
|
| /u-boot/arch/mips/mach-mtmips/mt7621/spl/ |
| A D | start.S | 40 #if CONFIG_VAL(SYS_MALLOC_F_LEN) && \ 42 li t2, CONFIG_VAL(SYS_MALLOC_F_LEN) 57 #if CONFIG_VAL(SYS_MALLOC_F_LEN) && \
|
| /u-boot/lib/ |
| A D | asm-offsets.c | 35 #if CONFIG_VAL(SYS_MALLOC_F_LEN) in main()
|
| /u-boot/arch/x86/cpu/apollolake/ |
| A D | cpu_common.c | 75 apl_uart_init(PCH_DEV_UART, CONFIG_VAL(DEBUG_UART_BASE)); in pch_uart_init()
|
| /u-boot/arch/powerpc/cpu/mpc85xx/ |
| A D | start.S | 344 lis r1,CONFIG_VAL(SYS_MONITOR_BASE)@h 547 CONFIG_VAL(SYS_MONITOR_BASE) & 0xffc00000, MAS2_I|MAS2_G, \ 558 CONFIG_VAL(SYS_MONITOR_BASE) & 0xfffc0000, MAS2_I, \ 1124 CONFIG_VAL(SYS_MONITOR_BASE) & 0xffc00000, MAS2_I|MAS2_G, \ 1134 CONFIG_VAL(SYS_MONITOR_BASE) & 0xfff00000, MAS2_I|MAS2_G, \ 1150 CONFIG_VAL(SYS_MONITOR_BASE) & 0xfff00000, MAS2_I|MAS2_G, \ 1236 #if CONFIG_VAL(SYS_MALLOC_F_LEN) 1242 subi r3,r3,((CONFIG_VAL(SYS_MALLOC_F_LEN)+16+15)&~0xf) 1256 #if CONFIG_VAL(SYS_MALLOC_F_LEN) 1623 ori r4,r4,CONFIG_VAL(SYS_MONITOR_BASE)@l [all …]
|
| /u-boot/arch/arm/mach-at91/arm926ejs/ |
| A D | eflash.c | 124 #if CONFIG_VAL(EFLASH_PROTSECTORS) in flash_init() 162 #if CONFIG_VAL(EFLASH_PROTSECTORS) in flash_real_protect()
|