mb/google/dedede: Create sasuke variant
Create the sasuke variant of the waddledoo reference board by copying the template files to a new directory named for the variant. (Auto-Generated by create_coreboot_variant.sh version 4.3.1). BUG=b:172104731 BRANCH=None TEST=util/abuild/abuild -p none -t google/dedede -x -a make sure the build includes GOOGLE_SASUKE Signed-off-by: Raymond Chung <raymondchung@ami.corp-partner.google.com> Change-Id: I29405d63fd266224807e535c3f86a2ad5ab8cdf3 Reviewed-on: https://review.coreboot.org/c/coreboot/+/48112 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Henry Sun <henrysun@google.com> Reviewed-by: SH Kim <sh_.kim@samsung.corp-partner.google.com> Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org>
This commit is contained in:
parent
4ae881a576
commit
eee1f4387a
|
@ -97,6 +97,7 @@ config MAINBOARD_PART_NUMBER
|
|||
default "Metaknight" if BOARD_GOOGLE_METAKNIGHT
|
||||
default "Lantis" if BOARD_GOOGLE_LANTIS
|
||||
default "Galtic" if BOARD_GOOGLE_GALTIC
|
||||
default "Sasuke" if BOARD_GOOGLE_SASUKE
|
||||
|
||||
config MAX_CPUS
|
||||
int
|
||||
|
@ -129,5 +130,6 @@ config VARIANT_DIR
|
|||
default "metaknight" if BOARD_GOOGLE_METAKNIGHT
|
||||
default "lantis" if BOARD_GOOGLE_LANTIS
|
||||
default "galtic" if BOARD_GOOGLE_GALTIC
|
||||
default "sasuke" if BOARD_GOOGLE_SASUKE
|
||||
|
||||
endif #BOARD_GOOGLE_BASEBOARD_DEDEDE
|
||||
|
|
|
@ -83,3 +83,10 @@ config BOARD_GOOGLE_GALTIC
|
|||
bool "-> Galtic"
|
||||
select BOARD_GOOGLE_BASEBOARD_DEDEDE
|
||||
select BASEBOARD_DEDEDE_LAPTOP
|
||||
|
||||
config BOARD_GOOGLE_SASUKE
|
||||
bool "-> Sasuke"
|
||||
select BOARD_GOOGLE_BASEBOARD_DEDEDE
|
||||
select BASEBOARD_DEDEDE_LAPTOP
|
||||
select DRIVERS_GENERIC_MAX98357A
|
||||
select DRIVERS_I2C_DA7219
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
|
||||
#ifndef MAINBOARD_EC_H
|
||||
#define MAINBOARD_EC_H
|
||||
|
||||
#include <baseboard/ec.h>
|
||||
|
||||
#endif
|
|
@ -0,0 +1,8 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
|
||||
#ifndef MAINBOARD_GPIO_H
|
||||
#define MAINBOARD_GPIO_H
|
||||
|
||||
#include <baseboard/gpio.h>
|
||||
|
||||
#endif /* MAINBOARD_GPIO_H */
|
|
@ -0,0 +1,5 @@
|
|||
## SPDX-License-Identifier: GPL-2.0-or-later
|
||||
## This is an auto-generated file. Do not edit!!
|
||||
## Add memory parts in mem_parts_used.txt and run spd_tools to regenerate.
|
||||
|
||||
SPD_SOURCES = placeholder.spd.hex
|
|
@ -0,0 +1 @@
|
|||
DRAM Part Name ID to assign
|
|
@ -0,0 +1,6 @@
|
|||
# This is a CSV file containing a list of memory parts used by this variant.
|
||||
# Generate an updated Makefile.inc and dram_id.generated.txt by running the
|
||||
# gen_part_id tool from util/spd_tools/lp4x
|
||||
# See util/spd_tools/lp4x/README.md for more details and instructions.
|
||||
|
||||
# Part Name
|
|
@ -0,0 +1,58 @@
|
|||
chip soc/intel/jasperlake
|
||||
|
||||
# USB Port Configuration
|
||||
register "usb2_ports[5]" = "USB2_PORT_MID(OC_SKIP)" # Camera
|
||||
|
||||
# Intel Common SoC Config
|
||||
#+-------------------+---------------------------+
|
||||
#| Field | Value |
|
||||
#+-------------------+---------------------------+
|
||||
#| GSPI0 | cr50 TPM. Early init is |
|
||||
#| | required to set up a BAR |
|
||||
#| | for TPM communication |
|
||||
#| | before memory is up |
|
||||
#| I2C0 | Trackpad |
|
||||
#| I2C1 | Digitizer |
|
||||
#| I2C2 | Touchscreen |
|
||||
#| I2C3 | Camera |
|
||||
#| I2C4 | Audio |
|
||||
#+-------------------+---------------------------+
|
||||
register "common_soc_config" = "{
|
||||
.gspi[0] = {
|
||||
.speed_mhz = 1,
|
||||
.early_init = 1,
|
||||
},
|
||||
.i2c[0] = {
|
||||
.speed = I2C_SPEED_FAST,
|
||||
.rise_time_ns = 66,
|
||||
.fall_time_ns = 90,
|
||||
.data_hold_time_ns = 350,
|
||||
},
|
||||
.i2c[1] = {
|
||||
.speed = I2C_SPEED_FAST,
|
||||
},
|
||||
.i2c[2] = {
|
||||
.speed = I2C_SPEED_FAST,
|
||||
},
|
||||
.i2c[3] = {
|
||||
.speed = I2C_SPEED_FAST,
|
||||
},
|
||||
.i2c[4] = {
|
||||
.speed = I2C_SPEED_FAST,
|
||||
.speed_config[0] = {
|
||||
.speed = I2C_SPEED_FAST,
|
||||
.scl_lcnt = 176,
|
||||
.scl_hcnt = 95,
|
||||
.sda_hold = 36,
|
||||
}
|
||||
},
|
||||
}"
|
||||
device domain 0 on
|
||||
device pci 14.0 on end
|
||||
device pci 15.0 on end
|
||||
device pci 15.2 on end
|
||||
device pci 1c.7 on end
|
||||
device pci 19.0 on end
|
||||
device pci 1f.3 on end
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue