blob: 96b5fce46f24e7dbc02961b54502936cb3423216 [file] [log] [blame]
Jacob Chen63dc9712016-10-08 13:47:41 +08001/*
2 * (C) Copyright 2016 Rockchip Electronics Co., Ltd
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#ifndef _ROCKCHIP_COMMON_H_
8#define _ROCKCHIP_COMMON_H_
9#include <linux/sizes.h>
10
11#ifndef CONFIG_SPL_BUILD
12#include <config_distro_defaults.h>
13
Klaus Gogerf165eb22017-10-06 19:24:08 +020014/* First try to boot from SD (index 0), then eMMC (index 1) */
15#if CONFIG_IS_ENABLED(CMD_MMC)
16 #define BOOT_TARGET_MMC(func) \
17 func(MMC, mmc, 0) \
18 func(MMC, mmc, 1)
Eddie Caid91ad1b2017-04-01 14:49:54 +080019#else
Klaus Gogerf165eb22017-10-06 19:24:08 +020020 #define BOOT_TARGET_MMC(func)
Eddie Caid91ad1b2017-04-01 14:49:54 +080021#endif
Jacob Chen63dc9712016-10-08 13:47:41 +080022
Klaus Gogerf165eb22017-10-06 19:24:08 +020023#if CONFIG_IS_ENABLED(CMD_USB)
24 #define BOOT_TARGET_USB(func) func(USB, usb, 0)
25#else
26 #define BOOT_TARGET_USB(func)
27#endif
28
29#if CONFIG_IS_ENABLED(CMD_PXE)
30 #define BOOT_TARGET_PXE(func) func(PXE, pxe, na)
31#else
32 #define BOOT_TARGET_PXE(func)
33#endif
34
35#if CONFIG_IS_ENABLED(CMD_DHCP)
36 #define BOOT_TARGET_DHCP(func) func(DHCP, dhcp, na)
37#else
38 #define BOOT_TARGET_DHCP(func)
39#endif
40
41#define BOOT_TARGET_DEVICES(func) \
42 BOOT_TARGET_MMC(func) \
43 BOOT_TARGET_USB(func) \
44 BOOT_TARGET_PXE(func) \
45 BOOT_TARGET_DHCP(func)
46
Kever Yang065386f2017-07-25 12:00:05 +080047#ifdef CONFIG_ARM64
48#define ROOT_UUID "B921B045-1DF0-41C3-AF44-4C6F280D3FAE;\0"
49#else
50#define ROOT_UUID "69DAD710-2CE4-4E3C-B16C-21A1D49ABED3;\0"
51#endif
Jacob Chen63dc9712016-10-08 13:47:41 +080052#define PARTS_DEFAULT \
53 "uuid_disk=${uuid_gpt_disk};" \
54 "name=loader1,start=32K,size=4000K,uuid=${uuid_gpt_loader1};" \
55 "name=reserved1,size=64K,uuid=${uuid_gpt_reserved1};" \
56 "name=reserved2,size=4M,uuid=${uuid_gpt_reserved2};" \
57 "name=loader2,size=4MB,uuid=${uuid_gpt_loader2};" \
58 "name=atf,size=4M,uuid=${uuid_gpt_atf};" \
Jacob Chenc0662e52016-11-15 16:55:27 +080059 "name=boot,size=112M,bootable,uuid=${uuid_gpt_boot};" \
Kever Yang065386f2017-07-25 12:00:05 +080060 "name=rootfs,size=-,uuid="ROOT_UUID
Jacob Chen63dc9712016-10-08 13:47:41 +080061
62#endif
63
Philipp Tomsich798370f2017-06-29 11:21:15 +020064#if CONFIG_IS_ENABLED(ROCKCHIP_BACK_TO_BROM)
Jacob Chendd728062017-01-17 12:19:38 +080065/* SPL @ 32k for 34k
66 * u-boot directly after @ 68k for 400k or so
67 * ENV @ 992k
68 */
69#define CONFIG_ENV_OFFSET ((1024-32) * 1024)
70#else
71/* SPL @ 32k for ~36k
72 * ENV @ 96k
73 * u-boot @ 128K
74 */
75#define CONFIG_ENV_OFFSET (96 * 1024)
76#endif
77
Simon Glassaae75bd2017-05-31 17:57:34 -060078#define CONFIG_DISPLAY_BOARDINFO_LATE
79
Jacob Chen63dc9712016-10-08 13:47:41 +080080#endif /* _ROCKCHIP_COMMON_H_ */