blob: 27c68e43474327cfc64b2e87859d52100549b7f6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
config MTK_RAM_CONSOLE
bool "mt ram console"
help
ram_console is a feature which will record some
debug information and can be read after reboot.
It can be configured as SRAM or DRAM.
Each ram type should be set address and size.
config MTK_RAM_CONSOLE_USING_SRAM
bool "Using SRAM as ram console storage"
depends on MTK_RAM_CONSOLE
help
If set this config as yes, ram_console will use
SRAM as its storage, all ram_console content
will write into SRAM.
You should set SRAM address and size as belows.
config MTK_RAM_CONSOLE_USING_DRAM
bool "Using DRAM as ram console storage"
depends on MTK_RAM_CONSOLE
help
If set this config as yes, ram_console will use
DRAM as its storage, all ram_console content
will write into DRAM.
You should set DRAM address and size as belows.
config MTK_RAM_CONSOLE_SIZE
hex "MTK RAM console address"
default 0
depends on MTK_RAM_CONSOLE
help
SRAM ram_console memory allocate size.
config MTK_RAM_CONSOLE_ADDR
hex "MTK RAM console buffer size"
default 0
depends on MTK_RAM_CONSOLE
help
SRAM ram_console address.
config MTK_RAM_CONSOLE_DRAM_SIZE
hex "MTK RAM console dram address"
default 0
depends on MTK_RAM_CONSOLE
help
DRAM ram_console memory allocate size.
config MTK_RAM_CONSOLE_DRAM_ADDR
hex "MTK RAM console dram size"
default 0
depends on MTK_RAM_CONSOLE
help
DRAM ram_console address.
|