tree: drop last paragraph of GPL copyright header
[coreboot.git] / src / ec / kontron / it8516e / chip.h
blob09b2e44592e1e8daf41218453074998d7eda89a1
1 /*
2 * This file is part of the coreboot project.
4 * Copyright (C) 2013 secunet Security Networks AG
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
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 EC_KONTRON_IT8516E_CHIP_H
18 #define EC_KONTRON_IT8516E_CHIP_H
20 #include "ec.h"
22 struct ec_kontron_it8516e_config {
24 * Fan settings (fan1: CPU; fan2: System)
25 * Can be overwritten by
26 * systemp_type,
27 * fan1_mode, fan2_mode,
28 * fan1_target, fan2_target,
29 * fan1_min, fan2_min, fan1_max, and fan2_max
30 * nvram options.
32 enum it8516e_systemp_types default_systemp;
33 enum it8516e_fan_modes default_fan_mode[2];
34 u16 default_fan_target[2]; /* PWM: % / Speed: RPM / Thermal: degree C */
35 u8 default_fan_min[2]; /* min PWM in % */
36 u8 default_fan_max[2]; /* max PWM in % */
39 #endif /* EC_KONTRON_IT8516E_CHIP_H */