mirror of https://github.com/acidanthera/audk.git
34 lines
766 B
Plaintext
34 lines
766 B
Plaintext
/** @file
|
|
TI ADC108S102 ADC.
|
|
|
|
Copyright (c) 2013-2015 Intel Corporation.
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
Device(ADC2)
|
|
{
|
|
Name(_HID, "INT3495") // GalileoGen2 Low-Speed ADC.
|
|
Name(_CID, "INT3495")
|
|
Name(RBUF, ResourceTemplate()
|
|
{
|
|
SPISerialBus(0x0000, PolarityLow, ThreeWireMode, 0x10, ControllerInitiated, 0x1E8480, ClockPolarityLow, ClockPhaseFirst, "\\_SB.PCI0.SPI0", 0x00, ResourceConsumer, ,)
|
|
})
|
|
Method(_CRS, 0x0, NotSerialized)
|
|
{
|
|
Return(RBUF)
|
|
}
|
|
Method(_STA, 0x0, NotSerialized)
|
|
{
|
|
//
|
|
// Only Platform Type / Id 8 has this device.
|
|
//
|
|
If(LNotEqual(PTYP, 8))
|
|
{
|
|
return (0)
|
|
}
|
|
Return(0xf)
|
|
}
|
|
}
|