]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
9637c4b2 ED |
2 | /* |
3 | * Copyright (C) 2014 Evgeni Dobrev <[email protected]> | |
4 | * | |
5 | * based on work from: | |
6 | * (C) Copyright 2009 | |
7 | * Marvell Semiconductor <www.marvell.com> | |
8 | * Written-by: Prafulla Wadaskar <[email protected]> | |
9637c4b2 ED |
9 | */ |
10 | ||
11 | #ifndef _CONFIG_NAS220_H | |
12 | #define _CONFIG_NAS220_H | |
13 | ||
14 | /* | |
92a1babf | 15 | * Machine type ID |
9637c4b2 | 16 | */ |
92a1babf | 17 | #define CONFIG_MACH_TYPE MACH_TYPE_RD88F6192_NAS |
9637c4b2 ED |
18 | |
19 | /* | |
20 | * High Level Configuration Options (easy to change) | |
21 | */ | |
22 | #define CONFIG_FEROCEON_88FR131 /* #define CPU Core subversion */ | |
23 | #define CONFIG_KW88F6192 /* SOC Name */ | |
9637c4b2 ED |
24 | #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */ |
25 | ||
26 | /* power-on led, regulator, sata0, sata1 */ | |
27 | #define NAS220_GE_OE_VAL_LOW ((1 << 12)|(1 << 14)|(1 << 24)|(1 << 28)) | |
28 | #define NAS220_GE_OE_VAL_HIGH (0) | |
29 | #define NAS220_GE_OE_LOW (~((1 << 12)|(1 << 14)|(1 << 24)|(1 << 28))) | |
30 | #define NAS220_GE_OE_HIGH (~(0)) | |
31 | ||
32 | /* PHY related */ | |
33 | #define MV88E1116_LED_FCTRL_REG 10 | |
34 | #define MV88E1116_CPRSP_CR3_REG 21 | |
35 | #define MV88E1116_MAC_CTRL_REG 21 | |
36 | #define MV88E1116_PGADR_REG 22 | |
37 | #define MV88E1116_RGMII_TXTM_CTRL (1 << 4) | |
38 | #define MV88E1116_RGMII_RXTM_CTRL (1 << 5) | |
39 | ||
40 | /* | |
41 | * Commands configuration | |
42 | */ | |
9637c4b2 ED |
43 | |
44 | /* | |
45 | * mv-common.h should be defined after CMD configs since it used them | |
46 | * to enable certain macros | |
47 | */ | |
48 | #include "mv-common.h" | |
49 | ||
9637c4b2 ED |
50 | /* |
51 | * Environment variables configurations | |
52 | */ | |
53 | #ifdef CONFIG_CMD_NAND | |
9637c4b2 | 54 | #define CONFIG_ENV_SECT_SIZE 0x10000 |
9637c4b2 ED |
55 | #endif |
56 | ||
57 | #define CONFIG_ENV_SIZE 0x10000 | |
58 | #define CONFIG_ENV_OFFSET 0xa0000 | |
59 | ||
60 | /* | |
61 | * Default environment variables | |
62 | */ | |
63 | #define CONFIG_BOOTCOMMAND "" | |
64 | ||
65 | #define CONFIG_EXTRA_ENV_SETTINGS \ | |
66 | "bootargs=console=ttyS0,115200\0" \ | |
67 | "mtdparts=mtdparts=orion_nand:0xa0000@0x0(uboot),"\ | |
68 | "0x010000@0xa0000(env),"\ | |
69 | "0x500000@0xc0000(uimage),"\ | |
70 | "0x1a40000@0x5c0000(rootfs)\0" \ | |
71 | "mtdids=nand0=orion_nand\0"\ | |
72 | "bootdelay=-1\0"\ | |
73 | "autostart=no\0"\ | |
74 | "autoload=no\0" | |
75 | ||
76 | /* | |
77 | * Ethernet Driver configuration | |
78 | */ | |
79 | #ifdef CONFIG_CMD_NET | |
80 | #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */ | |
81 | #define CONFIG_PHY_BASE_ADR 8 | |
82 | #endif /* CONFIG_CMD_NET */ | |
83 | ||
84 | /* | |
85 | * USB/EHCI | |
86 | */ | |
87 | #ifdef CONFIG_CMD_USB | |
9637c4b2 ED |
88 | #define CONFIG_USB_EHCI_KIRKWOOD /* on Kirkwood platform */ |
89 | #define CONFIG_EHCI_IS_TDI | |
9637c4b2 ED |
90 | #endif /* CONFIG_CMD_USB */ |
91 | ||
92 | /* | |
93 | * File system | |
94 | */ | |
9637c4b2 ED |
95 | #define CONFIG_JFFS2_NAND |
96 | #define CONFIG_JFFS2_LZO | |
9637c4b2 ED |
97 | |
98 | /* | |
99 | * SATA | |
100 | */ | |
101 | #ifdef CONFIG_MVSATA_IDE | |
102 | #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET | |
103 | #define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET | |
104 | #endif | |
105 | ||
9637c4b2 ED |
106 | /* |
107 | * EFI partition | |
108 | */ | |
9637c4b2 | 109 | |
9637c4b2 ED |
110 | #define CONFIG_KIRKWOOD_GPIO |
111 | ||
112 | #endif /* _CONFIG_NAS220_H */ | |
113 |