tree: drop last paragraph of GPL copyright header
[coreboot.git] / src / superio / ite / it8772f / chip.h
blob78ded22b5dc8fb01e23bf3d30896b8f5365182a6
1 /*
2 * This file is part of the coreboot project.
4 * Copyright (C) 2011 The ChromiumOS Authors. All rights reserved.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
17 #ifndef SUPERIO_ITE_IT8772F_CHIP_H
18 #define SUPERIO_ITE_IT8772F_CHIP_H
20 #include <device/device.h>
22 struct superio_ite_it8772f_config {
23 /* GPIO SimpleIO register values via devicetree.cb */
24 u8 gpio_set1;
25 u8 gpio_set2;
26 u8 gpio_set3;
27 u8 gpio_set4;
28 u8 gpio_set5;
29 u8 gpio_set6;
31 u8 skip_keyboard;
34 * Enable external temperature sensor to use PECI GetTemp()
35 * command and store in register TMPIN 1, 2, or 3.
37 u8 peci_tmpin;
40 * Enable a FAN for sofware control.
42 u8 fan1_enable;
43 u8 fan2_enable;
44 u8 fan3_enable;
47 #endif /* SUPERIO_ITE_IT8772F_CHIP_H */