blob: 3ee42ef2c8b6aa8eaecc7111a640bf5de3792b40 [file] [log] [blame]
Akshay Saraswat8e4ab1d2014-06-18 17:53:58 +05301/*
2 * Copyright (C) 2013 Samsung Electronics
3 *
4 * Configuration settings for the SAMSUNG/GOOGLE PEACH-PIT board.
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 */
8
9#ifndef __CONFIG_PEACH_PIT_H
10#define __CONFIG_PEACH_PIT_H
11
Simon Glassf94de732014-10-07 22:01:48 -060012#define CONFIG_ENV_IS_IN_SPI_FLASH
13#define CONFIG_SPI_FLASH
14#define CONFIG_ENV_SPI_BASE 0x12D30000
15#define FLASH_SIZE (0x4 << 20)
16#define CONFIG_ENV_OFFSET (FLASH_SIZE - CONFIG_BL2_SIZE)
Hyungwon Hwang43900da2014-12-12 14:45:44 +090017#define CONFIG_SPI_BOOTING
Simon Glassf94de732014-10-07 22:01:48 -060018
Sjoerd Simonsd7e1f022015-03-12 22:33:29 +010019#define MEM_LAYOUT_ENV_SETTINGS \
20 "bootm_size=0x10000000\0" \
21 "kernel_addr_r=0x22000000\0" \
22 "fdt_addr_r=0x23000000\0" \
23 "ramdisk_addr_r=0x23300000\0" \
24 "scriptaddr=0x30000000\0" \
25 "pxefile_addr_r=0x31000000\0"
26
Simon Glass87033d42014-10-07 22:01:46 -060027#include <configs/exynos5420-common.h>
Simon Glass7d159532014-10-07 22:01:47 -060028#include <configs/exynos5-dt-common.h>
Akshay Saraswat8e4ab1d2014-06-18 17:53:58 +053029
Simon Glassf94de732014-10-07 22:01:48 -060030#define CONFIG_BOARD_COMMON
Akshay Saraswat8e4ab1d2014-06-18 17:53:58 +053031
Hyungwon Hwang43900da2014-12-12 14:45:44 +090032#define CONFIG_SYS_SDRAM_BASE 0x20000000
33#define CONFIG_SYS_TEXT_BASE 0x23E00000
34#define CONFIG_SYS_INIT_SP_ADDR (CONFIG_IRAM_TOP - 0x800)
35
Akshay Saraswat8e4ab1d2014-06-18 17:53:58 +053036/* select serial console configuration */
37#define CONFIG_SERIAL3 /* use SERIAL 3 */
Hyungwon Hwang43900da2014-12-12 14:45:44 +090038#define CONFIG_DEFAULT_CONSOLE "console=ttySAC1,115200n8\0"
Akshay Saraswat8e4ab1d2014-06-18 17:53:58 +053039
Akshay Saraswat79043d82014-11-13 22:38:17 +053040#define CONFIG_SYS_PROMPT "Peach-Pit # "
41#define CONFIG_IDENT_STRING " for Peach-Pit"
Akshay Saraswat8e4ab1d2014-06-18 17:53:58 +053042
Ajay Kumar5cecf212014-09-05 16:53:38 +053043#define CONFIG_VIDEO_PARADE
44
45/* Display */
46#define CONFIG_LCD
47#ifdef CONFIG_LCD
48#define CONFIG_EXYNOS_FB
49#define CONFIG_EXYNOS_DP
50#define LCD_BPP LCD_COLOR16
51#endif
52
Simon Glass5b9c8cb2014-10-07 22:01:41 -060053#define CONFIG_POWER_TPS65090_EC
54
Simon Glassf94de732014-10-07 22:01:48 -060055#define CONFIG_USB_XHCI
56#define CONFIG_USB_XHCI_EXYNOS
57
Akshay Saraswat43581c82014-11-13 22:38:19 +053058/* DRAM Memory Banks */
59#define CONFIG_NR_DRAM_BANKS 4
60#define SDRAM_BANK_SIZE (512UL << 20UL) /* 512 MB */
61
Akshay Saraswat8e4ab1d2014-06-18 17:53:58 +053062#endif /* __CONFIG_PEACH_PIT_H */