blob: da60e789a7970713b5b864037dfb204d4dbedb41 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Marcel Ziswiler7a28dfc2016-11-16 17:49:22 +01002/*
3 * Copyright (c) 2016 Toradex, Inc.
Marcel Ziswiler7a28dfc2016-11-16 17:49:22 +01004 */
5
6#ifndef _TDX_CFG_BLOCK_H
7#define _TDX_CFG_BLOCK_H
8
9#include "tdx-common.h"
10
11struct toradex_hw {
12 u16 ver_major;
13 u16 ver_minor;
14 u16 ver_assembly;
15 u16 prodid;
16};
17
18struct toradex_eth_addr {
19 u32 oui:24;
20 u32 nic:24;
21} __attribute__((__packed__));
22
23enum {
24 COLIBRI_PXA270_V1_312MHZ = 1,
25 COLIBRI_PXA270_V1_520MHZ,
26 COLIBRI_PXA320,
27 COLIBRI_PXA300,
28 COLIBRI_PXA310,
29 COLIBRI_PXA320_IT,
30 COLIBRI_PXA300_XT,
31 COLIBRI_PXA270_312MHZ,
32 COLIBRI_PXA270_520MHZ,
33 COLIBRI_VF50, /* not currently on sale */
34 COLIBRI_VF61,
35 COLIBRI_VF61_IT,
36 COLIBRI_VF50_IT,
37 COLIBRI_IMX6S,
38 COLIBRI_IMX6DL,
39 COLIBRI_IMX6S_IT,
40 COLIBRI_IMX6DL_IT,
41 COLIBRI_T20_256MB = 20,
42 COLIBRI_T20_512MB,
43 COLIBRI_T20_512MB_IT,
44 COLIBRI_T30,
45 COLIBRI_T20_256MB_IT,
46 APALIS_T30_2GB,
47 APALIS_T30_1GB,
48 APALIS_IMX6Q,
49 APALIS_IMX6Q_IT,
50 APALIS_IMX6D,
51 COLIBRI_T30_IT,
52 APALIS_T30_IT,
53 COLIBRI_IMX7S,
54 COLIBRI_IMX7D,
55 APALIS_TK1_2GB,
56 APALIS_IMX6D_IT,
Stefan Agner01875e92018-05-30 19:01:47 +020057 COLIBRI_IMX6ULL,
58 APALIS_IMX8QM, /* 37 */
59 COLIBRI_IMX8X,
60 COLIBRI_IMX7D_EMMC,
61 COLIBRI_IMX6ULL_WIFI_BT_IT, /* 40 */
62 COLIBRI_IMX7D_EPDC,
63 APALIS_TK1_4GB,
Marcel Ziswiler7a28dfc2016-11-16 17:49:22 +010064};
65
66extern const char * const toradex_modules[];
67extern bool valid_cfgblock;
68extern struct toradex_hw tdx_hw_tag;
69extern struct toradex_eth_addr tdx_eth_addr;
70extern u32 tdx_serial;
71
72int read_tdx_cfg_block(void);
73
74#endif /* _TDX_CFG_BLOCK_H */