Blame view

include/configs/slimbootloader.h 1.8 KB
d8f6db476   Park, Aiden   board: intel: Add...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
  /* SPDX-License-Identifier: GPL-2.0+ */
  /*
   * Copyright (C) 2019 Intel Corporation <www.intel.com>
   */
  
  #ifndef __SLIMBOOTLOADER_CONFIG_H__
  #define __SLIMBOOTLOADER_CONFIG_H__
  
  #include <configs/x86-common.h>
  
  /*
   * By default, CONFIG_SYS_NS16550_PORT_MAPPED is enabled for port io serial.
   * To use mmio base serial, enable CONFIG_SYS_NS16550_MEM32 and disable
   * CONFIG_SYS_NS16550_PORT_MAPPED until ns16550 driver supports serial port
   * configuration in run-time.
   *
   * #define CONFIG_SYS_NS16550_MEM32
   * #undef CONFIG_SYS_NS16550_PORT_MAPPED
   */
  #ifdef CONFIG_SYS_NS16550_MEM32
  #undef CONFIG_SYS_NS16550_PORT_MAPPED
  #endif
  
  #define CONFIG_STD_DEVICES_SETTINGS		\
  	"stdin=serial,i8042-kbd,usbkbd\0"	\
  	"stdout=serial\0"			\
  	"stderr=serial\0"
  
  /*
   * Override CONFIG_EXTRA_ENV_SETTINGS in x86-common.h
   */
  #undef CONFIG_EXTRA_ENV_SETTINGS
  #define CONFIG_EXTRA_ENV_SETTINGS		\
  	CONFIG_STD_DEVICES_SETTINGS		\
  	"netdev=eth0\0"				\
  	"consoledev=ttyS0\0"			\
  	"ramdiskaddr=0x4000000\0"		\
  	"ramdiskfile=initrd\0"			\
  	"bootdev=usb\0"				\
  	"bootdevnum=0\0"			\
  	"bootdevpart=0\0"			\
  	"bootfsload=fatload\0"			\
  	"bootusb=setenv bootdev usb; boot\0"	\
  	"bootscsi=setenv bootdev scsi; boot\0"	\
  	"bootmmc=setenv bootdev mmc; boot\0"	\
  	"bootargs=console=ttyS0,115200 console=tty0\0"
  
  /*
   * Override CONFIG_BOOTCOMMAND in x86-common.h
   */
  #undef CONFIG_BOOTCOMMAND
  #define CONFIG_BOOTCOMMAND						\
  	"if test ${bootdev} = \"usb\"; then ${bootdev} start; fi; "	\
  	"if test ${bootdev} = \"scsi\"; then ${bootdev} scan; fi; "	\
  	"${bootdev} info; "						\
  	"${bootfsload} ${bootdev} ${bootdevnum}:${bootdevpart} "	\
  	"${loadaddr} ${bootfile}; "					\
  	"${bootfsload} ${bootdev} ${bootdevnum}:${bootdevpart} "	\
  	"${ramdiskaddr} ${ramdiskfile}; "				\
  	"zboot ${loadaddr} 0 ${ramdiskaddr} ${filesize}"
  
  #endif /* __SLIMBOOTLOADER_CONFIG_H__ */