Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Guinot | 16311a2 | 2011-06-17 19:41:33 +0530 | [diff] [blame] | 2 | /* |
3 | * Copyright (C) 2011 Simon Guinot <sguinot@lacie.com> | ||||
Simon Guinot | 16311a2 | 2011-06-17 19:41:33 +0530 | [diff] [blame] | 4 | */ |
5 | |||||
Simon Guinot | a35cb4c | 2011-11-21 19:25:47 +0530 | [diff] [blame] | 6 | #ifndef _CONFIG_LACIE_KW_H |
7 | #define _CONFIG_LACIE_KW_H | ||||
Simon Guinot | 16311a2 | 2011-06-17 19:41:33 +0530 | [diff] [blame] | 8 | |
Simon Guinot | 16311a2 | 2011-06-17 19:41:33 +0530 | [diff] [blame] | 9 | #include "mv-common.h" |
10 | |||||
11 | /* Remove or override few declarations from mv-common.h */ | ||||
Simon Guinot | 16311a2 | 2011-06-17 19:41:33 +0530 | [diff] [blame] | 12 | |
13 | /* | ||||
Simon Guinot | 1dd67e6 | 2013-06-18 15:14:48 +0200 | [diff] [blame] | 14 | * Enable platform initialisation via misc_init_r() function |
15 | */ | ||||
Simon Guinot | 1dd67e6 | 2013-06-18 15:14:48 +0200 | [diff] [blame] | 16 | |
17 | /* | ||||
Simon Guinot | 16311a2 | 2011-06-17 19:41:33 +0530 | [diff] [blame] | 18 | * Enable GPI0 support |
19 | */ | ||||
Simon Guinot | 16311a2 | 2011-06-17 19:41:33 +0530 | [diff] [blame] | 20 | |
21 | /* | ||||
Simon Guinot | 5aaebab | 2011-11-01 16:44:12 +0530 | [diff] [blame] | 22 | * Enable I2C support |
23 | */ | ||||
24 | #ifdef CONFIG_CMD_I2C | ||||
25 | /* I2C EEPROM HT24LC04 (512B - 32 pages of 16 Bytes) */ | ||||
Simon Guinot | 1dd67e6 | 2013-06-18 15:14:48 +0200 | [diff] [blame] | 26 | #if defined(CONFIG_NET2BIG_V2) |
Tom Rini | 6a5dccc | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 27 | #define CFG_SYS_I2C_G762_ADDR 0x3e |
Simon Guinot | 1dd67e6 | 2013-06-18 15:14:48 +0200 | [diff] [blame] | 28 | #endif |
Simon Guinot | 5aaebab | 2011-11-01 16:44:12 +0530 | [diff] [blame] | 29 | #endif /* CONFIG_CMD_I2C */ |
30 | |||||
31 | /* | ||||
Simon Guinot | 707f5d6 | 2012-09-06 10:51:41 +0000 | [diff] [blame] | 32 | * Partition support |
33 | */ | ||||
Simon Guinot | 707f5d6 | 2012-09-06 10:51:41 +0000 | [diff] [blame] | 34 | |
35 | /* | ||||
Simon Guinot | 16311a2 | 2011-06-17 19:41:33 +0530 | [diff] [blame] | 36 | * File systems support |
37 | */ | ||||
Simon Guinot | 16311a2 | 2011-06-17 19:41:33 +0530 | [diff] [blame] | 38 | |
39 | /* | ||||
Simon Guinot | 16311a2 | 2011-06-17 19:41:33 +0530 | [diff] [blame] | 40 | * Environment variables configurations |
41 | */ | ||||
Simon Guinot | 16311a2 | 2011-06-17 19:41:33 +0530 | [diff] [blame] | 42 | |
43 | /* | ||||
44 | * Default environment variables | ||||
45 | */ | ||||
Simon Guinot | 16311a2 | 2011-06-17 19:41:33 +0530 | [diff] [blame] | 46 | |
Tom Rini | c9edebe | 2022-12-04 10:03:50 -0500 | [diff] [blame] | 47 | #define CFG_EXTRA_ENV_SETTINGS \ |
Simon Guinot | 16311a2 | 2011-06-17 19:41:33 +0530 | [diff] [blame] | 48 | "stdin=serial\0" \ |
49 | "stdout=serial\0" \ | ||||
50 | "stderr=serial\0" \ | ||||
51 | "bootfile=uImage\0" \ | ||||
52 | "loadaddr=0x800000\0" \ | ||||
Simon Guinot | 16311a2 | 2011-06-17 19:41:33 +0530 | [diff] [blame] | 53 | "netconsole=" \ |
54 | "set stdin $stdin,nc; " \ | ||||
55 | "set stdout $stdout,nc; " \ | ||||
56 | "set stderr $stderr,nc;\0" \ | ||||
Simon Guinot | 80f6934 | 2020-06-28 19:00:29 +0200 | [diff] [blame] | 57 | "diskload=sata init && " \ |
58 | "ext2load sata 0:1 $loadaddr /boot/$bootfile\0" \ | ||||
Simon Guinot | 16311a2 | 2011-06-17 19:41:33 +0530 | [diff] [blame] | 59 | "usbload=usb start && " \ |
60 | "fatload usb 0:1 $loadaddr /boot/$bootfile\0" | ||||
61 | |||||
Simon Guinot | a35cb4c | 2011-11-21 19:25:47 +0530 | [diff] [blame] | 62 | #endif /* _CONFIG_LACIE_KW_H */ |