Support ITE IT8518 embedded controller running Quanta's firmware

Change-Id: Ib406b9d5005243d79eea5d2c0c6c86b5aa949891
Signed-off-by: Stefan Reinauer <reinauer@google.com>
Reviewed-on: http://review.coreboot.org/2721
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
Stefan Reinauer
2013-03-13 17:03:04 -07:00
committed by Ronald G. Minnich
parent 5c0b7abe78
commit 7e56855963
11 changed files with 1496 additions and 0 deletions

View File

@@ -1 +1,2 @@
source src/ec/quanta/ene_kb3940q/Kconfig
source src/ec/quanta/it8518/Kconfig

View File

@@ -1 +1,2 @@
subdirs-$(CONFIG_EC_QUANTA_ENE_KB3940Q) += ene_kb3940q
subdirs-$(CONFIG_EC_QUANTA_IT8518) += it8518

View File

@@ -0,0 +1,4 @@
config EC_QUANTA_IT8518
bool
help
Interface to QUANTA IT8518 Embedded Controller.

View File

@@ -0,0 +1,4 @@
romstage-y += ec.c
ramstage-y += ec.c
smm-y += ec.c
smm-y += ../../../lib/delay.c

View File

@@ -0,0 +1,38 @@
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2013 Google Inc.
*
* 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 the Free Software Foundation; version 2 of
* the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* 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
*/
// Scope (EC0)
Device (AC)
{
Name (_HID, "ACPI0003")
Name (_PCL, Package () { \_SB })
Method (_PSR)
{
Store(ACPW, Local0)
Return(Local0)
}
Method (_STA)
{
Return (0x0F)
}
}

View File

@@ -0,0 +1,353 @@
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2013 Google Inc.
*
* 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 the Free Software Foundation; version 2 of
* the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* 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
*/
// Scope (EC0)
Device (BATX)
{
Name (_HID, EISAID ("PNP0C0A"))
Name (_UID, 1)
Name (_PCL, Package () { \_SB })
//
// Indicator of BATX attach/detach
// Battery X Information
// Battery X Status
//
Name (BXST, Zero)
//
// Default Static Battery Information
//
Name (PBIF, Package()
{
0, // 0: Power Unit
0xFFFFFFFF, // 1: Design Capacity
0xFFFFFFFF, // 2: Last Full Charge Capacity
1, // 3: Battery Technology(Rechargable)
10800, // 4: Design Voltage 10.8V
0, // 5: Design capacity of warning
0, // 6: Design capacity of low
1, // 7: Battery capacity granularity 1
1, // 8: Battery capacity granularity 2
"", // 9: Model Number
"", // 10: Serial Number
"", // 11: Battery Type
"" // 12: OEM Infomration
})
Name (PBST, Package ()
{
0x00000000, // Battery State
0xFFFFFFFF, // Battery Present Rate
0xFFFFFFFF, // Battery Remaining Capacity
0xFFFFFFFF, // Battery Present Voltage
})
// Workaround for full battery status, enabled by default
Name (BFWK, One)
// Method to enable full battery workaround
Method (BFWE)
{
Store (One, BFWK)
}
// Method to disable full battery workaround
Method (BFWD)
{
Store (Zero, BFWK)
}
// Method to wait for EC to be ready after changing the Battery Info ID
// Selector
Method (WAEC)
{
Store (20, Local0) // Timeout 100 msec
While (LEqual (HSID, Zero))
{
// EC Is not ready
Sleep (5)
Decrement (Local0)
If (LEqual (Local0, Zero))
{
Break
}
}
}
// Battery Slot Status
Method (_STA, 0, Serialized)
{
Store (MBTS, BXST)
If (BXST)
{
// Battery is present
Return (0x1F)
}
Else
{
Return (0x0F)
}
}
Method (_BIF, 0, Serialized)
{
// Update fields from EC
//
// Information ID 1 -
//
Store (One, HIID)
WAEC ()
//
// Power Unit
// SMART battery : 1 - 10mWh : 0 - mAh
// ACPI spec : 0 - mWh : 1 - mAh
//
Store(SBCM, Local7)
XOr (Local7, One, Index (PBIF, 0))
//
// Information ID 0 -
//
Store (Zero, HIID)
WAEC ()
//
// Last Full Charge Capacity
//
If (Local7)
{
Multiply (SBFC, 10, Index (PBIF, 2))
}
Else
{
Store (SBFC, Index (PBIF, 2))
}
//
// Information ID 2 -
//
Store (2, HIID)
WAEC ()
//
// Design capacity
//
If (Local7)
{
Multiply (SBDC, 10, Local0)
}
Else
{
Store (SBDC, Local0)
}
Store (Local0, Index(PBIF, One))
//
// Design capacity of High (5%)
// Design capacity of Low (1%)
//
Divide (Local0, 20, Local1, Index (PBIF, 5))
Divide (Local0, 100, Local1, Index (PBIF, 6))
//
// Design voltage
//
Store (SBDV, Index (PBIF, 4))
//
// Serial Number
//
Store (ToHexString (SBSN), Index (PBIF, 10))
//
// Information ID 4 -
//
Store (4, HIID)
WAEC ()
//
// Battery Type - Device Chemistry
//
Store (ToString (SBCH), Index (PBIF, 11))
//
// Information ID 5 -
//
Store (5, HIID)
WAEC ()
//
// OEM Information - Manufacturer Name
//
Store (ToString (SBMN), Index (PBIF, 12))
//
// Information ID 6 -
//
Store (6, HIID)
WAEC ()
//
// Model Number - Device Name
//
Store (ToString (SBDN), Index (PBIF, 9))
Return (PBIF)
}
Method (_BST, 0, Serialized)
{
// Update Battery First Used Date, if requested
If (BFUD)
{
// TODO: Handle First Used Date Request
//\BFUD()
}
//
// 0: BATTERY STATE
//
// bit 0 = discharging
// bit 1 = charging
// bit 2 = critical level
//
// Get battery state from EC
If (And (HB0S, 0x20))
{
Store (2, Local0)
}
Else
{
if (And (HB0S, 0x40))
{
Store (One, Local0)
}
Else
{
Store (Zero, Local0)
}
}
// Set critical flag if battery is empty
If (LEqual (And (HB0S, 0x0F), 0))
{
Or (Local0, 4, Local0)
}
Store (Zero, Local1)
// Check if AC is present
If (ACPW)
{
// Set only charging/discharging bits
And (Local0, 0x03, Local1)
}
Else
{
// Always discharging when on battery power
Store (One, Local1)
}
// Flag if the battery level is critical
And (Local0, 0x04, Local4)
Or (Local1, Local4, Local1)
Store (Local1, Index (PBST, 0))
//
// 1: BATTERY PRESENT RATE/CURRENT
//
Store (ECAC, Local1)
If (LGreaterEqual (Local1, 0x8000))
{
If (And (Local0, 1))
{
Subtract (0x10000, Local1, Local1)
}
Else
{
// Error
Store (Zero, Local1)
}
}
Else
{
If (LNot (AND (Local0, 2)))
{
// Battery is not charging
Store (Zero, Local1)
}
}
XOr (DerefOf (Index (PBIF, Zero)), One, Local6)
If (Local6)
{
Multiply (ECVO, Local1, Local1)
Divide (Local1, 1000, Local7, Local1)
}
Store (Local1, Index (PBST, One))
//
// 2: BATTERY REMAINING CAPACITY
//
// Get Power unit from the battery static information
// SMART battery : 1 - 10mWh : 0 - mAh
// ACPI spec : 0 - mWh : 1 - mAh
If (Local6)
{
Multiply (ECRC, 10, Local1)
}
Else
{
Store (ECRC, Local1)
}
If (LAnd (BFWK, LAnd (ACPW, LNot (Local0))))
{
// On AC power and battery is neither charging
// nor discharging. Linux expects a full battery
// to report same capacity as last full charge.
// https://bugzilla.kernel.org/show_bug.cgi?id=12632
// TODO: Is SBRS the "battery gas gauge"?
Store (SBRS, Local2)
// See if within ~3% of full
ShiftRight (Local2, 5, Local3)
If (LAnd (LGreater (Local1, Subtract (Local2, Local3)),
LLess (Local1, Add (Local2, Local3))))
{
Store (Local2, Local1)
}
}
Store (Local1, Index (PBST, 2))
//
// 3: BATTERY PRESENT VOLTAGE
//
Store (ECVO, Index (PBST, 3))
Return (PBST)
}
}

View File

@@ -0,0 +1,665 @@
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2013 Google Inc.
*
* 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
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* 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
*/
/*
* The mainboard must define a PNOT method to handle power
* state notifications and Notify CPU device objects to
* re-evaluate their _PPC and _CST tables.
*/
Device (EC0)
{
Name (_HID, EISAID ("PNP0C09"))
Name (_UID, 1)
Name (_GPE, Add(EC_SCI_GPI, 16)) // GPE for Runtime SCI
// EC RAM fields
OperationRegion(ERAM, EmbeddedControl, 0, 0xFF)
Field (ERAM, ByteAcc, NoLock, Preserve)
{
Offset(0x00), // [Configuration Space 0]
, 1, // Reserved bit[0]
ENGA, 1, // Enable Global attention
ENHY, 1, // Enable Hotkey function
HFNE, 1, // Enable Sticky Fn Key
DSEM, 1, // Disable embedded NumPad Emulation
EN3R, 1, // Enable 3rd Host interface and TWR registers
, 1, // Reserved bit[6]
ENTM, 1, // Enable Thermal monitoring
Offset(0x01), // [Configuration Space 1]
ENBK, 1, // Enable Panel backlight on/ off synchronized with LID state
, 3, // Reserved bits[1:3]
WPSW, 1, // Warning if the power switch is depressed
, 2, // Reserved bits[5:6]
NTKY, 1, // do not ignore any key while Fn key is held down
Offset(0x02), // [Configuration Space 2]
, 5, // Reserved bits[0:4]
SNLC, 1, // Smart NumLock Enable. 1:Enable 0:Disable
, 1, // Reserved bit[6]
TNKB, 1, // ThinkVantage button function bit
// 0: Scan code (Enter key)
// 1: SMI/SCI attention
Offset(0x03), // [Configuration Space 3]
DSHP, 1, // Disable to synchronize headphone state with the speaker mute
IGPK, 1, // Ignore phantom keys
, 2, // Reserved bits[2:3]
CBAT, 1, // Change discharge/charge preference to discharge primary battery first and charge secondary battery first if possible
ADO0, 1, // Audio button behavior mode 0
ADO1, 1, // Audio button behavior mode 1
, 1, // Enable to use PMH fan functions to get the fan speed
Offset(0x04), // [Sound Mask 0]
, 1, // reserved
CLBA, 1, // critical low battery alarm
LWBA, 1, // low battery alarm (YELLOW -> RED)
SUBE, 1, // suspend beep
PUBE, 1, // vm_suspend beep
RSBE, 1, // resume beep
DCBE, 1, // DC in/out beep
PFBE, 1, // power off beep
Offset(0x05), // [Sound Mask 1]
HSPA, 1, // power off alarm
NHDD, 1, // no HDD alarm
DEAD, 1, // dead
B440, 1, // 440 hz beep
B315, 1, // 315 hz beep
T315, 1, // two 315 hz beep
R315, 1, // three 315 hz beep
BYAM, 1, // inhibit swap
Offset(0x06), // [Sound ID (Write only)]
HSUN, 8, // Sound ID (Write Only)
Offset(0x07), // [Sound Repeat Interval (unit time 125ms)]
HSRP, 8, // Sound Repeat Interval (Unit time : 125ms )
Offset(0x08), // [Sound Mask 2]
Offset(0x09), // [KBD ID]
Offset(0x0A), // [KMC command control]
// Offset 0xOB : reserved
Offset(0x0C), // [LED On/Off/ Blinking Control (Write only)]
HLCL, 4, // 0: power LED
// 1: battery status 0
// 2: battery status 1
// 3: additional Bay LED (Venice) / reserved (Toronto-4) / Slicer LED (Tokyo)
// 4-6: reserved
// 7: suspend LED
// 8: dock LED 1
// 9: dock LED 2
// 10-13: reserved
// 14: microphone mute
// 15: reserved
, 1, // Reserved bit[4]
, 1, // Blink gradually
BLIK, 1, // Blinking
TONF, 1, // Turn on/off
Offset(0x0D), // [Peripheral control 3]
UONE, 1, // Bit0 - Enable to supply power through USB in S3, S4 and S5 state.
, 1, // Reserved bit[1]
, 1, // set USB_AO_SEL0 signal in S3, S4, and S5 state
, 1, // set USB_AO_SEL1 signal in S3, S4, and S5 state
, 4, // Reserved bits[4:7]
Offset(0x0E), // [Peripheral Status 4]
HFNS, 2, // Bit[1, 0] : Fn Key Status
// [0, 0] ... Unlock
// [0, 1] ... Sticky
// [1, 0] ... Lock
// [1, 1] ... Reserved
GSER, 1, // G-Sensor Diag Error. 1:Error / 0: No error
PSCS, 1, // Inhibit charging
, 1, // External power saving mode
GSUD, 1, // G-Sensor under Diag. 1: Diag is running/0: Diag comp(not running)
GSID, 2, // Bit[7,6] G-Sensor type ID
// [0,0] ... None
// [0,1] ... STMicro
// [1,0] ... Memsic
// [1,1] ... ADI
Offset(0x0F), // [Peripheral status 5 (read only)]
, 4, // Reserved bits[0:3]
HDSU, 1, // HDD was detached in suspend (this bit is cleared when the system enters into suspend)
BYSU, 1, // Bay HDD was detached in suspend (this bit is cleared when the system enters into suspend)
, 1, // NumLock state of the embedded keyboard
TMOD, 1, // Tablet mode switch
Offset(0x10), // [Attention Mask (00-127)]
HAM0, 8, // 10 : Attention Mask (00-07)
HAM1, 8, // 11 : Attention Mask (08-0F)
HAM2, 8, // 12 : Attention Mask (10-17)
HAM3, 8, // 13 : Attention Mask (18-1F)
HAM4, 8, // 14 : Attention Mask (20-27)
HAM5, 8, // 15 : Attention Mask (28-2F)
HAM6, 8, // 16 : Attention Mask (30-37)
HAM7, 8, // 17 : Attention Mask (38-3F)
HAM8, 8, // 18 : Attention Mask (40-47)
HAM9, 8, // 19 : Attention Mask (48-4F)
HAMA, 8, // 1A : Attention Mask (50-57)
HAMB, 8, // 1B : Attention Mask (58-5F)
HAMC, 8, // 1C : Attention Mask (60-67)
HAMD, 8, // 1D : Attention Mask (68-6F)
HAME, 8, // 1E : Attention Mask (70-77)
HAMF, 8, // 1F : Attention Mask (78-7F)
// Offset 0x20 : reserved
Offset(0x21), // [Inhibit Charge timer byte High (00h)] (timer is kicked when high byte is written)
Offset(0x23), // [Misc. control]
// 01h Reset charge inhibit
// 02h Inhibit to charge
// 03h Reset external power saving mode
// 04h Set to external power saving mode
// 09h Emulate pressing an eject button of optical device in the bay
// 0Ah Reset thermal state to control the fan
// 10h Start gravity sensor diagnostic program
// Offset 24-26 : reserved
Offset(0x27), // [Passward Scan Code]
// Offset 28-29 : reserved
Offset(0x2A), // [Attention Request]
HATR, 8, // 2A : Attention request
Offset(0x2B), // [Trip point of battery capacity]
HT0H, 8, // 2B : MSB of Trip Point Capacity for Battery 0
HT0L, 8, // 2C : LSB of Trip Point Capacity for Battery 0
HT1H, 8, // 2D : MSB of Trip Point Capacity for Battery 1
HT1L, 8, // 2E : LSB of Trip Point Capacity for Battery 1
Offset(0x2F), // [Fan Speed Control]
HFSP, 8, // bit 2-0: speed (0: stop, 7:highest speed)
// bit 5-3: reserved (should be 0)
// bit 6: max. speed
// bit 7: Automatic mode (fan speed controlled by thermal level)
Offset(0x30), // [Audio mute control]
, 7, // Reserved bits[0:6]
SMUT, 1, // Mute
Offset(0x31), // [Peripheral Control 2]
FANS, 2, // bit 0,1 Fan selector
// 00: Fan 1, 01: Fan 2
HUWB, 1, // UWB on
ENS4, 1, // Reserved bit[3]
DSEX, 1, // Disable Express Card
AYID, 1, // Always-on Card identified
, 1, // Select USB to Always On card
, 1, // Assert the express card slot power control standby signal
Offset(0x32), // [EC Event Mask 0]
HWPM, 1, // PME : Not used. PME# is connected to GPE directly.
HWLB, 1, // Critical Low Bat
HWLO, 1, // Lid Open
, 1, // Eject button
HWFN, 1, // FN key
, 1, // Portfino wake up
HWRI, 1, // Ring Indicator (UART)
HWBU, 1, // Bay Unlock
Offset(0x33), // [EC Event Mask 1]
Offset(0x34), // [Peripheral status 2 (read only)]
, 1, // Reserved bit[0]
, 1, // Beep is being sounded now
, 1, // SMBus is busy
, 1, // Reserved bit[3]
, 1, // Fan exists
, 1, // Gravity sensors exist
, 1, // Reserved bit[6]
HPLO, 1, // Power consumption warning
Offset(0x35), // [Peripheral status 3 (Read only)]
, 1, // Input devices (keyboard and mouse) are locked by password
, 1, // Input devices are frozen (input from devices are inhibited)
, 1, // Fan power on Reset is done
, 1, // Attention is disabled temporarily
, 1, // Fan error
, 2, // Reserved bit[5:6]
, 1, // Thermal sensor error
Offset(0x36), // [Copy register of EC Event Status (0x32)]
Offset(0x37), // [Copy register of EC Event Status (0x33)]
Offset(0x38), // [Battery 0 status (read only)]
HB0S, 7, // bit 3-0 level
// F: Unknown
// 2-n: battery level
// 1: low level
// 0: (critical low battery, suspend/ hibernate)
// bit 4 error
// bit 5 charge
// bit 6 discharge
MBTS, 1, // bit 7 battery attached
Offset(0x39), // [Battery 1 status (read only)]
// bit definition is the same as offset(0x38)
Offset(0x3A), // [Peripheral control 0]
MUTE, 1, // Mute
I2CS, 1, // I2C select ( 0:Dock EEPROM etc, 1:Thermal sensor etc )(Tokyo-2)
PWRF, 1, // Power off
WANO, 1, // H/W Override bit
// (enable to control wireless devices even if the global WAN disable switch is ON)
DCBD, 1, // Bluetooth On
DCWL, 1, // Wireless Lan On
DCWW, 1, // Wireless Wan On
, 1, // 2nd Battery Inhibit (Tokyo)
Offset(0x3B), // [Peripheral control 1]
SPKM, 1, // Speaker Mute
KBLH, 1, // Keyboard Light
, 1, // Reserved bit[2]
BTDH, 1, // Bluetooth detach
USBN, 1, // USB On
, 1, // Inhibit communication with battery 0
, 1, // Inhibit communication with battery 1
S3FG, 1, // Reserved bit[7]
Offset(0x3C), // [Resume reason (Read only)]
Offset(0x3D), // [Password Control byte]
Offset(0x3E), // [Password data (8 byte)~ offset:45h]
Offset(0x46), // [sense status 0]
FNKY, 1, // Fn key
, 1, // Reserved bit[1]
HPLD, 1, // LID open
PROF, 1, // Power off
ACPW, 1, // External power (AC status)
, 2, // Reserved bits[5:6]
CALR, 1, // LP mode (power consumption alert)
Offset(0x47), // [sense status 1]
HPBU, 1, // Bay Unlock
DKEV, 1, // Dock event
BYNO, 1, // Bay is not Attached
HDIB, 1, // HDD in the bay
, 4, // Reserved bits[4:7]
Offset(0x48), // [sense status 2]
HPHI, 1, // Head Phone In
GSTS, 1, // Global Wan Enable Switch
, 2, // Reserved bits[2:3]
EXGC, 1, // External Graphic Chip
DOKI, 1, // Dock attached
HDDT, 1, // HDD detect
, 1, // Reserved bit[7]
Offset(0x49), // [sense status 3]
// Offset 0x4A : reserved
Offset(0x4C), // [MSB of Event Timer]
ETHB, 8, // bit[14:0]=timer counter, bit[15], 0:ms, 1:sec
Offset(0x4D), // [LSB of Event Timer]
ETLB, 8, //
Offset(0x4E), // [EC Event Status 0]
Offset(0x4F), // [EC Event Status 1]
Offset(0x50), // [SMB_PRTCL (protocol register)]
SMPR, 8, // 00: Controller Not In use
// 01: reserved
// 02: Write Quick command
// 03: Read Quick command
// 04: Send Quick command
// 05: Receive Byte
// 06: Write Byte
// 07: Read Byte
// 08: Write Word
// 09: Read Word
// 0A: Write block
Offset(0x51), // [SMB_STS (status register)]
SMST, 8, // bits[0:4] Status
// bit[5] Reserved
// bit[6] Alarm Received
// bit[7] Done
Offset(0x52), // [SMB_ADDR (address register)]
SMAD, 8, //
Offset(0x53), // [SMB_CMD (Command register)]
SMCM, 8, //
Offset(0x54), // [SMB_DATA (Data Register (32 bytes))~ offset:73h]
SMD0, 100, //
Offset(0x74), // [SMB_BCNT (Block count register)]
BCNT, 8, //
Offset(0x75), // [SMB_ALRM_ADDR (Alarm address register)]
SMAA, 8, //
Offset(0x76), // [SMB_ALRM_DATA (Alarm data register (2 bytes))]
BATD, 16, //
Offset(0x78), // [Temperature of thermal sensor 0 (centigrade)]
TMP0, 8, // 78 : Temperature of thermal sensor 0
TMP1, 8, // 79 : Temperature of thermal sensor 1
TMP2, 8, // 7A : Temperature of thermal sensor 2
TMP3, 8, // 7B : Temperature of thermal sensor 3
TMP4, 8, // 7C : Temperature of thermal sensor 4
TMP5, 8, // 7D : Temperature of thermal sensor 5
TMP6, 8, // 7E : Temperature of thermal sensor 6
TMP7, 8, // 7F : Temperature of thermal sensor 7
// Offset 79-7F : reserved
Offset(0x80), // [Attention control byte]
Offset(0x81), // [Battery information ID for 0xA0-0xAF]
HIID, 8, // (this byte is depend on the interface, 62&66 and 1600&1604)
Offset(0x82), // [Fn Dual function - make time out time (100ms unit)]
Offset(0x83), // [Fn Dual function ID]
HFNI, 8, // 0: none
// 1-3: Reserved
// 4: ACPI Power
// 5: ACPI Sleep
// 6: ACPI Wake
// 7: Left Ctrl key
Offset(0x84), // [Fan Speed]
, 16, //
// (I/F Offset 3Bh bit5 => 0:Main Fan , 1:Second Fan)
Offset(0x86), // [password 0 - 7 status]
Offset(0x87), // [password 8 - 15 status]
Offset(0x88), // [Thermal Status of Level 0 (low)]
Offset(0x89), // [Thermal Status of Level 1 (middle)]
Offset(0x8A), // [Thermal Status of Level 2 (middle high)]
Offset(0x8B), // [Thermal Status of Level 3 (high)]
// Offset 0x8C : reserved
Offset(0x8D), // [Interval of polling Always-on cards in half minute]
HDAA, 3, // Warning Delay Period
HDAB, 3, // Stolen Delay Period
HDAC, 2, // Sensitivity
Offset(0x8E), // [Key-number assigned to the ThinkVantage button]
Offset(0x8F), // [EC Internal Use for Fan Duty Table Creation]
Offset(0x90), // [EC internal use]
Offset(0xA0), // [Battery Information Area]~ offset:0AFh
Offset(0xB0), // [Battery 0 charge start capacity]
Offset(0xB1), // [Battery 0 charge stop capacity]
Offset(0xB2), // [Battery 1 charge start capacity]
Offset(0xB3), // [Battery 1 charge stop capacity]
Offset(0xB4), // [Battery 0 control]
// 01h Stop refreshing the battery
// 02h Refresh the battery
// 07h Set long life span mode
// 08h Set long run time mode
Offset(0xB5), // [Battery 1 control]
// Offset B6-C7 : reserved
Offset(0xC8), // [Adaptive Thermal Management (ATM)]
ATMX, 8, // bit 7-4 - Thermal Table & bit 3-0 - Fan Speed Table
Offset(0xC9), // [Wattage of AC/DC]
AC65, 8, //
Offset(0xCA), // Reserved - but should be 0
Offset(0xCB), // [ATM configuration]
BFUD, 1, // bit 0 - Battery FUD Flag
, 7, // bit 1~7 - Reserved
Offset(0xCC), //
PWMH, 8, // CC : AC Power Consumption (MSB)
PWML, 8, // CD : AC Power Consumption (LSB) - unit: 100mW
Offset(0xCE), // [Configuration Space 4]
, 2, // Windows key mode
, 2, // Application key mode
, 1, // Swap the Fn key and the left Ctrl key
, 3, // Reserved bits[5:7]
Offset(0xCF), // [Configuration Space 5]
HSID, 8, // Hand shaking byte of system information ID
Offset(0xD0), // [EC Type]
// D1-DF : reserved
Offset(0xE0), // @@ Mapping to old EC RAM for battery information
ECRC, 16, // BAT1 Sys command [0] RC
ECAC, 16, // BAT1 Sys command [0] AV_I
ECVO, 16, // BAT1 Sys command [0] Voltage
// E1-E7 : reserved
Offset(0xE8), // [Version 0]
Offset(0xE9), // [Version 1]
Offset(0xEA), // [Machine ID]
Offset(0xEB), // [Function Specification Minor Version]
Offset(0xEC), // [EC capability 0]
Offset(0xED), // [EC capability 1]
Offset(0xEE), // [Highest battery level]
MBTH, 4, // bit 3-0: battery 0 highest level
SBTH, 4, // bit 7-4: battery 1 highest level
// note: if highest level is 0 or 0xF, it means not defined
// (in this case, use default hightest level, it is 6)
Offset(0xEF), // [EC Function Specification Major Version]
Offset(0xF0), // [Build ID]~ offset:0F7h
Offset(0xF8), // [Build Date (F8: MSB, F9:LSB)]
, 4, // bit 3-0: day(1-31)
, 4, // bit 7-4: month(1-12)
, 8, // bit 15-8: year(2000 base)
Offset(0xFA), // [Build Time (in 2seconds)]
// ex: when index FAh=5Ah and index FBh=ADh, Build Time is 5AADh .. 12:53:46
Offset(0xFC), // [reserved]~ offset:0FFh
} // End of ERAM
//
// Battery Information ID : 00/10
//
Field (ERAM, ByteAcc, NoLock, Preserve)
{
Offset(0xA0),
SBRC, 16, // Remaining Capacity
SBFC, 16, // Fully Charged Capacity
SBAE, 16, // Average Time To Empty
SBRS, 16, // Relative State Of Charge
SBAC, 16, // Average Current
SBVO, 16, // Voltage
SBAF, 16, // Average Time To Full
SBBS, 16, // Battery State
}
//
// Battery Information ID : 01/11
//
Field (ERAM, ByteAcc, NoLock, Preserve)
{
Offset(0xA0),
// Battery Mode(w)
, 15,
SBCM, 1, // bit 15 - CAPACITY_MODE
// 0: Report in mA/mAh ; 1: Enabled
SBMD, 16, // Manufacture Data
SBCC, 16, // Cycle Count
}
//
// Battery Information ID : 02/12
//
Field (ERAM, ByteAcc, NoLock, Preserve)
{
Offset(0xA0),
SBDC, 16, // Design Capacity
SBDV, 16, // Design Voltage
SBOM, 16, // Optional Mfg Function 1
SBSI, 16, // Specification Info
SBDT, 16, // Manufacture Date
SBSN, 16, // Serial Number
}
//
// Battery Information ID : 04/14
//
Field (ERAM, ByteAcc, NoLock, Preserve)
{
Offset(0xA0),
SBCH, 32, // Device Checmistory (string)
}
//
// Battery Information ID : 05/15
//
Field (ERAM, ByteAcc, NoLock, Preserve)
{
Offset(0xA0),
SBMN, 128, // Manufacture Name (s)
}
//
// Battery Information ID : 06/16
//
Field (ERAM, ByteAcc, NoLock, Preserve)
{
Offset(0xA0),
SBDN, 128, // Device Name (s)
}
Method (_CRS, 0, NotSerialized)
{
Name (ECMD, ResourceTemplate()
{
IO (Decode16, 0x62, 0x62, 0, 1)
IO (Decode16, 0x66, 0x66, 0, 1)
})
Return (ECMD)
}
Method (_REG, 2, NotSerialized)
{
// Initialize AC power state
Store (ACPW, \PWRS)
// Initialize LID switch state
Store (NOT(HPLD), \LIDS)
// Enable OS control of fan speed
// TODO Store (One, FCOS)
// Force a read of CPU temperature
// TODO Which temperature corresponds to the CPU?
Store (TMP0, Local0)
}
/* Attention Codes
* 00h No Event
* 01h-0Fh Reserved for ACPI Events
* 10h-1Fh Hotkey Events
* 22h Critical Low Battery
* 23h Battery Empty
* 24h Trip Point Capacity Event for Battery 0
* 26h AC Adapter Attached
* 27h AC Adapter Detached
* 28h Power Off Switch Pressed
* 29h Power Off Switch Released
* 2Ah LID Open
* 2Bh LID Close
* 3Eh PME Event
* 40h Thermal Event
* 41h Global Wireless Enable Switch
* 43h Mute State Change
* 4Ah Battery 0 Attach/Detach
* 4Bh Battery 0 State Change
* 66h Mute Button
*/
// Battery at critical low state
Method (_Q22)
{
If (MBTS)
{
Notify (BATX, 0x80)
}
}
// AC Power Connected
Method (_Q26, 0, NotSerialized)
{
Store (One, \PWRS)
Notify (AC, 0x80)
Notify (BATX, 0x80)
\PNOT ()
}
// AC Power Removed
Method (_Q27, 0, NotSerialized)
{
Store (Zero, \PWRS)
Notify (AC, 0x80)
\PNOT ()
}
// LID Open
Method (_Q2A)
{
Store (One, \LIDS)
Notify (\_SB.LID0, 0x80)
}
// LID Close (Suspend Trigger)
Method (_Q2B)
{
Store (Zero, \LIDS)
Notify (\_SB.LID0, 0x80)
}
// Battery Attach/Detach Event
Method (_Q4A)
{
Notify (BATX, 0x80)
Notify (BATX, 0x81)
\PNOT ()
}
// Battery State Change Event
Method (_Q4B)
{
Notify (BATX, 0x80)
}
// Global Wireless Disable/Enable Event
Method (_Q41, 0, NotSerialized)
{
IF (DCWL) //if Wlan exist
{
//TODO Store (WLAT, LANE)
}
}
#include "ac.asl"
#include "battery.asl"
// TODO #include "fan.asl"
}

View File

@@ -0,0 +1,90 @@
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2013 Google Inc.
*
* 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
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* 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
*/
// Scope is \_SB.PCI0.LPCB
Device (SIO)
{
Name (_UID, 0)
Name (_ADR, 0)
#ifdef SIO_EC_ENABLE_PS2K
Device (PS2K) // Keyboard
{
Name (_UID, 0)
Name (_ADR, 0)
Name (_HID, EISAID("PNP0303"))
Name (_CID, EISAID("PNP030B"))
Method (_STA, 0, NotSerialized)
{
Return (0x0F)
}
Name (_CRS, ResourceTemplate()
{
FixedIO (0x60, 0x01)
FixedIO (0x64, 0x01)
IRQNoFlags () {1}
})
Name (_PRS, ResourceTemplate()
{
StartDependentFn (0, 0)
{
FixedIO (0x60, 0x01)
FixedIO (0x64, 0x01)
IRQNoFlags () {1}
}
EndDependentFn ()
})
}
#endif
#ifdef SIO_ENABLE_PS2M
Device (PS2M) // Mouse
{
Name (_HID, EISAID("PNP0F13"))
Method (_STA, 0, NotSerialized)
{
Return (0x0F)
}
Name (_CRS, ResourceTemplate()
{
FixedIO (0x60, 0x01)
FixedIO (0x64, 0x01)
IRQNoFlags () {12}
})
Name (_PRS, ResourceTemplate()
{
StartDependentFn (0, 0)
{
FixedIO (0x60, 0x01)
FixedIO (0x64, 0x01)
IRQNoFlags () {12}
}
EndDependentFn ()
})
}
#endif
}

View File

@@ -0,0 +1,35 @@
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2013 Google Inc.
*
* 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 the Free Software Foundation; version 2 of
* the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* 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
*/
#ifndef _EC_QUANTA_IT8518_CHIP_H
#define _EC_QUANTA_IT8518_CHIP_H
#include <device/device.h>
#include <pc80/keyboard.h>
struct chip_operations;
extern struct chip_operations ec_quanta_it8518_ops;
struct ec_quanta_it8518_config {
struct pc_keyboard keyboard;
};
#endif /* _EC_QUANTA_IT8518_CHIP_H */

208
src/ec/quanta/it8518/ec.c Normal file
View File

@@ -0,0 +1,208 @@
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2013 Google Inc.
*
* 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 the Free Software Foundation; version 2 of
* the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* 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
*/
#include <console/console.h>
#ifndef __PRE_RAM__
#include <device/device.h>
#include <device/pnp.h>
#endif
#include <stdlib.h>
#include <arch/io.h>
#include <delay.h>
#include "ec.h"
#include "chip.h"
/* helper functions from drivers/pc80/keyboard.c */
static int input_buffer_empty(u16 status_reg)
{
u32 timeout;
for(timeout = KBC_TIMEOUT_IN_MS; timeout && (inb(status_reg) & KBD_IBF);
timeout--) {
udelay(1000);;
}
if (!timeout) {
printk(BIOS_WARNING, "EC-IT8518 Unexpected input buffer full\n");
printk(BIOS_WARNING, " Status (0x%x): 0x%x\n", status_reg, inb(status_reg));
}
return !!timeout;
}
static int output_buffer_full(u16 status_reg)
{
u32 timeout;
for(timeout = KBC_TIMEOUT_IN_MS; timeout && ((inb(status_reg)
& KBD_OBF) == 0); timeout--) {
udelay(1000);;
}
if (!timeout) {
printk(BIOS_INFO, "EC-IT8518 output buffer result timeout\n");
printk(BIOS_INFO, " Status (0x%x): 0x%x\n", status_reg, inb(status_reg));
}
return !!timeout;
}
/* The IT8518 60/64 EC registers are the same command/status IB/OB KBC pair.
* Check status from 64 port before each command.
*
* Ex. Get panel ID command C43/D77
* Check IBF empty. Then Write 0x43(CMD) to 0x64 Port
* Check IBF empty. Then Write 0x77(DATA) to 0x60 Port
* Check OBF set. Then Get Data(0x03:panel ID) from 0x60
* Different commands return may or may not respond and may have multiple
* bytes. Keep it simple for nor
*/
u8 ec_kbc_read_ob(void)
{
if (!output_buffer_full(KBD_STATUS)) return 0;
return inb(KBD_DATA);
}
void ec_kbc_write_cmd(u8 cmd)
{
if (!input_buffer_empty(KBD_STATUS)) return;
outb(cmd, KBD_COMMAND);
}
void ec_kbc_write_ib(u8 data)
{
if (!input_buffer_empty(KBD_STATUS)) return;
outb(data, KBD_DATA);
}
/*
* These functions are for accessing the IT8518 device RAM space via 0x66/0x68
*/
u8 ec_read_ob(void)
{
if (!output_buffer_full(EC_SC)) return 0;
return inb(EC_DATA);
}
void ec_write_cmd(u8 cmd)
{
if (!input_buffer_empty(EC_SC)) return;
outb(cmd, EC_SC);
}
void ec_write_ib(u8 data)
{
if (!input_buffer_empty(EC_SC)) return;
outb(data, EC_DATA);
}
u8 ec_read(u16 addr)
{
ec_write_cmd(RD_EC);
ec_write_ib(addr);
return ec_read_ob();
}
void ec_write(u16 addr, u8 data)
{
ec_write_cmd(WR_EC);
ec_write_ib(addr);
ec_write_ib(data);
}
#ifndef __PRE_RAM__
u8 ec_it8518_get_event(void)
{
u8 cmd = 0;
u8 status = inb(EC_SC);
if (status & SCI_EVT) {
ec_write_cmd(QR_EC);
cmd = ec_read_ob();
} else if ( status & SMI_EVT) {
ec_kbc_write_cmd(EC_KBD_SMI_EVENT);
cmd = ec_kbc_read_ob();
}
return cmd;
}
void ec_it8518_enable_wake_events(void)
{
/*
* Set the bit in ECRAM that will enable the Lid switch as a wake source
*/
u8 reg8 = ec_read(EC_WAKE_SRC_ENABLE);
ec_write(EC_WAKE_SRC_ENABLE, reg8 | EC_LID_WAKE_ENABLE);
}
#ifndef __SMM__
static void it8518_init(device_t dev)
{
struct ec_quanta_it8518_config *conf = dev->chip_info;
if (!dev->enabled)
return;
printk(BIOS_DEBUG, "Quanta IT8518: Initializing keyboard.\n");
pc_keyboard_init(&conf->keyboard);
}
static void it8518_read_resources(device_t dev)
{
/* This function avoids an error on serial console. */
}
static void it8518_enable_resources(device_t dev)
{
/* This function avoids an error on serial console. */
}
static struct device_operations ops = {
.init = it8518_init,
.read_resources = it8518_read_resources,
.enable_resources = it8518_enable_resources
};
static struct pnp_info pnp_dev_info[] = {
{ &ops, 0, 0, { 0, 0 }, }
};
static void enable_dev(device_t dev)
{
pnp_enable_devices(dev, &pnp_ops, ARRAY_SIZE(pnp_dev_info),
pnp_dev_info);
}
struct chip_operations ec_quanta_it8518_ops = {
CHIP_NAME("QUANTA IT8518 EC")
.enable_dev = enable_dev
};
#endif /* ! __SMM__ */
#endif /* ! __PRE_RAM__ */

97
src/ec/quanta/it8518/ec.h Normal file
View File

@@ -0,0 +1,97 @@
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2013 Google Inc.
*
* 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
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* 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
*/
/*
* EC communication interface for QUANTA IT8518 Embedded Controller.
*/
#ifndef _EC_QUANTA_IT8518_EC_H
#define _EC_QUANTA_IT8518_EC_H
#define EC_IO 0x100 /* Mainboard specific. Could be Kconfig option */
#define EC_IO_HIGH EC_IO + 1
#define EC_IO_LOW EC_IO + 2
#define EC_IO_DATA EC_IO + 3
/* Wait 400ms for keyboard controller answers */
#define KBC_TIMEOUT_IN_MS 400
// 60h/64h Command Interface
#define KBD_DATA 0x60
#define KBD_COMMAND 0x64
#define KBD_STATUS 0x64
#define KBD_IBF (1 << 1) // 1: input buffer full (data ready for ec)
#define KBD_OBF (1 << 0) // 1: output buffer full (data ready for host)
#define EC_KBD_SMI_EVENT 0xCD
#define EC_KBD_CMD_UNMUTE 0xE8
#define EC_KBD_CMD_MUTE 0xE9
u8 ec_kbc_read_ob(void);
void ec_kbc_write_cmd(u8 cmd);
void ec_kbc_write_ib(u8 data);
// 62h/66h Command Interface
#define EC_DATA 0x62
#define EC_SC 0x66 // Status & Control Register
#define SMI_EVT (1 << 6) // 1: SMI event was triggered
#define SCI_EVT (1 << 5) // 1: SCI event was triggered
// EC Commands (defined in ec_function_spec v3.12)
#define RD_EC 0x80
#define WR_EC 0x81
#define QR_EC 0x84
#define EC_CMD_EXIT_BOOT_BLOCK 0x85
#define EC_CMD_NOTIFY_ACPI_ENTER 0x86
#define EC_CMD_NOTIFY_ACPI_EXIT 0x87
#define EC_CMD_WARM_RESET 0x8C
// ECRAM Offsets
#define EC_PERIPH_CNTL_3 0x0D
#define EC_USB_S3_EN 0x26
#define EC_PERIPH_STAT_3 0x35
#define EC_THERM_0 0x78
#define EC_WAKE_SRC_ENABLE 0xBF
#define EC_FW_VER 0xE8 // 2 Bytes
#define EC_IF_MIN_VER 0xEB
#define EC_STATUS_REG 0xEC
#define EC_IF_MAJ_VER 0xEF
#define EC_MBAT_STATUS 0x0138
// EC 0.83b added status bits:
// BIT0=EC in RO mode
// BIT1=Recovery Key Sequence Detected
#define EC_IN_RO_MODE 0x1
#define EC_IN_RECOVERY_MODE 0x3
// EC 0.86a added enable bit:
#define EC_LID_WAKE_ENABLE 0x4
u8 ec_read_ob(void);
void ec_write_cmd(u8 cmd);
void ec_write_ib(u8 data);
u8 ec_read(u16 addr);
void ec_write(u16 addr, u8 data);
u8 ec_it8518_get_event(void);
void ec_it8518_enable_wake_events(void);
#endif /* _EC_QUANTA_IT8518_EC_H */