pmh7.[ch]: Add missing license headers.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6328 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
ed61c4ad7e
commit
539500ee33
|
@ -1,9 +1,27 @@
|
||||||
|
/*
|
||||||
|
* This file is part of the coreboot project.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2011 Sven Schnelle <svens@stackframe.org>
|
||||||
|
*
|
||||||
|
* 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 <arch/io.h>
|
#include <arch/io.h>
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <device/device.h>
|
#include <device/device.h>
|
||||||
#include <device/pnp.h>
|
#include <device/pnp.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include "pmh7.h"
|
#include "pmh7.h"
|
||||||
|
|
||||||
void pmh7_register_set_bit(int reg, int bit)
|
void pmh7_register_set_bit(int reg, int bit)
|
||||||
|
@ -41,13 +59,13 @@ void pmh7_register_write(int reg, int val)
|
||||||
static void enable_dev(device_t dev)
|
static void enable_dev(device_t dev)
|
||||||
{
|
{
|
||||||
struct resource *resource;
|
struct resource *resource;
|
||||||
|
|
||||||
resource = new_resource(dev, EC_LENOVO_PMH7_INDEX);
|
resource = new_resource(dev, EC_LENOVO_PMH7_INDEX);
|
||||||
resource->flags = IORESOURCE_IO | IORESOURCE_FIXED;
|
resource->flags = IORESOURCE_IO | IORESOURCE_FIXED;
|
||||||
resource->base = EC_LENOVO_PMH7_BASE;
|
resource->base = EC_LENOVO_PMH7_BASE;
|
||||||
resource->size = 16;
|
resource->size = 16;
|
||||||
resource->align = 5;
|
resource->align = 5;
|
||||||
resource->gran = 5;
|
resource->gran = 5;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
struct chip_operations ec_lenovo_pmh7_ops = {
|
struct chip_operations ec_lenovo_pmh7_ops = {
|
||||||
|
|
|
@ -1,3 +1,22 @@
|
||||||
|
/*
|
||||||
|
* This file is part of the coreboot project.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2011 Sven Schnelle <svens@stackframe.org>
|
||||||
|
*
|
||||||
|
* 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_LENOVO_PMH7_H
|
#ifndef EC_LENOVO_PMH7_H
|
||||||
#define EC_LENOVO_PMH7_H
|
#define EC_LENOVO_PMH7_H
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue