Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Dave Jones | 6ccf58a | 2006-06-05 15:25:20 -0400 | [diff] [blame] | 2 | * (C) 2004-2006 Sebastian Witt <se.witt@gmx.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * Licensed under the terms of the GNU GPL License version 2. |
| 5 | * Based upon reverse engineered information |
| 6 | * |
| 7 | * BIG FAT DISCLAIMER: Work in progress code. Possibly *dangerous* |
| 8 | */ |
| 9 | |
Joe Perches | 1c5864e | 2016-04-05 13:28:25 -0700 | [diff] [blame] | 10 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 11 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/kernel.h> |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/moduleparam.h> |
| 15 | #include <linux/init.h> |
| 16 | #include <linux/cpufreq.h> |
| 17 | #include <linux/pci.h> |
| 18 | #include <linux/delay.h> |
| 19 | |
| 20 | #define NFORCE2_XTAL 25 |
| 21 | #define NFORCE2_BOOTFSB 0x48 |
| 22 | #define NFORCE2_PLLENABLE 0xa8 |
| 23 | #define NFORCE2_PLLREG 0xa4 |
| 24 | #define NFORCE2_PLLADR 0xa0 |
| 25 | #define NFORCE2_PLL(mul, div) (0x100000 | (mul << 8) | div) |
| 26 | |
| 27 | #define NFORCE2_MIN_FSB 50 |
| 28 | #define NFORCE2_SAFE_DISTANCE 50 |
| 29 | |
| 30 | /* Delay in ms between FSB changes */ |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 31 | /* #define NFORCE2_DELAY 10 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 33 | /* |
| 34 | * nforce2_chipset: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | * FSB is changed using the chipset |
| 36 | */ |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 37 | static struct pci_dev *nforce2_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | /* fid: |
| 40 | * multiplier * 10 |
| 41 | */ |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 42 | static int fid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
| 44 | /* min_fsb, max_fsb: |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 45 | * minimum and maximum FSB (= FSB at boot time) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | */ |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 47 | static int min_fsb; |
| 48 | static int max_fsb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | MODULE_AUTHOR("Sebastian Witt <se.witt@gmx.net>"); |
| 51 | MODULE_DESCRIPTION("nForce2 FSB changing cpufreq driver"); |
| 52 | MODULE_LICENSE("GPL"); |
| 53 | |
| 54 | module_param(fid, int, 0444); |
| 55 | module_param(min_fsb, int, 0444); |
| 56 | |
| 57 | MODULE_PARM_DESC(fid, "CPU multiplier to use (11.5 = 115)"); |
| 58 | MODULE_PARM_DESC(min_fsb, |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 59 | "Minimum FSB to use, if not defined: current FSB - 50"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 61 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | * nforce2_calc_fsb - calculate FSB |
| 63 | * @pll: PLL value |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 64 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | * Calculates FSB from PLL value |
| 66 | */ |
| 67 | static int nforce2_calc_fsb(int pll) |
| 68 | { |
| 69 | unsigned char mul, div; |
| 70 | |
| 71 | mul = (pll >> 8) & 0xff; |
| 72 | div = pll & 0xff; |
| 73 | |
| 74 | if (div > 0) |
| 75 | return NFORCE2_XTAL * mul / div; |
| 76 | |
| 77 | return 0; |
| 78 | } |
| 79 | |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 80 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | * nforce2_calc_pll - calculate PLL value |
| 82 | * @fsb: FSB |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 83 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | * Calculate PLL value for given FSB |
| 85 | */ |
| 86 | static int nforce2_calc_pll(unsigned int fsb) |
| 87 | { |
| 88 | unsigned char xmul, xdiv; |
| 89 | unsigned char mul = 0, div = 0; |
| 90 | int tried = 0; |
| 91 | |
| 92 | /* Try to calculate multiplier and divider up to 4 times */ |
| 93 | while (((mul == 0) || (div == 0)) && (tried <= 3)) { |
Dave Jones | 6ccf58a | 2006-06-05 15:25:20 -0400 | [diff] [blame] | 94 | for (xdiv = 2; xdiv <= 0x80; xdiv++) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | for (xmul = 1; xmul <= 0xfe; xmul++) |
| 96 | if (nforce2_calc_fsb(NFORCE2_PLL(xmul, xdiv)) == |
| 97 | fsb + tried) { |
| 98 | mul = xmul; |
| 99 | div = xdiv; |
| 100 | } |
| 101 | tried++; |
| 102 | } |
| 103 | |
| 104 | if ((mul == 0) || (div == 0)) |
| 105 | return -1; |
| 106 | |
| 107 | return NFORCE2_PLL(mul, div); |
| 108 | } |
| 109 | |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 110 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | * nforce2_write_pll - write PLL value to chipset |
| 112 | * @pll: PLL value |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 113 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | * Writes new FSB PLL value to chipset |
| 115 | */ |
| 116 | static void nforce2_write_pll(int pll) |
| 117 | { |
| 118 | int temp; |
| 119 | |
| 120 | /* Set the pll addr. to 0x00 */ |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 121 | pci_write_config_dword(nforce2_dev, NFORCE2_PLLADR, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | |
| 123 | /* Now write the value in all 64 registers */ |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 124 | for (temp = 0; temp <= 0x3f; temp++) |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 125 | pci_write_config_dword(nforce2_dev, NFORCE2_PLLREG, pll); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | } |
| 127 | |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 128 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | * nforce2_fsb_read - Read FSB |
| 130 | * |
| 131 | * Read FSB from chipset |
| 132 | * If bootfsb != 0, return FSB at boot-time |
| 133 | */ |
| 134 | static unsigned int nforce2_fsb_read(int bootfsb) |
| 135 | { |
| 136 | struct pci_dev *nforce2_sub5; |
| 137 | u32 fsb, temp = 0; |
| 138 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | /* Get chipset boot FSB from subdevice 5 (FSB at boot-time) */ |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 140 | nforce2_sub5 = pci_get_subsys(PCI_VENDOR_ID_NVIDIA, 0x01EF, |
| 141 | PCI_ANY_ID, PCI_ANY_ID, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | if (!nforce2_sub5) |
| 143 | return 0; |
| 144 | |
| 145 | pci_read_config_dword(nforce2_sub5, NFORCE2_BOOTFSB, &fsb); |
| 146 | fsb /= 1000000; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 147 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | /* Check if PLL register is already set */ |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 149 | pci_read_config_byte(nforce2_dev, NFORCE2_PLLENABLE, (u8 *)&temp); |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 150 | |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 151 | if (bootfsb || !temp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | return fsb; |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 153 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | /* Use PLL register FSB value */ |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 155 | pci_read_config_dword(nforce2_dev, NFORCE2_PLLREG, &temp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | fsb = nforce2_calc_fsb(temp); |
| 157 | |
| 158 | return fsb; |
| 159 | } |
| 160 | |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 161 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | * nforce2_set_fsb - set new FSB |
| 163 | * @fsb: New FSB |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 164 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | * Sets new FSB |
| 166 | */ |
| 167 | static int nforce2_set_fsb(unsigned int fsb) |
| 168 | { |
Gabriel A. Devenyi | d492191 | 2005-12-01 01:09:22 -0800 | [diff] [blame] | 169 | u32 temp = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | unsigned int tfsb; |
| 171 | int diff; |
Gabriel A. Devenyi | d492191 | 2005-12-01 01:09:22 -0800 | [diff] [blame] | 172 | int pll = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
| 174 | if ((fsb > max_fsb) || (fsb < NFORCE2_MIN_FSB)) { |
Joe Perches | 1c5864e | 2016-04-05 13:28:25 -0700 | [diff] [blame] | 175 | pr_err("FSB %d is out of range!\n", fsb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | return -EINVAL; |
| 177 | } |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 178 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | tfsb = nforce2_fsb_read(0); |
| 180 | if (!tfsb) { |
Joe Perches | 1c5864e | 2016-04-05 13:28:25 -0700 | [diff] [blame] | 181 | pr_err("Error while reading the FSB\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | return -EINVAL; |
| 183 | } |
| 184 | |
| 185 | /* First write? Then set actual value */ |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 186 | pci_read_config_byte(nforce2_dev, NFORCE2_PLLENABLE, (u8 *)&temp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | if (!temp) { |
| 188 | pll = nforce2_calc_pll(tfsb); |
| 189 | |
| 190 | if (pll < 0) |
| 191 | return -EINVAL; |
| 192 | |
| 193 | nforce2_write_pll(pll); |
| 194 | } |
| 195 | |
| 196 | /* Enable write access */ |
| 197 | temp = 0x01; |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 198 | pci_write_config_byte(nforce2_dev, NFORCE2_PLLENABLE, (u8)temp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
| 200 | diff = tfsb - fsb; |
| 201 | |
| 202 | if (!diff) |
| 203 | return 0; |
| 204 | |
| 205 | while ((tfsb != fsb) && (tfsb <= max_fsb) && (tfsb >= min_fsb)) { |
| 206 | if (diff < 0) |
| 207 | tfsb++; |
| 208 | else |
| 209 | tfsb--; |
| 210 | |
| 211 | /* Calculate the PLL reg. value */ |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 212 | pll = nforce2_calc_pll(tfsb); |
| 213 | if (pll == -1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | return -EINVAL; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 215 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | nforce2_write_pll(pll); |
| 217 | #ifdef NFORCE2_DELAY |
| 218 | mdelay(NFORCE2_DELAY); |
| 219 | #endif |
| 220 | } |
| 221 | |
| 222 | temp = 0x40; |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 223 | pci_write_config_byte(nforce2_dev, NFORCE2_PLLADR, (u8)temp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
| 225 | return 0; |
| 226 | } |
| 227 | |
| 228 | /** |
| 229 | * nforce2_get - get the CPU frequency |
| 230 | * @cpu: CPU number |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 231 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | * Returns the CPU frequency |
| 233 | */ |
| 234 | static unsigned int nforce2_get(unsigned int cpu) |
| 235 | { |
| 236 | if (cpu) |
| 237 | return 0; |
| 238 | return nforce2_fsb_read(0) * fid * 100; |
| 239 | } |
| 240 | |
| 241 | /** |
| 242 | * nforce2_target - set a new CPUFreq policy |
| 243 | * @policy: new policy |
| 244 | * @target_freq: the target frequency |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 245 | * @relation: how that frequency relates to achieved frequency |
| 246 | * (CPUFREQ_RELATION_L or CPUFREQ_RELATION_H) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | * |
| 248 | * Sets a new CPUFreq policy. |
| 249 | */ |
| 250 | static int nforce2_target(struct cpufreq_policy *policy, |
| 251 | unsigned int target_freq, unsigned int relation) |
| 252 | { |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 253 | /* unsigned long flags; */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | struct cpufreq_freqs freqs; |
| 255 | unsigned int target_fsb; |
| 256 | |
| 257 | if ((target_freq > policy->max) || (target_freq < policy->min)) |
| 258 | return -EINVAL; |
| 259 | |
| 260 | target_fsb = target_freq / (fid * 100); |
| 261 | |
| 262 | freqs.old = nforce2_get(policy->cpu); |
| 263 | freqs.new = target_fsb * fid * 100; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | |
| 265 | if (freqs.old == freqs.new) |
| 266 | return 0; |
| 267 | |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 268 | pr_debug("Old CPU frequency %d kHz, new %d kHz\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | freqs.old, freqs.new); |
| 270 | |
Viresh Kumar | 8fec051 | 2014-03-24 13:35:45 +0530 | [diff] [blame] | 271 | cpufreq_freq_transition_begin(policy, &freqs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
| 273 | /* Disable IRQs */ |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 274 | /* local_irq_save(flags); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | |
| 276 | if (nforce2_set_fsb(target_fsb) < 0) |
Joe Perches | 1c5864e | 2016-04-05 13:28:25 -0700 | [diff] [blame] | 277 | pr_err("Changing FSB to %d failed\n", target_fsb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | else |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 279 | pr_debug("Changed FSB successfully to %d\n", |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 280 | target_fsb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | |
| 282 | /* Enable IRQs */ |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 283 | /* local_irq_restore(flags); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | |
Viresh Kumar | 8fec051 | 2014-03-24 13:35:45 +0530 | [diff] [blame] | 285 | cpufreq_freq_transition_end(policy, &freqs, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | |
| 287 | return 0; |
| 288 | } |
| 289 | |
| 290 | /** |
| 291 | * nforce2_verify - verifies a new CPUFreq policy |
| 292 | * @policy: new policy |
| 293 | */ |
| 294 | static int nforce2_verify(struct cpufreq_policy *policy) |
| 295 | { |
| 296 | unsigned int fsb_pol_max; |
| 297 | |
| 298 | fsb_pol_max = policy->max / (fid * 100); |
| 299 | |
| 300 | if (policy->min < (fsb_pol_max * fid * 100)) |
| 301 | policy->max = (fsb_pol_max + 1) * fid * 100; |
| 302 | |
Viresh Kumar | be49e34 | 2013-10-02 14:13:19 +0530 | [diff] [blame] | 303 | cpufreq_verify_within_cpu_limits(policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | return 0; |
| 305 | } |
| 306 | |
| 307 | static int nforce2_cpu_init(struct cpufreq_policy *policy) |
| 308 | { |
| 309 | unsigned int fsb; |
| 310 | unsigned int rfid; |
| 311 | |
| 312 | /* capability check */ |
| 313 | if (policy->cpu != 0) |
| 314 | return -ENODEV; |
| 315 | |
| 316 | /* Get current FSB */ |
| 317 | fsb = nforce2_fsb_read(0); |
| 318 | |
| 319 | if (!fsb) |
| 320 | return -EIO; |
| 321 | |
| 322 | /* FIX: Get FID from CPU */ |
| 323 | if (!fid) { |
| 324 | if (!cpu_khz) { |
Joe Perches | 1c5864e | 2016-04-05 13:28:25 -0700 | [diff] [blame] | 325 | pr_warn("cpu_khz not set, can't calculate multiplier!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | return -ENODEV; |
| 327 | } |
| 328 | |
| 329 | fid = cpu_khz / (fsb * 100); |
| 330 | rfid = fid % 5; |
| 331 | |
| 332 | if (rfid) { |
| 333 | if (rfid > 2) |
| 334 | fid += 5 - rfid; |
| 335 | else |
| 336 | fid -= rfid; |
| 337 | } |
| 338 | } |
| 339 | |
Joe Perches | 1c5864e | 2016-04-05 13:28:25 -0700 | [diff] [blame] | 340 | pr_info("FSB currently at %i MHz, FID %d.%d\n", |
Joe Perches | b49c22a | 2016-04-05 13:28:24 -0700 | [diff] [blame] | 341 | fsb, fid / 10, fid % 10); |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 342 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | /* Set maximum FSB to FSB at boot time */ |
| 344 | max_fsb = nforce2_fsb_read(1); |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 345 | |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 346 | if (!max_fsb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | return -EIO; |
| 348 | |
| 349 | if (!min_fsb) |
| 350 | min_fsb = max_fsb - NFORCE2_SAFE_DISTANCE; |
| 351 | |
| 352 | if (min_fsb < NFORCE2_MIN_FSB) |
| 353 | min_fsb = NFORCE2_MIN_FSB; |
| 354 | |
| 355 | /* cpuinfo and default policy values */ |
Viresh Kumar | eb2f50f | 2013-04-01 12:57:48 +0000 | [diff] [blame] | 356 | policy->min = policy->cpuinfo.min_freq = min_fsb * fid * 100; |
| 357 | policy->max = policy->cpuinfo.max_freq = max_fsb * fid * 100; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | |
| 359 | return 0; |
| 360 | } |
| 361 | |
| 362 | static int nforce2_cpu_exit(struct cpufreq_policy *policy) |
| 363 | { |
| 364 | return 0; |
| 365 | } |
| 366 | |
Linus Torvalds | 221dee2 | 2007-02-26 14:55:48 -0800 | [diff] [blame] | 367 | static struct cpufreq_driver nforce2_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 368 | .name = "nforce2", |
Viresh Kumar | fe829ed | 2017-07-19 15:42:48 +0530 | [diff] [blame] | 369 | .flags = CPUFREQ_NO_AUTO_DYNAMIC_SWITCHING, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | .verify = nforce2_verify, |
| 371 | .target = nforce2_target, |
| 372 | .get = nforce2_get, |
| 373 | .init = nforce2_cpu_init, |
| 374 | .exit = nforce2_cpu_exit, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | }; |
| 376 | |
Andi Kleen | fa8031a | 2012-01-26 00:09:12 +0100 | [diff] [blame] | 377 | #ifdef MODULE |
Jingoo Han | dfcb0a5 | 2014-05-09 15:08:29 +0900 | [diff] [blame] | 378 | static const struct pci_device_id nforce2_ids[] = { |
Andi Kleen | fa8031a | 2012-01-26 00:09:12 +0100 | [diff] [blame] | 379 | { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE2 }, |
| 380 | {} |
| 381 | }; |
| 382 | MODULE_DEVICE_TABLE(pci, nforce2_ids); |
| 383 | #endif |
| 384 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | /** |
| 386 | * nforce2_detect_chipset - detect the Southbridge which contains FSB PLL logic |
| 387 | * |
| 388 | * Detects nForce2 A2 and C1 stepping |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 389 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | */ |
Julia Lawall | b2a33c1 | 2010-09-05 21:00:20 +0200 | [diff] [blame] | 391 | static int nforce2_detect_chipset(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | { |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 393 | nforce2_dev = pci_get_subsys(PCI_VENDOR_ID_NVIDIA, |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 394 | PCI_DEVICE_ID_NVIDIA_NFORCE2, |
| 395 | PCI_ANY_ID, PCI_ANY_ID, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 397 | if (nforce2_dev == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | return -ENODEV; |
| 399 | |
Joe Perches | 1c5864e | 2016-04-05 13:28:25 -0700 | [diff] [blame] | 400 | pr_info("Detected nForce2 chipset revision %X\n", |
Joe Perches | b49c22a | 2016-04-05 13:28:24 -0700 | [diff] [blame] | 401 | nforce2_dev->revision); |
Joe Perches | 1c5864e | 2016-04-05 13:28:25 -0700 | [diff] [blame] | 402 | pr_info("FSB changing is maybe unstable and can lead to crashes and data loss\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 403 | |
| 404 | return 0; |
| 405 | } |
| 406 | |
| 407 | /** |
| 408 | * nforce2_init - initializes the nForce2 CPUFreq driver |
| 409 | * |
| 410 | * Initializes the nForce2 FSB support. Returns -ENODEV on unsupported |
Shailendra Verma | 97155e0 | 2015-05-23 10:36:18 +0530 | [diff] [blame] | 411 | * devices, -EINVAL on problems during initialization, and zero on |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | * success. |
| 413 | */ |
| 414 | static int __init nforce2_init(void) |
| 415 | { |
| 416 | /* TODO: do we need to detect the processor? */ |
| 417 | |
| 418 | /* detect chipset */ |
| 419 | if (nforce2_detect_chipset()) { |
Joe Perches | 1c5864e | 2016-04-05 13:28:25 -0700 | [diff] [blame] | 420 | pr_info("No nForce2 chipset\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | return -ENODEV; |
| 422 | } |
| 423 | |
| 424 | return cpufreq_register_driver(&nforce2_driver); |
| 425 | } |
| 426 | |
| 427 | /** |
| 428 | * nforce2_exit - unregisters cpufreq module |
| 429 | * |
| 430 | * Unregisters nForce2 FSB change support. |
| 431 | */ |
| 432 | static void __exit nforce2_exit(void) |
| 433 | { |
| 434 | cpufreq_unregister_driver(&nforce2_driver); |
| 435 | } |
| 436 | |
| 437 | module_init(nforce2_init); |
| 438 | module_exit(nforce2_exit); |