be7507db29
Change-Id: I6c69dcad82ee217ed4760dea1792dd1a6612cd8b Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41606 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
27 lines
709 B
C
27 lines
709 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
/*
|
|
* MIPI Alliance Manufacturer IDs from https://mid.mipi.org
|
|
*/
|
|
|
|
#ifndef __DEVICE_MIPI_IDS_H__
|
|
#define __DEVICE_MIPI_IDS_H__
|
|
|
|
/* Board Members */
|
|
#define MIPI_MFG_ID_INTEL 0x0105
|
|
#define MIPI_MFG_ID_QUALCOMM 0x0217
|
|
#define MIPI_MFG_ID_BOSCH 0x03b8
|
|
#define MIPI_MFG_ID_SAMSUNG 0x010b
|
|
#define MIPI_MFG_ID_ST_MICRO 0x0104
|
|
#define MIPI_MFG_ID_SYNOPSYS 0x0148
|
|
#define MIPI_MFG_ID_TI 0x0102
|
|
#define MIPI_MFG_ID_TOSHIBA 0x0126
|
|
|
|
/* Contributing Members */
|
|
#define MIPI_MFG_ID_REALTEK 0x025d
|
|
#define MIPI_DEV_ID_REALTEK_ALC5682 0x5682
|
|
|
|
#define MIPI_MFG_ID_MAXIM 0x019f
|
|
#define MIPI_DEV_ID_MAXIM_MAX98373 0x8373
|
|
|
|
#endif /* __DEVICE_MIPI_IDS_H__ */
|