]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/tk71.h
Merge branch 'tx28-update' into tx28-bugfix
[karo-tx-uboot.git] / include / configs / tk71.h
1 /*
2  * Copyright (C) 2012 Marek Vasut <marex@denx.de>
3  * on behalf of DENX Software Engineering GmbH
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #ifndef __CONFIG_TK71_H__
9 #define __CONFIG_TK71_H__
10
11 /*
12  * Version number information
13  */
14 #define CONFIG_IDENT_STRING     "\nKa-Ro TK71"
15
16 /*
17  * High Level Configuration Options (easy to change)
18  */
19 #define CONFIG_FEROCEON_88FR131 1       /* CPU Core subversion */
20 #define CONFIG_KW88F6281        1       /* SOC Name */
21 #define CONFIG_SKIP_LOWLEVEL_INIT       /* disable board lowlevel_init */
22 #define CONFIG_NR_DRAM_BANKS    1
23
24 #define MACH_TYPE_TK71          2399
25 #define CONFIG_MACH_TYPE        MACH_TYPE_TK71
26
27 /*
28  * Commands configuration
29  */
30 #define CONFIG_SYS_HUSH_PARSER
31
32 #define CONFIG_SYS_NO_FLASH
33 #define CONFIG_DOS_PARTITION
34 #define CONFIG_SUPPORT_VFAT
35
36 #define CONFIG_CMD_DHCP
37 #define CONFIG_CMD_ENV
38 #define CONFIG_CMD_EXT2
39 #define CONFIG_CMD_FAT
40 #define CONFIG_CMD_MTDPARTS
41 #define CONFIG_CMD_NAND
42 #define CONFIG_CMD_PING
43 #define CONFIG_CMD_USB
44
45 /*
46  * mv-common.h should be defined after CMD configs since it used them
47  * to enable certain macros
48  */
49 #include "mv-common.h"
50
51 /*
52  * NAND flash
53  */
54 #ifdef CONFIG_CMD_NAND
55 #define CONFIG_MTD_DEVICE
56 #define CONFIG_MTD_PARTITIONS
57 #define CONFIG_JFFS2_NAND
58 #define CONFIG_JFFS2_DEV                "nand0,3"
59 #endif
60
61 /*
62  * Ethernet Driver configuration
63  */
64 #ifdef CONFIG_CMD_NET
65 #define CONFIG_MVGBE_PORTS      {1, 0}
66 #define CONFIG_PHY_BASE_ADR     0x08
67 #endif
68
69 /*
70  * USB/EHCI
71  */
72 #ifdef CONFIG_CMD_USB
73 #define CONFIG_USB_EHCI
74 #define CONFIG_USB_EHCI_KIRKWOOD
75 #define CONFIG_EHCI_IS_TDI
76 #define CONFIG_USB_STORAGE
77 #endif
78
79 /*
80  *  Environment variables configurations
81  */
82 #ifdef CONFIG_CMD_NAND
83 #define CONFIG_ENV_IS_IN_NAND
84 #define CONFIG_ENV_SECT_SIZE            0x20000
85 #else
86 #define CONFIG_ENV_IS_NOWHERE
87 #endif
88
89 #define CONFIG_ENV_SIZE                 0x20000
90 #define CONFIG_ENV_ADDR                 0x80000
91 #define CONFIG_ENV_OFFSET               0x80000
92
93 /*
94  * Default environment variables
95  */
96 #define CONFIG_BOOTCOMMAND "nand read 0x800000 kernel 0x300000; bootm;"
97 #define CONFIG_MTDPARTS         "512K(u-boot),512K(u-boot-env),3M(kernel),-(root)"
98 #define CONFIG_EXTRA_ENV_SETTINGS \
99         "update_uboot=dhcp u-boot.kwb; nand erase.part u-boot; nand write ${fileaddr} u-boot ${filesize}\0" \
100         "update_kernel=dhcp uImage-tk71; nand erase.part kernel; nand write ${fileaddr} kernel ${filesize} \0" \
101         "update_rootfs=dhcp rootfs-tk71; nand erase.part root; nand write ${fileaddr} root ${filesize}\0" \
102         "update_all=run update_uboot; run update_kernel; run update_rootfs; reset\0" \
103         "mtdids=nand0=orion_nand\0" \
104         "mtdparts=mtdparts=orion_nand:"CONFIG_MTDPARTS"\0" \
105         "bootargs=console=ttyS0,115200 mtdparts=orion_nand:"CONFIG_MTDPARTS" rootfstype=jffs2 root=/dev/mtdblock3 rw\0"
106 #define MTDIDS_DEFAULT                  "nand0=orion_nand"
107 #define MTDPARTS_DEFAULT                "mtdparts=orion_nand:"CONFIG_MTDPARTS
108
109 #define PHYS_SDRAM_1            0x00000000      /* Base address */
110 #define PHYS_SDRAM_1_SIZE       0x20000000      /* Max 512 MB RAM */
111
112 #endif  /* __CONFIG_TK71_H__ */