Blame view

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

54abb000e   Simon Glass   exynos: Drop old ...
18
  #define CONFIG_EXYNOS5_DT
bf637ea5e   Simon Glass   exynos: config: M...
19
20
21
22
23
24
25
26
  #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...
27
28
29
30
31
  #ifdef CONFIG_LCD
  #define CONFIG_EXYNOS_FB
  #define CONFIG_EXYNOS_DP
  #define LCD_BPP			LCD_COLOR16
  #endif
7d1595361   Simon Glass   exynos: config: M...
32

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