blob: 0176347414fc4a92f9b98c8b64487027c2f1dfaf [file] [log] [blame]
Teresa Remmetc6dd9c62023-08-17 10:57:07 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 * Copyright (C) 2023 PHYTEC Messtechnik GmbH
4 * Author: Teresa Remmet <t.remmet@phytec.de>
5 */
6
7#ifndef _PHYTEC_IMX8M_SOM_DETECTION_H
8#define _PHYTEC_IMX8M_SOM_DETECTION_H
9
10#include "phytec_som_detection.h"
11
12#define PHYTEC_IMX8MQ_SOM 66
13#define PHYTEC_IMX8MM_SOM 69
14#define PHYTEC_IMX8MP_SOM 70
15
Yannic Moog1132f362023-12-20 09:45:32 +010016int __maybe_unused phytec_imx8m_detect(struct phytec_eeprom_data *data);
Teresa Remmetc6dd9c62023-08-17 10:57:07 +020017u8 __maybe_unused phytec_get_imx8m_ddr_size(struct phytec_eeprom_data *data);
18u8 __maybe_unused phytec_get_imx8mp_rtc(struct phytec_eeprom_data *data);
19u8 __maybe_unused phytec_get_imx8m_spi(struct phytec_eeprom_data *data);
20u8 __maybe_unused phytec_get_imx8m_eth(struct phytec_eeprom_data *data);
21
Teresa Remmetc6dd9c62023-08-17 10:57:07 +020022#endif /* _PHYTEC_IMX8M_SOM_DETECTION_H */