Blame view

include/configs/minnowmax.h 613 Bytes
3a1a18ff1   Simon Glass   x86: Add support ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  /*
   * Copyright (C) 2015 Google, Inc
   *
   * SPDX-License-Identifier:	GPL-2.0+
   */
  
  /*
   * board/config.h - configuration options, board specific
   */
  
  #ifndef __CONFIG_H
  #define __CONFIG_H
  
  #include <configs/x86-common.h>
  
  #define CONFIG_SYS_MONITOR_LEN		(1 << 20)
3a1a18ff1   Simon Glass   x86: Add support ...
17

70b95ded0   Bin Meng   x86: minnowmax: C...
18
  #define CONFIG_MISC_INIT_R
3a1a18ff1   Simon Glass   x86: Add support ...
19

fcda8c388   Bin Meng   x86: Convert to u...
20
21
  #define CONFIG_STD_DEVICES_SETTINGS	"stdin=usbkbd,serial\0" \
  					"stdout=vidconsole,serial\0" \
6e4d039aa   Bin Meng   x86: minnowmax: A...
22
23
  					"stderr=vidconsole,serial\0" \
  					"usb_pgood_delay=40\0"
3a1a18ff1   Simon Glass   x86: Add support ...
24

3a1a18ff1   Simon Glass   x86: Add support ...
25
26
  #define VIDEO_IO_OFFSET				0
  #define CONFIG_X86EMU_RAW_IO
3a1a18ff1   Simon Glass   x86: Add support ...
27

d5359f2e4   Simon Glass   dm: spi: Enable e...
28
  #define CONFIG_ENV_SECT_SIZE		0x1000
91fc5bf65   Bin Meng   x86: minnowmax: A...
29
  #define CONFIG_ENV_OFFSET		0x006ef000
d21d05f19   Bin Meng   x86: Move CONFIG_...
30

3a1a18ff1   Simon Glass   x86: Add support ...
31
  #endif	/* __CONFIG_H */