diff options
author | Christophe Lombard <clombard@linux.vnet.ibm.com> | 2018-03-06 17:46:15 +0100 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2018-03-06 18:33:47 -0600 |
commit | 0180de29859b237c7b1572f530221b5904b43494 (patch) | |
tree | 7660b55afcacbc15888b1252b41918fd599bd4ba | |
parent | 75a89e61c9d97e662b80b19126607d20527815e9 (diff) | |
download | skiboot-0180de29859b237c7b1572f530221b5904b43494.zip skiboot-0180de29859b237c7b1572f530221b5904b43494.tar.gz skiboot-0180de29859b237c7b1572f530221b5904b43494.tar.bz2 |
capp: Add lid definition for P9 DD-2.2
Update fsp_lid_map to include CAPP ucode lid for phb4-chipid ==
0x202d1 that corresponds to P9 DD-2.2 chip.
Signed-off-by: Christophe Lombard <clombard@linux.vnet.ibm.com>
Reviewed-by: Vaibhav Jain <vaibhav@linux.vnet.ibm.com>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
-rw-r--r-- | hw/fsp/fsp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/fsp/fsp.c b/hw/fsp/fsp.c index 613108c..102fc0c 100644 --- a/hw/fsp/fsp.c +++ b/hw/fsp/fsp.c @@ -2362,6 +2362,7 @@ int fsp_fetch_data_queue(uint8_t flags, uint16_t id, uint32_t sub_id, #define CAPP_IDX_NIMBUS_DD10 0x100d1 #define CAPP_IDX_NIMBUS_DD20 0x200d1 #define CAPP_IDX_NIMBUS_DD21 0x201d1 +#define CAPP_IDX_NIMBUS_DD22 0x202d1 static struct { enum resource_id id; @@ -2378,6 +2379,7 @@ static struct { { RESOURCE_ID_CAPP, CAPP_IDX_NIMBUS_DD10, 0x80a02006 }, { RESOURCE_ID_CAPP, CAPP_IDX_NIMBUS_DD20, 0x80a02007 }, { RESOURCE_ID_CAPP, CAPP_IDX_NIMBUS_DD21, 0x80a02007 }, + { RESOURCE_ID_CAPP, CAPP_IDX_NIMBUS_DD22, 0x80a02007 }, }; static void fsp_start_fetching_next_lid(void); |