Home
last modified time | relevance | path

Searched refs:CONFIG_VAL (Results 1 – 25 of 59) sorted by relevance

123

/u-boot/common/init/
A Dboard_init.c46 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 Dspl.c60 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 Dspl.c72 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 Dbmp.c50 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 Dconsole.c627 #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 Dbdinfo.c60 #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 Dkconfig.h61 #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 Ddebug-uart.c21 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 Dstart.S56 #if CONFIG_VAL(SYS_MALLOC_F_LEN)
76 #if CONFIG_VAL(SYS_MALLOC_F_LEN)
/u-boot/common/spl/
A Dspl.c530 #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 Daltera_uart.c126 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 Dserial_arc.c140 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 Dserial_xuartlite.c146 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 Dserial_omap.c69 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 Dserial_pic32.c190 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 Dserial_linflexuart.c204 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 Dserial_sifive.c215 (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 Dserial_ar933x.c202 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 Dserial_mt7620.c223 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 Dstart.S49 #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 Dstart.S40 #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 Dasm-offsets.c35 #if CONFIG_VAL(SYS_MALLOC_F_LEN) in main()
/u-boot/arch/x86/cpu/apollolake/
A Dcpu_common.c75 apl_uart_init(PCH_DEV_UART, CONFIG_VAL(DEBUG_UART_BASE)); in pch_uart_init()
/u-boot/arch/powerpc/cpu/mpc85xx/
A Dstart.S344 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 Deflash.c124 #if CONFIG_VAL(EFLASH_PROTSECTORS) in flash_init()
162 #if CONFIG_VAL(EFLASH_PROTSECTORS) in flash_real_protect()

Completed in 42 milliseconds

123