Convert CONFIG_BOOTP_MAY_FAIL et al to Kconfig
[platform/kernel/u-boot.git] / include / configs / at91sam9260ek.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * (C) Copyright 2007-2008
4  * Stelian Pop <stelian@popies.net>
5  * Lead Tech Design <www.leadtechdesign.com>
6  *
7  * Configuation settings for the AT91SAM9260EK & AT91SAM9G20EK boards.
8  */
9
10 #ifndef __CONFIG_H
11 #define __CONFIG_H
12
13 /*
14  * SoC must be defined first, before hardware.h is included.
15  * In this case SoC is defined in boards.cfg.
16  */
17 #include <asm/hardware.h>
18
19 /*
20  * Warning: changing CONFIG_SYS_TEXT_BASE requires
21  * adapting the initial boot program.
22  * Since the linker has to swallow that define, we must use a pure
23  * hex number here!
24  */
25
26 /* ARM asynchronous clock */
27 #define CONFIG_SYS_AT91_SLOW_CLOCK      32768           /* slow clock xtal */
28 #define CONFIG_SYS_AT91_MAIN_CLOCK      18432000        /* main clock xtal */
29
30 /* Define actual evaluation board type from used processor type */
31 #ifdef CONFIG_AT91SAM9G20
32 # define CONFIG_AT91SAM9G20EK   /* It's an Atmel AT91SAM9G20 EK */
33 #else
34 # define CONFIG_AT91SAM9260EK   /* It's an Atmel AT91SAM9260 EK */
35 #endif
36
37 /* Misc CPU related */
38
39 /* general purpose I/O */
40 #define CONFIG_ATMEL_LEGACY             /* required until (g)pio is fixed */
41
42 /*
43  * SDRAM: 1 bank, min 32, max 128 MB
44  * Initialized before u-boot gets started.
45  */
46 #define CONFIG_SYS_SDRAM_BASE           ATMEL_BASE_CS1
47 #define CONFIG_SYS_SDRAM_SIZE           0x04000000
48
49 /*
50  * Initial stack pointer: 4k - GENERATED_GBL_DATA_SIZE in internal SRAM,
51  * leaving the correct space for initial global data structure above
52  * that address while providing maximum stack area below.
53  */
54 #ifdef CONFIG_AT91SAM9XE
55 # define CONFIG_SYS_INIT_SP_ADDR \
56         (ATMEL_BASE_SRAM + 16 * 1024 - GENERATED_GBL_DATA_SIZE)
57 #else
58 # define CONFIG_SYS_INIT_SP_ADDR \
59         (ATMEL_BASE_SRAM1 + 16 * 1024 - GENERATED_GBL_DATA_SIZE)
60 #endif
61
62 /* NAND flash */
63 #ifdef CONFIG_CMD_NAND
64 #define CONFIG_SYS_MAX_NAND_DEVICE      1
65 #define CONFIG_SYS_NAND_BASE            ATMEL_BASE_CS3
66 #define CONFIG_SYS_NAND_DBW_8
67 #define CONFIG_SYS_NAND_MASK_ALE        (1 << 21)
68 #define CONFIG_SYS_NAND_MASK_CLE        (1 << 22)
69 #define CONFIG_SYS_NAND_ENABLE_PIN      AT91_PIN_PC14
70 #define CONFIG_SYS_NAND_READY_PIN       AT91_PIN_PC13
71 #endif
72
73 /* USB */
74 #define CONFIG_USB_ATMEL
75 #define CONFIG_USB_ATMEL_CLK_SEL_PLLB
76 #define CONFIG_USB_OHCI_NEW             1
77 #define CONFIG_SYS_USB_OHCI_CPU_INIT            1
78 #define CONFIG_SYS_USB_OHCI_REGS_BASE           0x00500000      /* AT91SAM9260_UHP_BASE */
79 #define CONFIG_SYS_USB_OHCI_SLOT_NAME           "at91sam9260"
80 #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS      2
81
82 #ifdef CONFIG_SYS_USE_DATAFLASH_CS0
83
84 /* bootstrap + u-boot + env + linux in dataflash on CS0 */
85 #elif defined(CONFIG_SYS_USE_NANDFLASH)
86
87 /* bootstrap + u-boot + env + linux in nandflash */
88
89 #else   /* CONFIG_SYS_USE_MMC */
90 /* bootstrap + u-boot + env + linux in mmc */
91 /* For FAT system, most cases it should be in the reserved sector */
92 #endif
93
94 #endif