summaryrefslogtreecommitdiffstats
path: root/configs/Wfp.py
blob: 7ec64e9a788f9a6b87cc7b8f2a9bcf38554445ae (plain)
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
## 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