diff options
author | Nick Vaccaro <nvaccaro@google.com> | 2022-04-27 11:35:18 -0700 |
---|---|---|
committer | Nick Vaccaro <nvaccaro@google.com> | 2022-06-02 19:14:41 +0000 |
commit | 4c8f7785f9a4d197d9bfa081850f46731e724be2 (patch) | |
tree | 944dfcbdf3b8b78629d16f88d60449d3d41d8507 /src/mainboard/google/brya/variants/skolas4es/include | |
parent | 3f6ff24e57e1a4d16f4f43bf08d69492754498ea (diff) |
mb/google/brya: Add new skolas baseboard
This commit adds the skolas baseboard, which is basically the brya
baseboard, but using an Intel Raptor Lake-P SoC instead of an Alder
Lake SoC.
This commit also adds the skolas baseboard variant skolas4es.
Since this baseboard is identical to the brya baseboard with the
exception of the SoC used, the new baseboard and the new baseboard's
first variant will be a copy of the current brya baseboard and brya0
variant.
For now, the skolas baseboard and skolas4es variant will continue to
use ADL-P. This allows for two benefits:
1. software to be proven out on existing hardware prior to RPL SoC
support landing, and
2. allows us not to have to wait for RPL SoC changes prior to getting
the mainboard changes in place
Once the RPL SoC code has merged, I will update the skolas baseboard and
skolas4es variant to use RPL instead of ADL.
BUG=b:229134437
TEST=util/abuild/abuild -p none -t google/brya -x -a -c max
Change-Id: Iec100306dca2320eaf2432797f3acc31db2543d3
Signed-off-by: Nick Vaccaro <nvaccaro@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63891
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Subrata Banik <subratabanik@google.com>
Diffstat (limited to 'src/mainboard/google/brya/variants/skolas4es/include')
-rw-r--r-- | src/mainboard/google/brya/variants/skolas4es/include/variant/ec.h | 8 | ||||
-rw-r--r-- | src/mainboard/google/brya/variants/skolas4es/include/variant/gpio.h | 14 |
2 files changed, 22 insertions, 0 deletions
diff --git a/src/mainboard/google/brya/variants/skolas4es/include/variant/ec.h b/src/mainboard/google/brya/variants/skolas4es/include/variant/ec.h new file mode 100644 index 0000000000..4fc0622f15 --- /dev/null +++ b/src/mainboard/google/brya/variants/skolas4es/include/variant/ec.h @@ -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 /* MAINBOARD_GPIO_H */ diff --git a/src/mainboard/google/brya/variants/skolas4es/include/variant/gpio.h b/src/mainboard/google/brya/variants/skolas4es/include/variant/gpio.h new file mode 100644 index 0000000000..23338de2d8 --- /dev/null +++ b/src/mainboard/google/brya/variants/skolas4es/include/variant/gpio.h @@ -0,0 +1,14 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + +#ifndef __MAINBOARD_GPIO_H__ +#define __MAINBOARD_GPIO_H__ + +#include <baseboard/gpio.h> + +#define WWAN_FCPO GPP_F21 +#define WWAN_RST GPP_E16 +#define WWAN_PERST GPP_E0 +#define T1_OFF_MS 16 +#define T2_OFF_MS 2 + +#endif /* __MAINBOARD_GPIO_H__ */ |