blob: dea580be27dd1768f7cb77af56f112e73f0776a0 [file] [log] [blame]
Nariman Poushin0ece80f2018-02-26 06:52:04 +00001/*
2 * Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
Chandni Cherukuric8ef0452018-10-04 16:32:03 +05307#ifndef SGI_VARIANT_H
8#define SGI_VARIANT_H
Nariman Poushin0ece80f2018-02-26 06:52:04 +00009
10/* SSC_VERSION values for SGI575 */
11#define SGI575_SSC_VER_PART_NUM 0x0783
12
Chandni Cherukuric8ef0452018-10-04 16:32:03 +053013/* SID Version values for SGI-Clark */
14#define SGI_CLARK_SID_VER_PART_NUM 0x0786
15
16/* Structure containing SGI platform variant information */
17typedef struct sgi_platform_info {
18 unsigned int platform_id; /* Part Number of the platform */
19 unsigned int config_id; /* Config Id of the platform */
20} sgi_platform_info_t;
21
22extern sgi_platform_info_t sgi_plat_info;
23
24#endif /* SGI_VARIANT_H */