summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-s3c24xx/Kconfig
blob: 2f47907ae751915fd1f554f5f5ad0582db7ae3e2 (plain)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
if ARCH_S3C24xx

config ARCH_TEXT_BASE
	hex
	default 0x31fc0000

config BOARDINFO
	default "Digi A9M2440" if MACH_A9M2440
	default "Digi A9M2410" if MACH_A9M2410

config CPU_S3C2410
	bool

config CPU_S3C2440
	bool

choice

	prompt "S3C24xx Board Type"

config MACH_A9M2410
	bool "Digi A9M2410"
	select CPU_S3C2410
	select MACH_HAS_LOWLEVEL_INIT
	select S3C24XX_PLL_INIT
	select S3C24XX_SDRAM_INIT
	help
	  Say Y here if you are using Digi's Connect Core 9M equipped
	  with a Samsung S3C2410 Processor

config MACH_A9M2440
	bool "Digi A9M2440"
	select CPU_S3C2440
	select MACH_HAS_LOWLEVEL_INIT
	select S3C24XX_PLL_INIT
	help
	  Say Y here if you are using Digi's Connect Core 9M equipped
	  with a Samsung S3C2440 Processor

endchoice

menu "Board specific settings       "

choice
	prompt "A9M2440 baseboard"
	depends on MACH_A9M2440

config MACH_A9M2410DEV
	bool
	prompt "A9M2410dev"
	select HAS_CS8900
	help
	  Digi's evaluation board.

endchoice

endmenu

menu "S3C24X0 Features              "

config S3C24XX_LOW_LEVEL_INIT
	bool

config S3C24XX_PLL_INIT
	bool
	prompt "Reconfigure PLL"
	select S3C24XX_LOW_LEVEL_INIT
	help
	  This adds generic code to reconfigure the internal PLL very early
	  after reset.

config S3C24XX_SDRAM_INIT
	bool
	prompt "Initialize SDRAM"
	select S3C24XX_LOW_LEVEL_INIT
	help
	  This adds generic code to configure the SDRAM controller after reset.
	  The initialisation will be skipped if the code is already running
	  from SDRAM.

config S3C24XX_NAND_BOOT
	bool
	prompt "Booting from NAND"
	select MTD
	select NAND
	select NAND_S3C24X0
	help
	  Add generic support to boot from NAND flash. Image loading will be
	  skipped if the code is running from NOR or already from SDRAM.

endmenu

endif