coreboot-kgpe-d16/src/include/device/mipi_ids.h
Anil Kumar 33b0f15434 drivers/soundwire/alc711: Add Realtek ALC711 soundwire device
Bug=None
Test=Enabled the device on TGLY RVP and tested that the codec is
     reflected in SSDT. Checked sound card binding works
     and soundwire drivers are enabled in kernel.

Signed-off-by: Anil Kumar <anil.kumar.k@intel.com>
Change-Id: Ia7358927fe8531e609ebe070bef259a2bbc09093
Reviewed-on: https://review.coreboot.org/c/coreboot/+/46303
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Sathyanarayana Nujella <sathyanarayana.nujella@intel.com>
Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
2020-10-30 04:08:17 +00:00

28 lines
752 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_DEV_ID_REALTEK_ALC711 0x0711
#define MIPI_MFG_ID_MAXIM 0x019f
#define MIPI_DEV_ID_MAXIM_MAX98373 0x8373
#endif /* __DEVICE_MIPI_IDS_H__ */