Lines Matching +full:0 +full:x14000
11 * reg = <0x0 0x110000 0x0 0xe0000>;
12 * boot-log-size = <0x8000>;
13 * boot-log-count = <0x1>
14 * console-size = <0x80000>;
15 * pmsg-size = <0x30000>;
16 * ftrace-size = <0x00000>;
17 * record-size = <0x14000>;
26 #define PERSISTENT_RAM_SIG (0x43474244)
27 #define LOG_TYPE_MASK (0x00000fff)
33 u8 data[0];
37 LOG_TPL = 0,
45 #if 0
50 * [31:16] is pstore buffer base address (0x_[31:16]_0000), 64KB align.
52 * [11:0] see 'enum log_type' per bit is for one stage, 1: enable, 0: disable.
53 * [0] tpl(ddr)
63 u32 addr = conf & 0xffff0000;
64 u32 size = conf & 0x0000f000;
65 int i = 0;
67 /* handle special: 0 is 64KB but not 0KB */
68 if (size == 0)
69 size = 0x10000;
73 if (conf == 0)
76 t.version = 0;
77 for (i = 0; i < LOG_MAX; i++) {
82 t.buf[i].addr = 0x0;
83 t.buf[i].size = 0x0;
94 u32 pstore_size = 0; in param_parse_pstore()
95 #if defined(CONFIG_ROCKCHIP_PRELOADER_ATAGS) && (CONFIG_PERSISTENT_RAM_ADDR == 0) in param_parse_pstore()
98 gd->pstore_addr = 0; in param_parse_pstore()
99 gd->pstore_size = 0; in param_parse_pstore()
106 #elif (CONFIG_PERSISTENT_RAM_ADDR == 0 || CONFIG_PERSISTENT_RAM_SIZE == 0) in param_parse_pstore()
107 #error: CONFIG_PERSISTENT_RAM_SIZE and CONFIG_PERSISTENT_RAM_ADDR value should not be 0. in param_parse_pstore()
118 rb->start = 0x0; in param_parse_pstore()
119 rb->size = 0x0; in param_parse_pstore()
126 rb->start = 0; in param_parse_pstore()
129 return 0; in param_parse_pstore()
138 if (!rb || pstore_size == 0) in putc_to_ram()
149 rb->start = 0; in putc_to_ram()