blob: bbc95b0186f1d585c11e3011615b045fb01b3c98 [file] [log] [blame]
Abhishek Shaha2936da2020-07-15 22:48:59 +05301/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Copyright 2020 Broadcom.
4 *
5 */
6
7#ifndef BL33_INFO_H
8#define BL33_INFO_H
9#include <asm/io.h>
10
11/* Increase version number each time this file is modified */
12#define BL33_INFO_VERSION 1
13
14struct chip_info {
15 unsigned int chip_id;
16 unsigned int rev_id;
17};
18
19struct bl33_info {
20 unsigned int version;
21 struct chip_info chip;
22};
23
24extern struct bl33_info *bl33_info;
25
26#endif