diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2015-04-09 08:10:30 +1000 |
---|---|---|
committer | Stewart Smith <stewart@linux.vnet.ibm.com> | 2015-04-09 14:38:12 +1000 |
commit | 2f9eccfe836ed918202447c493d63486d29dba9c (patch) | |
tree | 3841bf901b48c3ada3a51a9e399638d7e631ea7e /include | |
parent | 4a574d2bbf3779a409fac9c46d4ab44b40a1803d (diff) | |
download | skiboot-2f9eccfe836ed918202447c493d63486d29dba9c.zip skiboot-2f9eccfe836ed918202447c493d63486d29dba9c.tar.gz skiboot-2f9eccfe836ed918202447c493d63486d29dba9c.tar.bz2 |
Add Naples chip support
This adds the PVR and CFAM ID for the Naples chip. Otherwise treated as
a Venice.
This doesn't add the definitions for the new PHB revision yet
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/chip.h | 1 | ||||
-rw-r--r-- | include/processor.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/chip.h b/include/chip.h index 34bd6d9..0547902 100644 --- a/include/chip.h +++ b/include/chip.h @@ -87,6 +87,7 @@ enum proc_chip_type { PROC_CHIP_P7P, PROC_CHIP_P8_MURANO, PROC_CHIP_P8_VENICE, + PROC_CHIP_P8_NAPLES, }; /* Simulator quirks */ diff --git a/include/processor.h b/include/processor.h index cdc5919..c9e9d0e 100644 --- a/include/processor.h +++ b/include/processor.h @@ -179,6 +179,7 @@ #define PVR_TYPE_P7P 0x004a #define PVR_TYPE_P8E 0x004b /* Murano */ #define PVR_TYPE_P8 0x004d /* Venice */ +#define PVR_TYPE_P8NVL 0x004c /* Naples */ #ifdef __ASSEMBLY__ |