blob: 951caaacaa0246fb99a3320ea9fc89ae3d36a797 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/* 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_DEV_ID_REALTEK_ALC711 0x0711
#define MIPI_MFG_ID_MAXIM 0x019f
#define MIPI_DEV_ID_MAXIM_MAX98373 0x8373
#endif /* __DEVICE_MIPI_IDS_H__ */
|