Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the coreboot project. |
| 3 | * |
| 4 | * Copyright (C) 2013 secunet Security Networks AG |
| 5 | * |
| 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; version 2 of the License. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 14 | */ |
| 15 | |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 16 | #include <console/console.h> |
| 17 | #include <device/device.h> |
| 18 | #include <device/pnp.h> |
| 19 | #include <ec/acpi/ec.h> |
Kyösti Mälkki | cbf9571 | 2020-01-05 08:05:45 +0200 | [diff] [blame] | 20 | #include <option.h> |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 21 | |
| 22 | #include "ec.h" |
| 23 | #include "chip.h" |
| 24 | |
| 25 | typedef struct ec_kontron_it8516e_config config_t; |
| 26 | |
| 27 | enum { /* EC commands */ |
Nico Huber | 6d6a2ac | 2013-07-12 14:35:00 +0200 | [diff] [blame] | 28 | IT8516E_CMD_SET_SYSTEMP_TYPE = 0x06, |
| 29 | IT8516E_CMD_GET_SYSTEMP_TYPE = 0x07, |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 30 | IT8516E_CMD_GET_FAN_MODE = 0x10, |
| 31 | IT8516E_CMD_SET_FAN_MODE = 0x11, |
| 32 | IT8516E_CMD_GET_FAN_PWM = 0x12, |
| 33 | IT8516E_CMD_SET_FAN_PWM = 0x13, |
| 34 | IT8516E_CMD_GET_FAN_SPEED = 0x14, |
| 35 | IT8516E_CMD_SET_FAN_SPEED = 0x15, |
| 36 | IT8516E_CMD_GET_FAN_TEMP = 0x16, |
| 37 | IT8516E_CMD_SET_FAN_TEMP = 0x17, |
Nico Huber | 9ce71b3 | 2013-07-12 14:43:11 +0200 | [diff] [blame] | 38 | IT8516E_CMD_SET_FAN_LIMITS = 0x1a, |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 39 | }; |
| 40 | |
Nico Huber | 1f9f678 | 2013-07-18 11:50:59 +0200 | [diff] [blame] | 41 | /** |
| 42 | * Sets the type of the external temperature sensor used |
| 43 | * |
| 44 | * @param type Type of sensor to set |
| 45 | */ |
Nico Huber | 6d6a2ac | 2013-07-12 14:35:00 +0200 | [diff] [blame] | 46 | static void it8516e_set_systemp_type(const u8 type) |
| 47 | { |
| 48 | if (send_ec_command(IT8516E_CMD_SET_SYSTEMP_TYPE)) |
| 49 | return; |
| 50 | send_ec_data(type); |
| 51 | } |
| 52 | |
Nico Huber | 1f9f678 | 2013-07-18 11:50:59 +0200 | [diff] [blame] | 53 | /** |
| 54 | * Sets the operating mode of a fan |
| 55 | * |
| 56 | * @param idx Selects the fan; 0: CPU, 1: System |
| 57 | * @param mode Mode to set |
| 58 | */ |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 59 | static void it8516e_set_fan_mode(const u8 idx, const u8 mode) |
| 60 | { |
| 61 | if (send_ec_command(IT8516E_CMD_SET_FAN_MODE)) |
| 62 | return; |
| 63 | if (send_ec_data(idx)) |
| 64 | return; |
| 65 | send_ec_data(mode); |
| 66 | } |
| 67 | |
Nico Huber | 1f9f678 | 2013-07-18 11:50:59 +0200 | [diff] [blame] | 68 | /** |
| 69 | * Sets the PWM rate of a fan in IT8516E_MODE_PWM |
| 70 | * |
| 71 | * @param idx Selects the fan; 0: CPU, 1: System |
| 72 | * @param pwm PWM rate measured in 255ths |
| 73 | */ |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 74 | static void it8516e_set_fan_pwm(const u8 idx, const u8 pwm) |
| 75 | { |
| 76 | if (send_ec_command(IT8516E_CMD_SET_FAN_PWM)) |
| 77 | return; |
| 78 | if (send_ec_data(idx)) |
| 79 | return; |
| 80 | send_ec_data(pwm); |
| 81 | } |
| 82 | |
Nico Huber | 1f9f678 | 2013-07-18 11:50:59 +0200 | [diff] [blame] | 83 | /** |
| 84 | * Sets the target speed in RPM for a fan in IT8516E_MODE_SPEED |
| 85 | * |
| 86 | * @param idx Selects the fan; 0: CPU, 1: System |
| 87 | * @param speed Speed in RPM |
| 88 | */ |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 89 | static void it8516e_set_fan_speed(const u8 idx, const u16 speed) |
| 90 | { |
| 91 | if (send_ec_command(IT8516E_CMD_SET_FAN_SPEED)) |
| 92 | return; |
| 93 | if (send_ec_data(idx)) |
| 94 | return; |
| 95 | if (send_ec_data(speed & 0xff)) |
| 96 | return; |
| 97 | send_ec_data(speed >> 8); |
| 98 | } |
| 99 | |
Nico Huber | 1f9f678 | 2013-07-18 11:50:59 +0200 | [diff] [blame] | 100 | /** |
| 101 | * Sets the target temperature for a fan in IT8516E_MODE_THERMAL |
| 102 | * |
| 103 | * @param idx Selects the fan; 0: CPU, 1: System |
| 104 | * @param temp Temperature in 64ths degree C |
| 105 | */ |
Nico Huber | 260c33b | 2013-07-18 11:27:30 +0200 | [diff] [blame] | 106 | static void it8516e_set_fan_temperature(const u8 idx, const u16 temp) |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 107 | { |
| 108 | if (send_ec_command(IT8516E_CMD_SET_FAN_TEMP)) |
| 109 | return; |
| 110 | if (send_ec_data(idx)) |
| 111 | return; |
Nico Huber | 260c33b | 2013-07-18 11:27:30 +0200 | [diff] [blame] | 112 | if (send_ec_data(temp & 0xff)) |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 113 | return; |
Nico Huber | 260c33b | 2013-07-18 11:27:30 +0200 | [diff] [blame] | 114 | send_ec_data(temp >> 8); |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 115 | } |
| 116 | |
Nico Huber | 1f9f678 | 2013-07-18 11:50:59 +0200 | [diff] [blame] | 117 | /** |
| 118 | * Sets the minimum and maximum PWM rate of a fan in IT8516E_MODE_THERMAL |
| 119 | * |
| 120 | * @param idx Selects the fan; 0: CPU, 1: System |
| 121 | * @param min Minimum PWM rate in % |
| 122 | * @param max Maximum PWM rate in % |
| 123 | */ |
Nico Huber | 9ce71b3 | 2013-07-12 14:43:11 +0200 | [diff] [blame] | 124 | static void it8516e_set_fan_limits(const u8 idx, const u8 min, const u8 max) |
| 125 | { |
| 126 | if (send_ec_command(IT8516E_CMD_SET_FAN_LIMITS)) |
| 127 | return; |
| 128 | if (send_ec_data(idx)) |
| 129 | return; |
| 130 | if (send_ec_data(min)) |
| 131 | return; |
| 132 | send_ec_data(max); |
| 133 | } |
| 134 | |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 135 | static void it8516e_set_fan_from_options(const config_t *const config, |
| 136 | const u8 fan_idx) |
| 137 | { |
| 138 | static char fanX_mode[] = "fanX_mode"; |
| 139 | static char fanX_target[] = "fanX_target"; |
Nico Huber | 9ce71b3 | 2013-07-12 14:43:11 +0200 | [diff] [blame] | 140 | static char fanX_min[] = "fanX_min"; |
| 141 | static char fanX_max[] = "fanX_max"; |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 142 | |
Nico Huber | 9ce71b3 | 2013-07-12 14:43:11 +0200 | [diff] [blame] | 143 | u8 fan_mode = config->default_fan_mode[fan_idx]; |
| 144 | u16 fan_target = config->default_fan_target[fan_idx]; |
| 145 | u8 fan_min = config->default_fan_min[fan_idx]; |
| 146 | u8 fan_max = config->default_fan_max[fan_idx]; |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 147 | |
| 148 | fanX_mode[3] = '1' + fan_idx; |
| 149 | get_option(&fan_mode, fanX_mode); |
| 150 | if (!fan_mode) |
| 151 | fan_mode = IT8516E_MODE_AUTO; |
| 152 | it8516e_set_fan_mode(fan_idx, fan_mode); |
| 153 | |
| 154 | fanX_target[3] = '1' + fan_idx; |
| 155 | get_option(&fan_target, fanX_target); |
| 156 | switch (fan_mode) { |
| 157 | case IT8516E_MODE_AUTO: |
| 158 | printk(BIOS_DEBUG, |
| 159 | "Setting it8516e fan%d " |
| 160 | "control to auto.\n", |
| 161 | fan_idx + 1); |
| 162 | break; |
| 163 | case IT8516E_MODE_PWM: |
| 164 | printk(BIOS_DEBUG, |
| 165 | "Setting it8516e fan%d " |
| 166 | "control to %d%% PWM.\n", |
| 167 | fan_idx + 1, fan_target); |
Nico Huber | ca4f073 | 2013-07-18 12:27:00 +0200 | [diff] [blame] | 168 | if (fan_target > 100) /* Constrain to 100% */ |
| 169 | fan_target = 100; |
Nico Huber | 942b6c2 | 2013-07-12 14:40:23 +0200 | [diff] [blame] | 170 | it8516e_set_fan_pwm(fan_idx, (fan_target * 255) / 100); |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 171 | break; |
| 172 | case IT8516E_MODE_SPEED: |
| 173 | printk(BIOS_DEBUG, |
| 174 | "Setting it8516e fan%d " |
| 175 | "control to %d RPMs.\n", |
| 176 | fan_idx + 1, fan_target); |
| 177 | it8516e_set_fan_speed(fan_idx, fan_target); |
| 178 | break; |
| 179 | case IT8516E_MODE_THERMAL: |
| 180 | printk(BIOS_DEBUG, |
Nico Huber | 9ce71b3 | 2013-07-12 14:43:11 +0200 | [diff] [blame] | 181 | "Setting it8516e fan%d control to %d C.\n", |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 182 | fan_idx + 1, fan_target); |
Nico Huber | ca4f073 | 2013-07-18 12:27:00 +0200 | [diff] [blame] | 183 | if (fan_target > 1024) /* Constrain to 1K */ |
| 184 | fan_target = 1024; |
Nico Huber | 260c33b | 2013-07-18 11:27:30 +0200 | [diff] [blame] | 185 | it8516e_set_fan_temperature(fan_idx, fan_target * 64); |
Nico Huber | 9ce71b3 | 2013-07-12 14:43:11 +0200 | [diff] [blame] | 186 | |
| 187 | fanX_min[3] = '1' + fan_idx; |
| 188 | fanX_max[3] = '1' + fan_idx; |
| 189 | get_option(&fan_min, fanX_min); |
| 190 | get_option(&fan_max, fanX_max); |
| 191 | |
| 192 | if (!fan_max || fan_max > 100) /* Constrain fan_max to 100% */ |
| 193 | fan_max = 100; |
| 194 | if (fan_min >= 100) /* Constrain fan_min to 99% */ |
| 195 | fan_min = 99; |
| 196 | if (fan_max <= fan_min) /* If fan_min is the higher of the two, |
| 197 | it's safer for the hardware to keep |
| 198 | its value. Therefore, update fan_max. */ |
| 199 | fan_max = fan_min + 1; |
| 200 | |
| 201 | printk(BIOS_DEBUG, |
| 202 | "Setting it8516e fan%d limits to %d%% - %d%% PWM.\n", |
| 203 | fan_idx + 1, fan_min, fan_max); |
| 204 | it8516e_set_fan_limits(fan_idx, fan_min, fan_max); |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 205 | break; |
| 206 | } |
| 207 | } |
| 208 | |
Edward O'Callaghan | 2c9d2cf | 2014-10-27 23:29:29 +1100 | [diff] [blame] | 209 | static void it8516e_pm2_init(struct device *dev) |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 210 | { |
| 211 | const config_t *const config = dev->chip_info; |
| 212 | |
| 213 | /* TODO: Set frequency / divider? */ |
| 214 | |
| 215 | ec_set_ports(find_resource(dev, PNP_IDX_IO1)->base, |
| 216 | find_resource(dev, PNP_IDX_IO0)->base); |
| 217 | |
Nico Huber | 6d6a2ac | 2013-07-12 14:35:00 +0200 | [diff] [blame] | 218 | u8 systemp_type = config->default_systemp; |
| 219 | get_option(&systemp_type, "systemp_type"); |
| 220 | if (systemp_type >= IT8516E_SYSTEMP_LASTPLUSONE) |
| 221 | systemp_type = IT8516E_SYSTEMP_NONE; |
| 222 | it8516e_set_systemp_type(systemp_type); |
| 223 | |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 224 | it8516e_set_fan_from_options(config, 0); |
| 225 | it8516e_set_fan_from_options(config, 1); |
| 226 | } |
| 227 | |
| 228 | static struct device_operations it8516e_pm2_ops = { |
Nico Huber | 9cb0941 | 2013-06-15 15:30:19 +0200 | [diff] [blame] | 229 | .read_resources = pnp_read_resources, |
| 230 | .set_resources = pnp_set_resources, |
| 231 | .enable_resources = pnp_enable_resources, |
| 232 | .enable = pnp_enable, |
| 233 | .init = it8516e_pm2_init |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 234 | }; |
| 235 | |
| 236 | static struct pnp_info it8516e_dev_infos[] = { |
Samuel Holland | 7daac91 | 2017-06-06 22:55:01 -0500 | [diff] [blame] | 237 | { NULL, IT8516E_LDN_UART1, PNP_IO0 | PNP_IRQ0, 0x07f8, }, |
| 238 | { NULL, IT8516E_LDN_UART2, PNP_IO0 | PNP_IRQ0, 0x07f8, }, |
| 239 | { NULL, IT8516E_LDN_SWUC, PNP_IO0 | PNP_IRQ0, 0xffe0, }, |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 240 | { NULL, IT8516E_LDN_MOUSE, PNP_IRQ0, }, |
Samuel Holland | 7daac91 | 2017-06-06 22:55:01 -0500 | [diff] [blame] | 241 | { NULL, IT8516E_LDN_KBD, PNP_IO0 | PNP_IO1 | PNP_IRQ0, 0x07ff, 0x07ff, }, |
| 242 | { NULL, IT8516E_LDN_SMFI, PNP_IO0 | PNP_IRQ0, 0xfff0, }, |
| 243 | { NULL, IT8516E_LDN_BRAM, PNP_IO0 | PNP_IO1, 0xfffe, 0xfffe, }, |
| 244 | { NULL, IT8516E_LDN_PM1, PNP_IO0 | PNP_IO1 | PNP_IRQ0, 0x07ff, 0x07ff, }, |
| 245 | { &it8516e_pm2_ops, IT8516E_LDN_PM2, PNP_IO0 | PNP_IO1 | PNP_IRQ0, 0x07ff, 0x07ff, }, |
| 246 | { NULL, IT8516E_LDN_PM3, PNP_IO0 | PNP_IO1 | PNP_IRQ0, 0x07ff, 0x07ff, }, |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 247 | }; |
| 248 | |
Edward O'Callaghan | 2c9d2cf | 2014-10-27 23:29:29 +1100 | [diff] [blame] | 249 | static void it8516e_enable(struct device *dev) |
Nico Huber | a53266b | 2013-05-02 15:26:08 +0200 | [diff] [blame] | 250 | { |
| 251 | pnp_enable_devices(dev, &pnp_ops, |
| 252 | ARRAY_SIZE(it8516e_dev_infos), it8516e_dev_infos); |
| 253 | } |
| 254 | |
| 255 | const struct chip_operations ec_kontron_it8516e_ops = { |
| 256 | CHIP_NAME("Kontron (Fintec/ITE) IT8516E EC") |
| 257 | .enable_dev = it8516e_enable |
| 258 | }; |