arm: kirkwood: switch LaCie boards to sata_mv driver
[platform/kernel/u-boot.git] / include / configs / lacie_kw.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2011 Simon Guinot <sguinot@lacie.com>
4  */
5
6 #ifndef _CONFIG_LACIE_KW_H
7 #define _CONFIG_LACIE_KW_H
8
9 /*
10  * Machine number definition
11  */
12 #if defined(CONFIG_INETSPACE_V2)
13 #define CONFIG_MACH_TYPE                MACH_TYPE_INETSPACE_V2
14 #elif defined(CONFIG_NETSPACE_V2)
15 #define CONFIG_MACH_TYPE                MACH_TYPE_NETSPACE_V2
16 #elif defined(CONFIG_NETSPACE_LITE_V2)
17 #define CONFIG_MACH_TYPE                MACH_TYPE_NETSPACE_LITE_V2
18 #elif defined(CONFIG_NETSPACE_MINI_V2)
19 #define CONFIG_MACH_TYPE                MACH_TYPE_NETSPACE_MINI_V2
20 #elif defined(CONFIG_NETSPACE_MAX_V2)
21 #define CONFIG_MACH_TYPE                MACH_TYPE_NETSPACE_MAX_V2
22 #elif defined(CONFIG_D2NET_V2)
23 #define CONFIG_MACH_TYPE                MACH_TYPE_D2NET_V2
24 #elif defined(CONFIG_NET2BIG_V2)
25 #define CONFIG_MACH_TYPE                MACH_TYPE_NET2BIG_V2
26 #else
27 #error "Unknown board"
28 #endif
29
30 /*
31  * High Level Configuration Options (easy to change)
32  */
33 #define CONFIG_FEROCEON_88FR131         /* CPU Core subversion */
34 /* SoC name */
35 #if defined(CONFIG_NETSPACE_LITE_V2) || defined(CONFIG_NETSPACE_MINI_V2)
36 #define CONFIG_KW88F6192
37 #else
38 #define CONFIG_KW88F6281
39 #endif
40 #define CONFIG_SKIP_LOWLEVEL_INIT       /* disable board lowlevel_init */
41
42 /*
43  * Core clock definition
44  */
45 #define CONFIG_SYS_TCLK                 166000000 /* 166MHz */
46
47 /*
48  * SDRAM configuration
49  */
50
51 /*
52  * Different SDRAM configuration and size for some of the boards derived
53  * from the Network Space v2
54  */
55 #if defined(CONFIG_INETSPACE_V2)
56 #define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-is2.cfg
57 #elif defined(CONFIG_NETSPACE_LITE_V2) || defined(CONFIG_NETSPACE_MINI_V2)
58 #define CONFIG_SYS_KWD_CONFIG $(CONFIG_BOARDDIR)/kwbimage-ns2l.cfg
59 #endif
60
61 /*
62  * mv-common.h should be defined after CMD configs since it used them
63  * to enable certain macros
64  */
65 #include "mv-common.h"
66
67 /* Remove or override few declarations from mv-common.h */
68 #undef CONFIG_SYS_IDE_MAXBUS
69 #undef CONFIG_SYS_IDE_MAXDEVICE
70
71 /*
72  * Enable platform initialisation via misc_init_r() function
73  */
74
75 /*
76  * Ethernet Driver configuration
77  */
78 #ifdef CONFIG_CMD_NET
79 #define CONFIG_MVGBE_PORTS              {1, 0} /* enable port 0 only */
80 #define CONFIG_NETCONSOLE
81 #endif
82
83 /*
84  * SATA Driver configuration
85  */
86
87 #ifdef CONFIG_SATA
88 #define CONFIG_SYS_64BIT_LBA
89 #define CONFIG_LBA48
90 #if defined(CONFIG_NETSPACE_MAX_V2) || defined(CONFIG_D2NET_V2) || \
91         defined(CONFIG_NET2BIG_V2)
92 #define CONFIG_SYS_SATA_MAX_DEVICE      2
93 #else
94 #define CONFIG_SYS_SATA_MAX_DEVICE      1
95 #endif
96 #endif /* CONFIG_SATA */
97
98 /*
99  * Enable GPI0 support
100  */
101 #define CONFIG_KIRKWOOD_GPIO
102
103 /*
104  * Enable I2C support
105  */
106 #ifdef CONFIG_CMD_I2C
107 /* I2C EEPROM HT24LC04 (512B - 32 pages of 16 Bytes) */
108 #define CONFIG_SYS_I2C_EEPROM_ADDR              0x50
109 #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS       4 /* 16-byte page size */
110 #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN          1 /* 8-bit device address */
111 #if defined(CONFIG_NET2BIG_V2)
112 #define CONFIG_SYS_I2C_G762_ADDR                0x3e
113 #endif
114 #endif /* CONFIG_CMD_I2C */
115
116 /*
117  * Partition support
118  */
119
120 /*
121  * File systems support
122  */
123
124 /*
125  * Environment variables configurations
126  */
127
128 /*
129  * Default environment variables
130  */
131 #define CONFIG_BOOTCOMMAND                                      \
132         "dhcp && run netconsole; "                              \
133         "if run usbload || run diskload; then bootm; fi"
134
135 #define CONFIG_EXTRA_ENV_SETTINGS                               \
136         "stdin=serial\0"                                        \
137         "stdout=serial\0"                                       \
138         "stderr=serial\0"                                       \
139         "bootfile=uImage\0"                                     \
140         "loadaddr=0x800000\0"                                   \
141         "autoload=no\0"                                         \
142         "netconsole="                                           \
143                 "set stdin $stdin,nc; "                         \
144                 "set stdout $stdout,nc; "                       \
145                 "set stderr $stderr,nc;\0"                      \
146         "diskload=sata init && "                                \
147                 "ext2load sata 0:1 $loadaddr /boot/$bootfile\0" \
148         "usbload=usb start && "                                 \
149                 "fatload usb 0:1 $loadaddr /boot/$bootfile\0"
150
151 #endif /* _CONFIG_LACIE_KW_H */