As per discussion with lawyers[tm], it's not a good idea to shorten the license header too much - not for legal reasons but because there are tools that look for them, and giving them a standard pattern simplifies things. However, we got confirmation that we don't have to update every file ever added to coreboot whenever the FSF gets a new lease, but can drop the address instead. util/kconfig is excluded because that's imported code that we may want to synchronize every now and then. $ find * -type f -exec sed -i "s:Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *MA[, ]*02110-1301[, ]*USA:Foundation, Inc.:" {} + $ find * -type f -exec sed -i "s:Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA:Foundation, Inc.:" {} + $ find * -type f -exec sed -i "s:Foundation, Inc., 59 Temple Place[-, ]*Suite 330, Boston, MA *02111-1307[, ]*USA:Foundation, Inc.:" {} + $ find * -type f -exec sed -i "s:Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.:Foundation, Inc.:" {} + $ find * -type f -a \! -name \*.patch \ -a \! -name \*_shipped \ -a \! -name LICENSE_GPL \ -a \! -name LGPL.txt \ -a \! -name COPYING \ -a \! -name DISCLAIMER \ -exec sed -i "/Foundation, Inc./ N;s:Foundation, Inc.* USA\.* *:Foundation, Inc. :;s:Foundation, Inc. $:Foundation, Inc.:" {} + Change-Id: Icc968a5a5f3a5df8d32b940f9cdb35350654bef9 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: http://review.coreboot.org/9233 Tested-by: build bot (Jenkins) Reviewed-by: Vladimir Serbinenko <phcoder@gmail.com>
103 lines
2.6 KiB
Text
103 lines
2.6 KiB
Text
/*
|
|
* This file is part of the coreboot project.
|
|
*
|
|
* Copyright (C) 2013 Sage Electronic Engineering, LLC
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
/* Wake status package */
|
|
Name(WKST,Package(){Zero, Zero})
|
|
|
|
/*
|
|
* \_PTS - Prepare to Sleep method
|
|
*
|
|
* Entry:
|
|
* Arg0=The value of the sleeping state S1=1, S2=2, etc
|
|
*
|
|
* Exit:
|
|
* -none-
|
|
*
|
|
* The _PTS control method is executed at the beginning of the sleep process
|
|
* for S1-S5. The sleeping value is passed to the _PTS control method. This
|
|
* control method may be executed a relatively long time before entering the
|
|
* sleep state and the OS may abort the operation without notification to
|
|
* the ACPI driver. This method cannot modify the configuration or power
|
|
* state of any device in the system.
|
|
*/
|
|
Method(\_PTS, 1) {
|
|
/* DBGO("\\_PTS\n") */
|
|
/* DBGO("From S0 to S") */
|
|
/* DBGO(Arg0) */
|
|
/* DBGO("\n") */
|
|
|
|
/* Clear sleep SMI status flag and enable sleep SMI trap. */
|
|
/*Store(One, CSSM)
|
|
Store(One, SSEN)*/
|
|
|
|
/* On older chips, clear PciExpWakeDisEn */
|
|
/*if (LLessEqual(\_SB.SBRI, 0x13)) {
|
|
* Store(0,\_SB.PWDE)
|
|
*}
|
|
*/
|
|
|
|
/* Clear wake status structure. */
|
|
Store(0, Index(WKST,0))
|
|
Store(0, Index(WKST,1))
|
|
|
|
Store (0x07, UPWS)
|
|
} /* End Method(\_PTS) */
|
|
|
|
/*
|
|
* \_BFS OEM Back From Sleep method
|
|
*
|
|
* Entry:
|
|
* Arg0=The value of the sleeping state S1=1, S2=2
|
|
*
|
|
* Exit:
|
|
* -none-
|
|
*/
|
|
Method(\_BFS, 1) {
|
|
/* DBGO("\\_BFS\n") */
|
|
/* DBGO("From S") */
|
|
/* DBGO(Arg0) */
|
|
/* DBGO(" to S0\n") */
|
|
}
|
|
|
|
/*
|
|
* \_WAK System Wake method
|
|
*
|
|
* Entry:
|
|
* Arg0=The value of the sleeping state S1=1, S2=2
|
|
*
|
|
* Exit:
|
|
* Return package of 2 DWords
|
|
* Dword 1 - Status
|
|
* 0x00000000 wake succeeded
|
|
* 0x00000001 Wake was signaled but failed due to lack of power
|
|
* 0x00000002 Wake was signaled but failed due to thermal condition
|
|
* Dword 2 - Power Supply state
|
|
* if non-zero the effective S-state the power supply entered
|
|
*/
|
|
Method(\_WAK, 1) {
|
|
/* DBGO("\\_WAK\n") */
|
|
/* DBGO("From S") */
|
|
/* DBGO(Arg0) */
|
|
/* DBGO(" to S0\n") */
|
|
|
|
/* Re-enable HPET */
|
|
Store(1,USBS)
|
|
|
|
Return(WKST)
|
|
} /* End Method(\_WAK) */
|