blob: 5badd2da8b6c52d3e5e0f38a2f45e51cec8b1e2f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Hannes Petermaier893c04e2014-02-07 08:07:36 +01002/*
Hannes Schmelzer2290fe02016-06-22 12:36:13 +02003 * brtpp1.h
Hannes Petermaier893c04e2014-02-07 08:07:36 +01004 *
5 * specific parts for B&R T-Series Motherboard
6 *
Hannes Schmelzer4c302b92015-05-28 15:41:12 +02007 * Copyright (C) 2013 Hannes Schmelzer <oe5hpm@oevsv.at> -
Hannes Petermaier893c04e2014-02-07 08:07:36 +01008 * Bernecker & Rainer Industrieelektronik GmbH - http://www.br-automation.com
Hannes Petermaier893c04e2014-02-07 08:07:36 +01009 */
10
Hannes Schmelzer2290fe02016-06-22 12:36:13 +020011#ifndef __CONFIG_BRPPT1_H__
12#define __CONFIG_BRPPT1_H__
Hannes Petermaier893c04e2014-02-07 08:07:36 +010013
Hannes Schmelzer3b804d92016-02-19 12:09:45 +010014#include <configs/bur_cfg_common.h>
Hannes Petermaier893c04e2014-02-07 08:07:36 +010015#include <configs/bur_am335x_common.h>
16/* ------------------------------------------------------------------------- */
Hannes Schmelzer3b804d92016-02-19 12:09:45 +010017/* memory */
18#define CONFIG_SYS_MALLOC_LEN (5 * 1024 * 1024)
Hannes Schmelzer73e9db22018-07-06 15:41:26 +020019#define CONFIG_SYS_BOOTM_LEN SZ_32M
Hannes Schmelzer3b804d92016-02-19 12:09:45 +010020
Hannes Petermaier893c04e2014-02-07 08:07:36 +010021/* Clock Defines */
22#define V_OSCK 26000000 /* Clock output from T2 */
23#define V_SCLK (V_OSCK)
24
25#define CONFIG_POWER_TPS65217
26
27/* Support both device trees and ATAGs. */
Hannes Petermaier893c04e2014-02-07 08:07:36 +010028#define CONFIG_CMDLINE_TAG
29#define CONFIG_SETUP_MEMORY_TAGS
30#define CONFIG_INITRD_TAG
Hannes Petermaier893c04e2014-02-07 08:07:36 +010031/*#define CONFIG_MACH_TYPE 3589*/
32#define CONFIG_MACH_TYPE 0xFFFFFFFF /* TODO: check with kernel*/
33
34/* MMC/SD IP block */
35#if defined(CONFIG_EMMC_BOOT)
Hannes Petermaier893c04e2014-02-07 08:07:36 +010036 #define CONFIG_SUPPORT_EMMC_BOOT
Hannes Petermaier893c04e2014-02-07 08:07:36 +010037#endif /* CONFIG_EMMC_BOOT */
38
39/*
Hannes Schmelzerfbc7c7d2018-07-06 15:41:28 +020040 * When we have NAND flash we expect to be making use of mtdparts,
Hannes Petermaier893c04e2014-02-07 08:07:36 +010041 * both for ease of use in U-Boot and for passing information on to
42 * the Linux kernel.
43 */
Adam Ford9c5b0092018-07-07 22:18:22 -050044
45#ifdef CONFIG_SPL_OS_BOOT
46#define CONFIG_SYS_SPL_ARGS_ADDR 0x80F80000
47
48/* RAW SD card / eMMC */
49#define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR 0x900 /* address 0x120000 */
50#define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR 0x80 /* address 0x10000 */
51#define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS 0x80 /* 64KiB */
52
53/* NAND */
54#ifdef CONFIG_NAND
55#define CONFIG_SYS_NAND_SPL_KERNEL_OFFS 0x140000
56#endif /* CONFIG_NAND */
57#endif /* CONFIG_SPL_OS_BOOT */
Hannes Petermaier893c04e2014-02-07 08:07:36 +010058
Hannes Petermaier893c04e2014-02-07 08:07:36 +010059#ifdef CONFIG_NAND
Hannes Petermaier893c04e2014-02-07 08:07:36 +010060#define CONFIG_SPL_NAND_BASE
61#define CONFIG_SPL_NAND_DRIVERS
62#define CONFIG_SPL_NAND_ECC
63#define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
64#define CONFIG_SYS_NAND_U_BOOT_OFFS 0x80000
65#endif /* CONFIG_NAND */
66
Hannes Petermaier662a4762015-02-03 13:22:37 +010067/* Always 64 KiB env size */
68#define CONFIG_ENV_SIZE (64 << 10)
Hannes Petermaier893c04e2014-02-07 08:07:36 +010069
70#ifdef CONFIG_NAND
Hannes Schmelzer73e9db22018-07-06 15:41:26 +020071#define NANDTGTS \
72"mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
73"mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
74"cfgscr=nand read ${cfgaddr} cfgscr && source ${cfgaddr}\0" \
75"nandargs=setenv bootargs console=${console} ${optargs} ${optargs_rot} " \
76 "root=mtd6 rootfstype=jffs2 b_mode=${b_mode}\0" \
77"b_nand=nand read ${loadaddr} kernel; nand read ${dtbaddr} dtb; " \
78 "run nandargs; run cfgscr; bootz ${loadaddr} - ${dtbaddr}\0" \
79"b_tgts_std=usb0 nand net\0" \
80"b_tgts_rcy=net usb0 nand\0" \
81"b_tgts_pme=usb0 nand net\0"
Hannes Petermaier893c04e2014-02-07 08:07:36 +010082#else
Hannes Schmelzer73e9db22018-07-06 15:41:26 +020083#define NANDTGTS ""
Hannes Petermaier893c04e2014-02-07 08:07:36 +010084#endif /* CONFIG_NAND */
85
Hannes Schmelzer73e9db22018-07-06 15:41:26 +020086#define MMCSPI_TGTS \
87"t30args#0=setenv bootargs ${optargs_rot} ${optargs} console=${console} " \
88 "b_mode=${b_mode} root=/dev/mmcblk0p2 rootfstype=ext4\0" \
89"b_t30lgcy#0=" \
90 "load ${loaddev}:2 ${loadaddr} /boot/PPTImage.md5 && " \
91 "load ${loaddev}:2 ${loadaddr} /boot/zImage && " \
92 "load ${loaddev}:2 ${dtbaddr} /boot/am335x-ppt30.dtb || " \
93 "load ${loaddev}:1 ${dtbaddr} am335x-ppt30-legacy.dtb; "\
94 "run t30args#0; run cfgscr; bootz ${loadaddr} - ${dtbaddr}\0" \
95"t30args#1=setenv bootargs ${optargs_rot} ${optargs} console=${console} " \
96 "b_mode=${b_mode}\0" \
97"b_t30lgcy#1=" \
98 "load ${loaddev}:1 ${loadaddr} zImage && " \
99 "load ${loaddev}:1 ${dtbaddr} am335x-ppt30.dtb && " \
100 "load ${loaddev}:1 ${ramaddr} rootfsPPT30.uboot && " \
101 "run t30args#1; run cfgscr; bootz ${loadaddr} ${ramaddr} ${dtbaddr}\0" \
102"b_mmc0=load ${loaddev}:1 ${scraddr} bootscr.img && source ${scraddr}\0" \
103"b_mmc1=load ${loaddev}:1 ${scraddr} /boot/bootscr.img && source ${scraddr}\0" \
104"b_tgts_std=mmc0 mmc1 t30lgcy#0 t30lgcy#1 usb0 net\0" \
105"b_tgts_rcy=t30lgcy#1 usb0 net\0" \
106"b_tgts_pme=net usb0 mmc0 mmc1\0" \
107"loaddev=mmc 1\0"
108
Hannes Schmelzerfbc7c7d2018-07-06 15:41:28 +0200109#ifdef CONFIG_ENV_IS_IN_MMC
Hannes Schmelzer73e9db22018-07-06 15:41:26 +0200110#define MMCTGTS \
111MMCSPI_TGTS \
112"cfgscr=mmc dev 1; mmc read ${cfgaddr} 200 80; source ${cfgaddr}\0"
Hannes Petermaier893c04e2014-02-07 08:07:36 +0100113#else
Hannes Schmelzer73e9db22018-07-06 15:41:26 +0200114#define MMCTGTS ""
Hannes Petermaier893c04e2014-02-07 08:07:36 +0100115#endif /* CONFIG_MMC */
116
Hannes Schmelzer73e9db22018-07-06 15:41:26 +0200117#ifdef CONFIG_SPI
118#define SPITGTS \
119MMCSPI_TGTS \
120"cfgscr=sf probe; sf read ${cfgaddr} 0xC0000 10000; source ${cfgaddr}\0"
121#else
122#define SPITGTS ""
123#endif /* CONFIG_SPI */
124
125#define LOAD_OFFSET(x) 0x8##x
126
Hannes Petermaier893c04e2014-02-07 08:07:36 +0100127#ifndef CONFIG_SPL_BUILD
128#define CONFIG_EXTRA_ENV_SETTINGS \
Hannes Petermaier7ae47f62015-02-03 13:22:34 +0100129BUR_COMMON_ENV \
Hannes Petermaier662a4762015-02-03 13:22:37 +0100130"verify=no\0" \
Hannes Petermaier7ae47f62015-02-03 13:22:34 +0100131"autoload=0\0" \
Hannes Schmelzer73e9db22018-07-06 15:41:26 +0200132"scraddr=" __stringify(LOAD_OFFSET(0000000)) "\0" \
133"cfgaddr=" __stringify(LOAD_OFFSET(0020000)) "\0" \
134"dtbaddr=" __stringify(LOAD_OFFSET(0040000)) "\0" \
135"loadaddr=" __stringify(LOAD_OFFSET(0100000)) "\0" \
136"ramaddr=" __stringify(LOAD_OFFSET(2000000)) "\0" \
Hannes Petermaier662a4762015-02-03 13:22:37 +0100137"console=ttyO0,115200n8\0" \
Hannes Petermaier14ec12f2015-06-11 12:31:54 +0200138"optargs=consoleblank=0 quiet panic=2\0" \
Hannes Schmelzer73e9db22018-07-06 15:41:26 +0200139"b_break=0\0" \
140"b_usb0=usb start && load usb 0 ${scraddr} bootscr.img && source ${scraddr}\0" \
141"b_net=tftp ${scraddr} netscript.img && source ${scraddr}\0" \
142MMCTGTS \
143SPITGTS \
144NANDTGTS \
145"b_deftgts=if test ${b_mode} = 12; then setenv b_tgts ${b_tgts_pme};" \
146" elif test ${b_mode} = 0; then setenv b_tgts ${b_tgts_rcy};" \
147" else setenv b_tgts ${b_tgts_std}; fi\0" \
148"b_default=run b_deftgts; for target in ${b_tgts};"\
149" do echo \"### booting ${target} ###\"; run b_${target};" \
150" if test ${b_break} = 1; then; exit; fi; done\0"
Hannes Petermaier893c04e2014-02-07 08:07:36 +0100151#endif /* !CONFIG_SPL_BUILD*/
152
Hannes Petermaier893c04e2014-02-07 08:07:36 +0100153#ifdef CONFIG_NAND
154/*
155 * GPMC block. We support 1 device and the physical address to
156 * access CS0 at is 0x8000000.
157 */
158#define CONFIG_SYS_MAX_NAND_DEVICE 1
159#define CONFIG_SYS_NAND_BASE 0x8000000
Hannes Petermaier893c04e2014-02-07 08:07:36 +0100160/* don't change OMAP_ELM, ECCSCHEME. ROM code only supports this */
Hannes Petermaier893c04e2014-02-07 08:07:36 +0100161#define CONFIG_NAND_OMAP_ECCSCHEME OMAP_ECC_BCH8_CODE_HW
Hannes Petermaier893c04e2014-02-07 08:07:36 +0100162#define CONFIG_SYS_NAND_5_ADDR_CYCLE
163#define CONFIG_SYS_NAND_BLOCK_SIZE (128*1024)
164#define CONFIG_SYS_NAND_PAGE_SIZE 2048
165#define CONFIG_SYS_NAND_PAGE_COUNT (CONFIG_SYS_NAND_BLOCK_SIZE / \
166 CONFIG_SYS_NAND_PAGE_SIZE)
167#define CONFIG_SYS_NAND_OOBSIZE 64
168#define CONFIG_SYS_NAND_BAD_BLOCK_POS NAND_LARGE_BADBLOCK_POS
169#define CONFIG_SYS_NAND_ECCPOS {2, 3, 4, 5, 6, 7, 8, 9, \
170 10, 11, 12, 13, 14, 15, 16, 17, \
171 18, 19, 20, 21, 22, 23, 24, 25, \
172 26, 27, 28, 29, 30, 31, 32, 33, \
173 34, 35, 36, 37, 38, 39, 40, 41, \
174 42, 43, 44, 45, 46, 47, 48, 49, \
175 50, 51, 52, 53, 54, 55, 56, 57, }
176
177#define CONFIG_SYS_NAND_ECCSIZE 512
178#define CONFIG_SYS_NAND_ECCBYTES 14
179
180#define CONFIG_SYS_NAND_U_BOOT_START CONFIG_SYS_TEXT_BASE
Hannes Petermaier893c04e2014-02-07 08:07:36 +0100181
Hannes Petermaierd79c1382015-04-08 07:38:34 +0200182#define CONFIG_NAND_OMAP_GPMC_WSCFG 1
Hannes Petermaier893c04e2014-02-07 08:07:36 +0100183#endif /* CONFIG_NAND */
184
185/* USB configuration */
Paul Kocialkowski95de1e22015-08-04 17:04:06 +0200186#define CONFIG_USB_MUSB_DISABLE_BULK_COMBINE_SPLIT
Hannes Petermaier893c04e2014-02-07 08:07:36 +0100187
Hannes Schmelzerfbc7c7d2018-07-06 15:41:28 +0200188#if defined(CONFIG_SPI)
189/* SPI Flash */
190#define CONFIG_SF_DEFAULT_SPEED 24000000
191#define CONFIG_SYS_SPI_U_BOOT_OFFS 0x40000
192/* Environment */
Hannes Petermaier893c04e2014-02-07 08:07:36 +0100193#define CONFIG_SYS_REDUNDAND_ENVIRONMENT
Hannes Schmelzerfbc7c7d2018-07-06 15:41:28 +0200194#define CONFIG_ENV_SPI_MAX_HZ CONFIG_SF_DEFAULT_SPEED
195#define CONFIG_ENV_SECT_SIZE CONFIG_ENV_SIZE
196#define CONFIG_ENV_OFFSET 0x20000
197#define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + \
198 CONFIG_ENV_SECT_SIZE)
199#elif defined(CONFIG_ENV_IS_IN_MMC)
Hannes Schmelzer29e00312017-07-06 08:47:14 +0200200#define CONFIG_SYS_MMC_ENV_DEV 1
Hannes Petermaier893c04e2014-02-07 08:07:36 +0100201#define CONFIG_SYS_MMC_ENV_PART 2
202#define CONFIG_ENV_OFFSET 0x40000 /* TODO: Adresse definieren */
203#define CONFIG_ENV_OFFSET_REDUND (CONFIG_ENV_OFFSET + CONFIG_ENV_SIZE)
204#define CONFIG_SYS_REDUNDAND_ENVIRONMENT
205
Hannes Schmelzerfbc7c7d2018-07-06 15:41:28 +0200206#elif defined(CONFIG_ENV_IS_IN_NAND)
Tom Rinie017fd62014-07-18 11:51:33 -0400207/* No NAND env support in SPL */
Hannes Petermaierd79c1382015-04-08 07:38:34 +0200208#define CONFIG_ENV_OFFSET 0x60000
Hannes Petermaier893c04e2014-02-07 08:07:36 +0100209#define CONFIG_SYS_ENV_SECT_SIZE CONFIG_ENV_SIZE
210#else
211#error "no storage for Environment defined!"
212#endif
Hannes Petermaier893c04e2014-02-07 08:07:36 +0100213
Hannes Schmelzer2290fe02016-06-22 12:36:13 +0200214#endif /* ! __CONFIG_BRPPT1_H__ */