Blame view

include/configs/exynos5-dt-common.h 792 Bytes
83d290c56   Tom Rini   SPDX: Convert all...
1
  /* SPDX-License-Identifier: GPL-2.0+ */
7d1595361   Simon Glass   exynos: config: M...
2
3
4
5
  /*
   * Copyright (C) 2014 Google, Inc
   *
   * Configuration settings for generic Exynos 5 board
7d1595361   Simon Glass   exynos: config: M...
6
7
8
9
   */
  
  #ifndef __CONFIG_EXYNOS5_DT_COMMON_H
  #define __CONFIG_EXYNOS5_DT_COMMON_H
e6825e036   Ian Campbell   exynos5: Use conf...
10
11
12
13
  /* Console configuration */
  #undef EXYNOS_DEVICE_SETTINGS
  #define EXYNOS_DEVICE_SETTINGS \
  		"stdin=serial,cros-ec-keyb\0" \
bb5930d5c   Simon Glass   exynos: video: Co...
14
15
  		"stdout=serial,vidconsole\0" \
  		"stderr=serial,vidconsole\0"
e6825e036   Ian Campbell   exynos5: Use conf...
16

54abb000e   Simon Glass   exynos: Drop old ...
17
  #define CONFIG_EXYNOS5_DT
bf637ea5e   Simon Glass   exynos: config: M...
18
19
20
21
22
23
24
25
  #define CONFIG_ENV_SPI_BASE	0x12D30000
  #define FLASH_SIZE		(4 << 20)
  #define CONFIG_ENV_OFFSET	(FLASH_SIZE - CONFIG_ENV_SECT_SIZE)
  #define CONFIG_SPI_BOOTING
  
  #define CONFIG_BOARD_COMMON
  
  /* Display */
bf637ea5e   Simon Glass   exynos: config: M...
26
27
28
29
30
  #ifdef CONFIG_LCD
  #define CONFIG_EXYNOS_FB
  #define CONFIG_EXYNOS_DP
  #define LCD_BPP			LCD_COLOR16
  #endif
7d1595361   Simon Glass   exynos: config: M...
31

7d1595361   Simon Glass   exynos: config: M...
32
  /* Enable keyboard */
7d1595361   Simon Glass   exynos: config: M...
33
  #define CONFIG_KEYBOARD
7d1595361   Simon Glass   exynos: config: M...
34
  #endif