blob: bfdc8b7f70c5a554e53ac72041b59d1b9ea1315d [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,
Marcel Ziswiler2658c8e2019-04-09 17:25:32 +020028 COLIBRI_PXA310, /* 5 */
Marcel Ziswiler7a28dfc2016-11-16 17:49:22 +010029 COLIBRI_PXA320_IT,
30 COLIBRI_PXA300_XT,
31 COLIBRI_PXA270_312MHZ,
32 COLIBRI_PXA270_520MHZ,
Marcel Ziswiler2658c8e2019-04-09 17:25:32 +020033 COLIBRI_VF50, /* 10 */
34 COLIBRI_VF61, /* not currently on sale */
Marcel Ziswiler7a28dfc2016-11-16 17:49:22 +010035 COLIBRI_VF61_IT,
36 COLIBRI_VF50_IT,
37 COLIBRI_IMX6S,
Marcel Ziswiler2658c8e2019-04-09 17:25:32 +020038 COLIBRI_IMX6DL, /* 15 */
Marcel Ziswiler7a28dfc2016-11-16 17:49:22 +010039 COLIBRI_IMX6S_IT,
40 COLIBRI_IMX6DL_IT,
Marcel Ziswiler2658c8e2019-04-09 17:25:32 +020041 /* 18 */
42 /* 19 */
Marcel Ziswiler7a28dfc2016-11-16 17:49:22 +010043 COLIBRI_T20_256MB = 20,
44 COLIBRI_T20_512MB,
45 COLIBRI_T20_512MB_IT,
46 COLIBRI_T30,
47 COLIBRI_T20_256MB_IT,
Marcel Ziswiler2658c8e2019-04-09 17:25:32 +020048 APALIS_T30_2GB, /* 25 */
Marcel Ziswiler7a28dfc2016-11-16 17:49:22 +010049 APALIS_T30_1GB,
50 APALIS_IMX6Q,
51 APALIS_IMX6Q_IT,
52 APALIS_IMX6D,
Marcel Ziswiler2658c8e2019-04-09 17:25:32 +020053 COLIBRI_T30_IT, /* 30 */
Marcel Ziswiler7a28dfc2016-11-16 17:49:22 +010054 APALIS_T30_IT,
55 COLIBRI_IMX7S,
56 COLIBRI_IMX7D,
57 APALIS_TK1_2GB,
Marcel Ziswiler2658c8e2019-04-09 17:25:32 +020058 APALIS_IMX6D_IT, /* 35 */
Stefan Agner01875e92018-05-30 19:01:47 +020059 COLIBRI_IMX6ULL,
Marcel Ziswiler2658c8e2019-04-09 17:25:32 +020060 APALIS_IMX8QM_WIFI_BT_IT,
61 COLIBRI_IMX8QXP_WIFI_BT_IT,
Stefan Agner01875e92018-05-30 19:01:47 +020062 COLIBRI_IMX7D_EMMC,
63 COLIBRI_IMX6ULL_WIFI_BT_IT, /* 40 */
64 COLIBRI_IMX7D_EPDC,
Marcel Ziswiler2658c8e2019-04-09 17:25:32 +020065 APALIS_TK1_4GB, /* not currently on sale */
Gerard Salvatella5ab3b1d2019-04-09 17:24:07 +020066 COLIBRI_T20_512MB_IT_SETEK,
67 COLIBRI_IMX6ULL_IT,
68 COLIBRI_IMX6ULL_WIFI_BT, /* 45 */
Marcel Ziswilerf60ffec2019-04-09 17:25:33 +020069 APALIS_IMX8QXP_WIFI_BT_IT,
70 APALIS_IMX8QM_IT,
71 APALIS_IMX8QP_WIFI_BT,
72 APALIS_IMX8QP,
73 COLIBRI_IMX8QXP_IT, /* 50 */
74 COLIBRI_IMX8DX_WIFI_BT,
75 COLIBRI_IMX8DX,
Marcel Ziswiler7a28dfc2016-11-16 17:49:22 +010076};
77
78extern const char * const toradex_modules[];
79extern bool valid_cfgblock;
80extern struct toradex_hw tdx_hw_tag;
81extern struct toradex_eth_addr tdx_eth_addr;
82extern u32 tdx_serial;
83
84int read_tdx_cfg_block(void);
85
86#endif /* _TDX_CFG_BLOCK_H */