aboutsummaryrefslogtreecommitdiff
path: root/src/soc/intel/skylake/acpi/serialio.asl
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/intel/skylake/acpi/serialio.asl')
-rw-r--r--src/soc/intel/skylake/acpi/serialio.asl609
1 files changed, 345 insertions, 264 deletions
diff --git a/src/soc/intel/skylake/acpi/serialio.asl b/src/soc/intel/skylake/acpi/serialio.asl
index 7ffc671a74..203dbef7c5 100644
--- a/src/soc/intel/skylake/acpi/serialio.asl
+++ b/src/soc/intel/skylake/acpi/serialio.asl
@@ -2,6 +2,7 @@
* This file is part of the coreboot project.
*
* Copyright (C) 2014 Google Inc.
+ * Copyright (C) 2015 Intel Corporation.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -14,20 +15,22 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc.
*/
+#include <soc/irq.h>
// Intel Serial IO Devices in ACPI Mode
-// Serial IO Device BAR0 and BAR1 is 4KB
+/* Serial IO Device BAR0 and BAR1 is 4KB */
#define SIO_BAR_LEN 0x1000
-// Put SerialIO device in D0 state
-// Arg0 - BAR1 of device
-// Arg1 - Set if device is in ACPI mode
+/* Put SerialIO device in D0 state */
+/* Arg0 - BAR1 of device */
+/* Arg1 - Set if device is in ACPI mode */
+
Method (LPD0, 2, Serialized)
{
- // PCI mode devices will be handled by OS PCI bus driver
+ /* PCI mode devices will be handled by OS PCI bus driver */
If (LEqual (Arg1, 0)) {
Return
}
@@ -39,146 +42,80 @@ Method (LPD0, 2, Serialized)
}
And (SPCS, 0xFFFFFFFC, SPCS)
- Store (SPCS, Local0) // Read back after writing
+ /* Read back after writing */
+ Store (SPCS, Local0)
}
-// Put SerialIO device in D3 state
-// Arg0 - BAR1 of device
-// Arg1 - Set if device is in ACPI mode
+/* Put SerialIO device in D3 state */
+/* Arg0 - BAR1 of device */
+/* Arg1 - Set if device is in ACPI mode */
+
Method (LPD3, 2, Serialized)
{
- // PCI mode devices will be handled by OS PCI bus driver
+ /* PCI mode devices will be handled by OS PCI bus driver */
If (LEqual (Arg1, 0)) {
Return
}
-
OperationRegion (SPRT, SystemMemory, Add (Arg0, 0x84), 4)
Field (SPRT, DWordAcc, NoLock, Preserve)
{
SPCS, 32
}
-
Or (SPCS, 0x3, SPCS)
Store (SPCS, Local0) // Read back after writing
}
-// Serial IO Resource Consumption for BAR1
+/* Serial IO Resource Consumption for BAR1 */
Device (SIOR)
{
Name (_HID, EISAID("PNP0C02"))
- Name (_UID, 4)
-
- Name (RBUF, ResourceTemplate()
- {
- // Serial IO BAR1 (PCI config space) resources
- Memory32Fixed (ReadWrite, 0x00000000, 0x00000000, B1D0) // SDMA
- Memory32Fixed (ReadWrite, 0x00000000, 0x00000000, B1D1) // I2C0
- Memory32Fixed (ReadWrite, 0x00000000, 0x00000000, B1D2) // I2C1
- Memory32Fixed (ReadWrite, 0x00000000, 0x00000000, B1D3) // SPI0
- Memory32Fixed (ReadWrite, 0x00000000, 0x00000000, B1D4) // SPI1
- Memory32Fixed (ReadWrite, 0x00000000, 0x00000000, B1D5) // UART0
- Memory32Fixed (ReadWrite, 0x00000000, 0x00000000, B1D6) // UART1
- Memory32Fixed (ReadWrite, 0x00000000, 0x00000000, B1D7) // SDIO
- })
-
- // Update BAR1 address and length if set in NVS
- Method (_CRS, 0, NotSerialized)
+ Name (_UID, 5)
+ Method(ADDB,3,Serialized) {
+ Name (BUFF, ResourceTemplate()
{
- // SDMA
- If (LNotEqual (\S0B1, Zero)) {
- CreateDwordField (^RBUF, ^B1D0._BAS, B0AD)
- CreateDwordField (^RBUF, ^B1D0._LEN, B0LN)
- Store (\S0B1, B0AD)
- Store (SIO_BAR_LEN, B0LN)
- }
-
- // I2C0
- If (LNotEqual (\S1B1, Zero)) {
- CreateDwordField (^RBUF, ^B1D1._BAS, B1AD)
- CreateDwordField (^RBUF, ^B1D1._LEN, B1LN)
- Store (\S1B1, B1AD)
- Store (SIO_BAR_LEN, B1LN)
- }
-
- // I2C1
- If (LNotEqual (\S2B1, Zero)) {
- CreateDwordField (^RBUF, ^B1D2._BAS, B2AD)
- CreateDwordField (^RBUF, ^B1D2._LEN, B2LN)
- Store (\S2B1, B2AD)
- Store (SIO_BAR_LEN, B2LN)
- }
-
- // SPI0
- If (LNotEqual (\S3B1, Zero)) {
- CreateDwordField (^RBUF, ^B1D3._BAS, B3AD)
- CreateDwordField (^RBUF, ^B1D3._LEN, B3LN)
- Store (\S3B1, B3AD)
- Store (SIO_BAR_LEN, B3LN)
- }
-
- // SPI1
- If (LNotEqual (\S4B1, Zero)) {
- CreateDwordField (^RBUF, ^B1D4._BAS, B4AD)
- CreateDwordField (^RBUF, ^B1D4._LEN, B4LN)
- Store (\S4B1, B4AD)
- Store (SIO_BAR_LEN, B4LN)
- }
-
- // UART0
- If (LNotEqual (\S5B1, Zero)) {
- CreateDwordField (^RBUF, ^B1D5._BAS, B5AD)
- CreateDwordField (^RBUF, ^B1D5._LEN, B5LN)
- Store (\S5B1, B5AD)
- Store (SIO_BAR_LEN, B5LN)
- }
-
- // UART1
- If (LNotEqual (\S6B1, Zero)) {
- CreateDwordField (^RBUF, ^B1D6._BAS, B6AD)
- CreateDwordField (^RBUF, ^B1D6._LEN, B6LN)
- Store (\S6B1, B6AD)
- Store (SIO_BAR_LEN, B6LN)
- }
-
- // SDIO
- If (LNotEqual (\S7B1, Zero)) {
- CreateDwordField (^RBUF, ^B1D7._BAS, B7AD)
- CreateDwordField (^RBUF, ^B1D7._LEN, B7LN)
- Store (\S7B1, B7AD)
- Store (SIO_BAR_LEN, B7LN)
- }
-
- Return (RBUF)
+ Memory32Fixed (ReadWrite, 0x00000000, 0x1000, BUF)
+ })
+ CreateDWordField(BUFF,BUF._BAS,ADDR)
+ CreateDWordField(BUFF,BUF._LEN,LENG)
+ Store(ResourceTemplate(){}, Local0)
+ //Return (RBUF)
}
}
-Device (SDMA)
+Device (I2C0)
{
- // Serial IO DMA Controller
- Name (_HID, "INTL9C60")
+ /* Serial IO I2C0 Controller */
+ Name (_HID,"INT3442")
Name (_UID, 1)
Name (_ADR, 0x00150000)
+ Name (SSCN, Package () { 432, 507, 30 })
+ Name (FMCN, Package () { 72, 160, 30 })
- // BAR0 is assigned during PCI enumeration and saved into NVS
+ /* BAR0 is assigned during PCI enumeration and saved into NVS */
Name (RBUF, ResourceTemplate ()
{
Memory32Fixed (ReadWrite, 0x00000000, 0x00000000, BAR0)
- Interrupt (ResourceConsumer, Level, ActiveLow, Shared, , , ) {7}
+ Interrupt (ResourceConsumer, Level, ActiveLow, Shared, , , )
+ { LPSS_I2C0_IRQ }
})
+ /* DMA channels are only used if Serial IO DMA controller is enabled */
+ Name (DBUF, ResourceTemplate ()
+ {
+ FixedDMA (0x18, 4, Width32Bit, DMA1) // Tx
+ FixedDMA (0x19, 5, Width32Bit, DMA2) // Rx
+ })
Method (_CRS, 0, NotSerialized)
{
- // Update BAR0 address and length if set in NVS
+ /* Update BAR0 address and length if set in NVS */
If (LNotEqual (\S0B0, Zero)) {
CreateDwordField (^RBUF, ^BAR0._BAS, B0AD)
CreateDwordField (^RBUF, ^BAR0._LEN, B0LN)
Store (\S0B0, B0AD)
Store (SIO_BAR_LEN, B0LN)
}
-
Return (RBUF)
}
-
Method (_STA, 0, NotSerialized)
{
If (LEqual (\S0EN, 0)) {
@@ -187,59 +124,56 @@ Device (SDMA)
Return (0xF)
}
}
-}
-Device (I2C0)
-{
- // Serial IO I2C0 Controller
- Method (_HID)
+ Method (_PS0, 0, Serialized)
{
- If (\ISWP ()) {
- // WildcatPoint
- Return ("INT3432")
- }
+ ^^LPD0 (\S0B1, \S0EN)
+ }
- // LynxPoint-LP
- Return ("INT33C2")
+ Method (_PS3, 0, Serialized)
+ {
+ ^^LPD3 (\S0B1, \S0EN)
}
+
+}
+
+Device (I2C1)
+{
+ /* Serial IO I2C1 Controller */
+ Name (_HID,"INT3443")
Name (_UID, 1)
Name (_ADR, 0x00150001)
+ Name (SSCN, Package () { 528, 640, 30 })
+ Name (FMCN, Package () { 128, 160, 30 })
+ Name (FPCN, Package () { 48, 64, 30})
- Name (SSCN, Package () { 432, 507, 30 })
- Name (FMCN, Package () { 72, 160, 30 })
-
- // BAR0 is assigned during PCI enumeration and saved into NVS
+ /* BAR0 is assigned during PCI enumeration and saved into NVS */
Name (RBUF, ResourceTemplate ()
{
Memory32Fixed (ReadWrite, 0x00000000, 0x00000000, BAR0)
- Interrupt (ResourceConsumer, Level, ActiveLow, Shared, , , ) {7}
+ Interrupt (ResourceConsumer, Level, ActiveLow, Shared, , , )
+ { LPSS_I2C1_IRQ }
})
- // DMA channels are only used if Serial IO DMA controller is enabled
+ /* DMA channels are only used if
+ * Serial IO DMA controller is enabled
+ */
Name (DBUF, ResourceTemplate ()
{
- FixedDMA (0x18, 4, Width32Bit, DMA1) // Tx
- FixedDMA (0x19, 5, Width32Bit, DMA2) // Rx
+ FixedDMA (0x1A, 6, Width32Bit, DMA1) // Tx
+ FixedDMA (0x1B, 7, Width32Bit, DMA2) // Rx
})
-
Method (_CRS, 0, NotSerialized)
{
- // Update BAR0 address and length if set in NVS
+ /* Update BAR0 address and length if set in NVS */
If (LNotEqual (\S1B0, Zero)) {
CreateDwordField (^RBUF, ^BAR0._BAS, B0AD)
CreateDwordField (^RBUF, ^BAR0._LEN, B0LN)
Store (\S1B0, B0AD)
Store (SIO_BAR_LEN, B0LN)
}
-
- // Check if Serial IO DMA Controller is enabled
- If (LNotEqual (\_SB.PCI0.SDMA._STA, Zero)) {
- Return (ConcatenateResTemplate (RBUF, DBUF))
- } Else {
- Return (RBUF)
- }
+ Return (RBUF)
}
-
Method (_STA, 0, NotSerialized)
{
If (LEqual (\S1EN, 0)) {
@@ -260,42 +194,36 @@ Device (I2C0)
}
}
-Device (I2C1)
-{
- // Serial IO I2C1 Controller
- Method (_HID)
- {
- If (\ISWP ()) {
- // WildcatPoint
- Return ("INT3433")
- }
- // LynxPoint-LP
- Return ("INT33C3")
- }
+Device (I2C2)
+{
+ /* Serial IO I2C1 Controller */
+ Name (_HID,"INT3444")
Name (_UID, 1)
Name (_ADR, 0x00150002)
-
Name (SSCN, Package () { 432, 507, 30 })
Name (FMCN, Package () { 72, 160, 30 })
- // BAR0 is assigned during PCI enumeration and saved into NVS
+ /* BAR0 is assigned during PCI enumeration and saved into NVS */
Name (RBUF, ResourceTemplate ()
{
Memory32Fixed (ReadWrite, 0x00000000, 0x00000000, BAR0)
- Interrupt (ResourceConsumer, Level, ActiveLow, Shared, , , ) {7}
+ Interrupt (ResourceConsumer, Level, ActiveLow, Shared, , , )
+ { LPSS_I2C2_IRQ }
})
- // DMA channels are only used if Serial IO DMA controller is enabled
+ /* DMA channels are only used if
+ * Serial IO DMA controller is enabled
+ */
Name (DBUF, ResourceTemplate ()
{
- FixedDMA (0x1A, 6, Width32Bit, DMA1) // Tx
- FixedDMA (0x1B, 7, Width32Bit, DMA2) // Rx
+ FixedDMA (0x1A, 6, Width32Bit, DMA1)
+ FixedDMA (0x1B, 7, Width32Bit, DMA2)
})
Method (_CRS, 0, NotSerialized)
{
- // Update BAR0 address and length if set in NVS
+ /* Update BAR0 address and length if set in NVS */
If (LNotEqual (\S2B0, Zero)) {
CreateDwordField (^RBUF, ^BAR0._BAS, B0AD)
CreateDwordField (^RBUF, ^BAR0._LEN, B0LN)
@@ -303,12 +231,8 @@ Device (I2C1)
Store (SIO_BAR_LEN, B0LN)
}
- // Check if Serial IO DMA Controller is enabled
- If (LNotEqual (\_SB.PCI0.SDMA._STA, Zero)) {
- Return (ConcatenateResTemplate (RBUF, DBUF))
- } Else {
- Return (RBUF)
- }
+ /* Check if Serial IO DMA Controller is enabled */
+ Return (RBUF)
}
Method (_STA, 0, NotSerialized)
@@ -331,32 +255,35 @@ Device (I2C1)
}
}
-Device (SPI0)
+Device (I2C3)
{
- // Serial IO SPI0 Controller
- Method (_HID)
- {
- If (\ISWP ()) {
- // WildcatPoint
- Return ("INT3430")
- }
-
- // LynxPoint-LP
- Return ("INT33C0")
- }
+ /* Serial IO I2C3 Controller */
+ Name (_HID,"INT3445")
Name (_UID, 1)
Name (_ADR, 0x00150003)
+ Name (SSCN, Package () { 432, 507, 30 })
+ Name (FMCN, Package () { 72, 160, 30 })
- // BAR0 is assigned during PCI enumeration and saved into NVS
+ /* BAR0 is assigned during PCI enumeration and saved into NVS */
Name (RBUF, ResourceTemplate ()
{
Memory32Fixed (ReadWrite, 0x00000000, 0x00000000, BAR0)
- Interrupt (ResourceConsumer, Level, ActiveLow, Shared, , , ) {7}
+ Interrupt (ResourceConsumer, Level, ActiveLow, Shared, , , )
+ { LPSS_I2C3_IRQ }
+ })
+
+ /* DMA channels are only used if
+ * Serial IO DMA controller is enabled
+ */
+ Name (DBUF, ResourceTemplate ()
+ {
+ FixedDMA (0x1A, 6, Width32Bit, DMA1)
+ FixedDMA (0x1B, 7, Width32Bit, DMA2)
})
Method (_CRS, 0, NotSerialized)
{
- // Update BAR0 address and length if set in NVS
+ /* Update BAR0 address and length if set in NVS */
If (LNotEqual (\S3B0, Zero)) {
CreateDwordField (^RBUF, ^BAR0._BAS, B0AD)
CreateDwordField (^RBUF, ^BAR0._LEN, B0LN)
@@ -364,6 +291,7 @@ Device (SPI0)
Store (SIO_BAR_LEN, B0LN)
}
+ /* Check if Serial IO DMA Controller is enabled */
Return (RBUF)
}
@@ -385,56 +313,48 @@ Device (SPI0)
{
^^LPD3 (\S3B1, \S3EN)
}
+
}
-Device (SPI1)
+Device (I2C4)
{
- // Serial IO SPI1 Controller
- Method (_HID)
- {
- If (\ISWP ()) {
- // WildcatPoint
- Return ("INT3431")
- }
-
- // LynxPoint-LP
- Return ("INT33C1")
- }
+ /* Serial IO I2C4 Controller */
+ Name (_HID,"INT3446")
Name (_UID, 1)
- Name (_ADR, 0x00150004)
+ Name (_ADR, 0x00190002)
+ Name (SSCN, Package () { 432, 507, 30 })
+ Name (FMCN, Package () { 72, 160, 30 })
- // BAR0 is assigned during PCI enumeration and saved into NVS
+ /* BAR0 is assigned during PCI enumeration and saved into NVS */
Name (RBUF, ResourceTemplate ()
{
Memory32Fixed (ReadWrite, 0x00000000, 0x00000000, BAR0)
- Interrupt (ResourceConsumer, Level, ActiveLow, Shared, , , ) {7}
+ Interrupt (ResourceConsumer, Level, ActiveLow, Shared, , , )
+ { LPSS_I2C4_IRQ }
})
- // DMA channels are only used if Serial IO DMA controller is enabled
+ /* DMA channels are only used if
+ * Serial IO DMA controller is enabled
+ */
Name (DBUF, ResourceTemplate ()
{
- FixedDMA (0x10, 0, Width32Bit, DMA1) // Tx
- FixedDMA (0x11, 1, Width32Bit, DMA2) // Rx
+ FixedDMA (0x1A, 6, Width32Bit, DMA1)
+ FixedDMA (0x1B, 7, Width32Bit, DMA2)
})
Method (_CRS, 0, NotSerialized)
{
- // Update BAR0 address and length if set in NVS
- If (LNotEqual (\S4B0, Zero)) {
+ /* Update BAR0 address and length if set in NVS*/
+ If (LNotEqual (\S4B0, Zero)) {
CreateDwordField (^RBUF, ^BAR0._BAS, B0AD)
CreateDwordField (^RBUF, ^BAR0._LEN, B0LN)
Store (\S4B0, B0AD)
Store (SIO_BAR_LEN, B0LN)
}
- // Check if Serial IO DMA Controller is enabled
- If (LNotEqual (\_SB.PCI0.SDMA._STA, Zero)) {
- Return (ConcatenateResTemplate (RBUF, DBUF))
- } Else {
- Return (RBUF)
- }
+ /* Check if Serial IO DMA Controller is enabled */
+ Return (RBUF)
}
-
Method (_STA, 0, NotSerialized)
{
If (LEqual (\S4EN, 0)) {
@@ -455,52 +375,43 @@ Device (SPI1)
}
}
-Device (UAR0)
+Device (I2C5)
{
- // Serial IO UART0 Controller
- Method (_HID)
- {
- If (\ISWP ()) {
- // WildcatPoint
- Return ("INT3434")
- }
-
- // LynxPoint-LP
- Return ("INT33C4")
- }
+ /* Serial IO I2C1 Controller */
+ Name (_HID,"INT3447")
Name (_UID, 1)
- Name (_ADR, 0x00150005)
+ Name (_ADR, 0x00190002)
+ Name (SSCN, Package () { 432, 507, 30 })
+ Name (FMCN, Package () { 72, 160, 30 })
- // BAR0 is assigned during PCI enumeration and saved into NVS
+ /* BAR0 is assigned during PCI enumeration and saved into NVS */
Name (RBUF, ResourceTemplate ()
{
- Memory32Fixed (ReadWrite, 0x00000000, 0x00000000, BAR0)
- Interrupt (ResourceConsumer, Level, ActiveLow, Shared, , , ) {13}
+ Memory32Fixed (ReadWrite, 0x00000000, 0x00000000, BAR0)
+ Interrupt (ResourceConsumer, Level, ActiveLow, Shared, , , )
+ { LPSS_I2C5_IRQ }
})
- // DMA channels are only used if Serial IO DMA controller is enabled
+ /* DMA channels are only used if
+ * Serial IO DMA controller is enabled
+ */
Name (DBUF, ResourceTemplate ()
{
- FixedDMA (0x16, 2, Width32Bit, DMA1) // Tx
- FixedDMA (0x17, 3, Width32Bit, DMA2) // Rx
+ FixedDMA (0x1A, 6, Width32Bit, DMA1)
+ FixedDMA (0x1B, 7, Width32Bit, DMA2)
})
Method (_CRS, 0, NotSerialized)
{
- // Update BAR0 address and length if set in NVS
- If (LNotEqual (\S5B0, Zero)) {
- CreateDwordField (^RBUF, ^BAR0._BAS, B0AD)
- CreateDwordField (^RBUF, ^BAR0._LEN, B0LN)
- Store (\S5B0, B0AD)
- Store (SIO_BAR_LEN, B0LN)
- }
+ /* Update BAR0 address and length if set in NVS */
+ CreateDwordField (^RBUF, ^BAR0._BAS, B0AD)
+ CreateDwordField (^RBUF, ^BAR0._LEN, B0LN)
+ Store (0xFE02A000, B0AD)
+ Store (SIO_BAR_LEN, B0LN)
- // Check if Serial IO DMA Controller is enabled
- If (LNotEqual (\_SB.PCI0.SDMA._STA, Zero)) {
- Return (ConcatenateResTemplate (RBUF, DBUF))
- } Else {
- Return (RBUF)
- }
+
+ /* Check if Serial IO DMA Controller is enabled */
+ Return (RBUF)
}
Method (_STA, 0, NotSerialized)
@@ -523,32 +434,24 @@ Device (UAR0)
}
}
-Device (UAR1)
+Device (SPI0)
{
- // Serial IO UART1 Controller
- Method (_HID)
- {
- If (\ISWP ()) {
- // WildcatPoint
- Return ("INT3435")
- }
-
- // LynxPoint-LP
- Return ("INT33C5")
- }
+ /* Serial IO PI0 Controller */
+ Name (_HID,"INT3440")
Name (_UID, 1)
- Name (_ADR, 0x00150006)
+ Name (_ADR, 0x001E0002)
- // BAR0 is assigned during PCI enumeration and saved into NVS
+ /* BAR0 is assigned during PCI enumeration and saved into NVS */
Name (RBUF, ResourceTemplate ()
{
Memory32Fixed (ReadWrite, 0x00000000, 0x00000000, BAR0)
- Interrupt (ResourceConsumer, Level, ActiveLow, Shared, , , ) {13}
+ Interrupt (ResourceConsumer, Level, ActiveLow, Shared, , , )
+ { LPSS_SPI0_IRQ }
})
Method (_CRS, 0, NotSerialized)
{
- // Update BAR0 address and length if set in NVS
+ /* Update BAR0 address and length if set in NVS */
If (LNotEqual (\S6B0, Zero)) {
CreateDwordField (^RBUF, ^BAR0._BAS, B0AD)
CreateDwordField (^RBUF, ^BAR0._LEN, B0LN)
@@ -567,7 +470,6 @@ Device (UAR1)
Return (0xF)
}
}
-
Method (_PS0, 0, Serialized)
{
^^LPD0 (\S6B1, \S6EN)
@@ -579,37 +481,129 @@ Device (UAR1)
}
}
-Device (SDIO)
+Device (SPI1)
{
- // Serial IO SDIO Controller
- Method (_HID)
+ /* Serial IO SPI1 Controller */
+ Name (_HID,"INT3441")
+ Name (_UID, 1)
+ Name (_ADR, 0x001E0003)
+
+ /* BAR0 is assigned during PCI enumeration and saved into NVS */
+ Name (RBUF, ResourceTemplate ()
+ {
+ Memory32Fixed (ReadWrite, 0x00000000, 0x00000000, BAR0)
+ Interrupt (ResourceConsumer, Level, ActiveLow, Shared, , , )
+ { LPSS_SPI1_IRQ }
+ })
+
+ /* DMA channels are only used if Serial IO DMA controller is enabled */
+ Name (DBUF, ResourceTemplate ()
+ {
+ FixedDMA (0x10, 0, Width32Bit, DMA1) /* Tx */
+ FixedDMA (0x11, 1, Width32Bit, DMA2) /* Rx */
+ })
+ Method (_CRS, 0, NotSerialized)
{
- If (\ISWP ()) {
- // WildcatPoint
- Return ("INT3436")
+ /* Update BAR0 address and length if set in NVS */
+ If (LNotEqual (\S7B0, Zero)) {
+ CreateDwordField (^RBUF, ^BAR0._BAS, B0AD)
+ CreateDwordField (^RBUF, ^BAR0._LEN, B0LN)
+ Store (\S7B0, B0AD)
+ Store (SIO_BAR_LEN, B0LN)
}
- // LynxPoint-LP
- Return ("INT33C6")
+ Return (RBUF)
+ }
+ Method (_STA, 0, NotSerialized)
+ {
+ If (LEqual (\S7EN, 0)) {
+ Return (0x0)
+ } Else {
+ Return (0xF)
+ }
+ }
+
+ Method (_PS0, 0, Serialized)
+ {
+ ^^LPD0 (\S7B1, \S7EN)
+ }
+
+ Method (_PS3, 0, Serialized)
+ {
+ ^^LPD3 (\S7B1, \S7EN)
+ }
+}
+
+Device (UAR0)
+{
+ /* Serial IO UART0 Controller */
+ Name (_HID,"INT3448")
+ Name (_UID, 1)
+ Name (_ADR, 0x001E0000)
+
+ /* BAR0 is assigned during PCI enumeration and saved into NVS */
+ Name (RBUF, ResourceTemplate ()
+ {
+ Memory32Fixed (ReadWrite, 0x00000000, 0x00000000, BAR0)
+ Interrupt (ResourceConsumer, Level, ActiveLow, Shared, , , )
+ { LPSS_UART0_IRQ }
+ })
+
+ Method (_CRS, 0, NotSerialized)
+ {
+ /* Update BAR0 address and length if set in NVS */
+ If (LNotEqual (\S8B0, Zero)) {
+ CreateDwordField (^RBUF, ^BAR0._BAS, B0AD)
+ CreateDwordField (^RBUF, ^BAR0._LEN, B0LN)
+ Store (\S8B0, B0AD)
+ Store (SIO_BAR_LEN, B0LN)
+ }
+
+ Return (RBUF)
+ }
+
+ Method (_STA, 0, NotSerialized)
+ {
+ If (LEqual (\S8EN, 0)) {
+ Return (0x0)
+ } Else {
+ Return (0xF)
+ }
+ }
+
+ Method (_PS0, 0, Serialized)
+ {
+ ^^LPD0 (\S8B1, \S8EN)
+ }
+
+ Method (_PS3, 0, Serialized)
+ {
+ ^^LPD3 (\S8B1, \S8EN)
}
- Name (_CID, "PNP0D40")
+}
+
+Device (UAR1)
+{
+ /* Serial IO UART1 Controller */
+ Name (_HID,"INT3449")
Name (_UID, 1)
- Name (_ADR, 0x00170000)
+ Name (_ADR, 0x001E0001)
- // BAR0 is assigned during PCI enumeration and saved into NVS
+ /* BAR0 is assigned during PCI enumeration and saved into NVS */
Name (RBUF, ResourceTemplate ()
{
Memory32Fixed (ReadWrite, 0x00000000, 0x00000000, BAR0)
- Interrupt (ResourceConsumer, Level, ActiveLow, Shared, , , ) {5}
+ Interrupt (ResourceConsumer, Level, ActiveLow, Shared, , , )
+ { LPSS_UART1_IRQ }
})
Method (_CRS, 0, NotSerialized)
{
// Update BAR0 address and length if set in NVS
- If (LNotEqual (\S7B0, Zero)) {
+ If (LNotEqual (\S9B0, Zero)) {
CreateDwordField (^RBUF, ^BAR0._BAS, B0AD)
CreateDwordField (^RBUF, ^BAR0._LEN, B0LN)
- Store (\S7B0, B0AD)
+ Store (\S9B0, B0AD)
Store (SIO_BAR_LEN, B0LN)
}
@@ -618,10 +612,97 @@ Device (SDIO)
Method (_STA, 0, NotSerialized)
{
- If (LEqual (\S7EN, 0)) {
+ If (LEqual (\S9EN, 0)) {
Return (0x0)
} Else {
Return (0xF)
}
}
+
+ Method (_PS0, 0, Serialized)
+ {
+ ^^LPD0 (\S9B1, \S9EN)
+ }
+
+ Method (_PS3, 0, Serialized)
+ {
+ ^^LPD3 (\S9B1, \S9EN)
+ }
}
+
+Device (UAR2)
+{
+ /* Serial IO UART1 Controller */
+ Name (_HID,"INT344A")
+ Name (_UID, 1)
+ Name (_ADR, 0x00190000)
+
+ /* BAR0 is assigned during PCI enumeration and saved into NVS */
+ Name (RBUF, ResourceTemplate ()
+ {
+ Memory32Fixed (ReadWrite, 0x00000000, 0x00000000, BAR0)
+ Interrupt (ResourceConsumer, Level, ActiveLow, Shared, , , )
+ { LPSS_UART2_IRQ }
+ })
+
+ Method (_CRS, 0, NotSerialized)
+ {
+ /* Update BAR0 address and length if set in NVS */
+ If (LNotEqual (\SAB0, Zero)) {
+ CreateDwordField (^RBUF, ^BAR0._BAS, B0AD)
+ CreateDwordField (^RBUF, ^BAR0._LEN, B0LN)
+ Store (\SAB0, B0AD)
+ Store (SIO_BAR_LEN, B0LN)
+ }
+
+ Return (RBUF)
+ }
+
+ Method (_STA, 0, NotSerialized)
+ {
+ If (LEqual (\SAEN, 0)) {
+ Return (0x0)
+ } Else {
+ Return (0xF)
+ }
+ }
+
+ Method (_PS0, 0, Serialized)
+ {
+ ^^LPD0 (\SAB1, \SAEN)
+ }
+
+ Method (_PS3, 0, Serialized)
+ {
+ ^^LPD3 (\SAB1, \SAEN)
+ }
+}
+
+
+Device (PEMC)
+{
+ Name (_ADR, 0x001E0004)
+ Device (CARD)
+ {
+ Name (_ADR, 0x00000008)
+ Method (_RMV, 0x0, NotSerialized)
+ {
+ Return (0)
+ }
+ }
+}
+
+/* SD controller */
+Device (PSDC)
+{
+ Name (_ADR, 0x001E0006)
+ Device (CARD)
+ {
+ Name (_ADR, 0x00000008)
+ Method (_RMV, 0x0, NotSerialized)
+ {
+ Return (1)
+ }
+ }
+}
+