2009-02-14 17:23:16 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Rudolf Marek <r.marek@assembler.cz>
|
2017-03-08 02:45:12 +01:00
|
|
|
* Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>,
|
|
|
|
* Raptor Engineering
|
2009-02-14 17:23:16 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
2010-02-16 00:10:19 +01:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
2009-02-14 17:23:16 +01:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2010-02-16 00:10:19 +01:00
|
|
|
|
2014-10-05 14:54:26 +02:00
|
|
|
#ifndef POWERNOW_H
|
|
|
|
#define POWERNOW_H
|
2009-02-14 17:23:16 +01:00
|
|
|
|
2014-11-04 21:18:25 +01:00
|
|
|
void amd_generate_powernow(u32 pcontrol_blk, u8 plen, u8 onlyBSP);
|
2017-03-08 00:24:16 +01:00
|
|
|
void amd_powernow_update_fadt(acpi_fadt_t *fadt);
|
2009-02-14 17:23:16 +01:00
|
|
|
|
|
|
|
#endif
|