Teresa Remmet | c6dd9c6 | 2023-08-17 10:57:07 +0200 | [diff] [blame] | 1 | /* 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 Moog | 1132f36 | 2023-12-20 09:45:32 +0100 | [diff] [blame] | 16 | int __maybe_unused phytec_imx8m_detect(struct phytec_eeprom_data *data); |
Teresa Remmet | c6dd9c6 | 2023-08-17 10:57:07 +0200 | [diff] [blame] | 17 | u8 __maybe_unused phytec_get_imx8m_ddr_size(struct phytec_eeprom_data *data); |
| 18 | u8 __maybe_unused phytec_get_imx8mp_rtc(struct phytec_eeprom_data *data); |
| 19 | u8 __maybe_unused phytec_get_imx8m_spi(struct phytec_eeprom_data *data); |
| 20 | u8 __maybe_unused phytec_get_imx8m_eth(struct phytec_eeprom_data *data); |
| 21 | |
Teresa Remmet | c6dd9c6 | 2023-08-17 10:57:07 +0200 | [diff] [blame] | 22 | #endif /* _PHYTEC_IMX8M_SOM_DETECTION_H */ |