summaryrefslogtreecommitdiffstats
path: root/configs
diff options
context:
space:
mode:
authorJames Feist <james.feist@linux.intel.com>2017-11-09 14:09:15 -0800
committerJames Feist <james.feist@linux.intel.com>2017-11-28 13:43:08 -0800
commit8102f929622362b7c0f2a8b7619f299f88755daa (patch)
tree9fff5af06a5883abc22975430394dae80f080cc3 /configs
parente2691e75f5b80d0305dd4a651f962e24dddfc42e (diff)
downloadtalos-skeleton-8102f929622362b7c0f2a8b7619f299f88755daa.tar.gz
talos-skeleton-8102f929622362b7c0f2a8b7619f299f88755daa.zip
Add initial Wfp config to be able to build platform.
Wfp is an Intel platform. Change-Id: I0991d404f6c5fb8d35d7b524caff0d194d75ee90 Signed-off-by: James Feist <james.feist@linux.intel.com>
Diffstat (limited to 'configs')
-rw-r--r--configs/Wfp.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/configs/Wfp.py b/configs/Wfp.py
new file mode 100644
index 0000000..7ec64e9
--- /dev/null
+++ b/configs/Wfp.py
@@ -0,0 +1,42 @@
+## System states
+## state can change to next state in 2 ways:
+## - a process emits a GotoSystemState signal with state name to goto
+## - objects specified in EXIT_STATE_DEPEND have started
+SYSTEM_STATES = [
+]
+
+FRU_INSTANCES = {
+ '<inventory_root>/system/chassis/motherboard/bmc' : { 'fru_type' : 'BMC','is_fru' : False, 'manufacturer' : 'ASPEED' },
+}
+
+GPIO_CONFIG = {}
+GPIO_CONFIG['PGOOD'] = {'gpio_pin': 'AB3', 'direction': 'in'}
+GPIO_CONFIG['POWER_BUTTON'] = {'gpio_pin': 'E2', 'direction': 'both'}
+GPIO_CONFIG['POWER_UP_PIN'] = {'gpio_pin': 'E3', 'direction': 'out'}
+GPIO_CONFIG['RESET_BUTTON'] = {'gpio_pin': 'E0', 'direction': 'both'}
+GPIO_CONFIG['RESET_OUT'] = {'gpio_pin': 'E1', 'direction': 'out'}
+GPIO_CONFIG['ID_BUTTON'] = {'gpio_pin': 'S6', 'direction': 'out'}
+
+
+GPIO_CONFIGS = {
+ 'power_config' : {
+ 'power_good_in' : 'PGOOD',
+ 'power_up_outs' : [
+ ('POWER_UP_PIN', True),
+ ],
+ 'reset_outs' : [
+ ('RESET_OUT', False),
+ ],
+ 'pci_reset_outs': [
+ ],
+ },
+
+ 'hostctl_config' : {
+ 'fsi_data' : '',
+ 'fsi_clk' : '',
+ 'fsi_enable' : '',
+ 'cronus_sel' : '',
+ 'optionals' : [
+ ],
+ },
+}
OpenPOWER on IntegriCloud