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 | |
| 10 | #include <linux/kernel.h> |
| 11 | #include <linux/module.h> |
| 12 | #include <linux/moduleparam.h> |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/cpufreq.h> |
| 15 | #include <linux/pci.h> |
| 16 | #include <linux/delay.h> |
| 17 | |
| 18 | #define NFORCE2_XTAL 25 |
| 19 | #define NFORCE2_BOOTFSB 0x48 |
| 20 | #define NFORCE2_PLLENABLE 0xa8 |
| 21 | #define NFORCE2_PLLREG 0xa4 |
| 22 | #define NFORCE2_PLLADR 0xa0 |
| 23 | #define NFORCE2_PLL(mul, div) (0x100000 | (mul << 8) | div) |
| 24 | |
| 25 | #define NFORCE2_MIN_FSB 50 |
| 26 | #define NFORCE2_SAFE_DISTANCE 50 |
| 27 | |
| 28 | /* Delay in ms between FSB changes */ |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 29 | /* #define NFORCE2_DELAY 10 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 31 | /* |
| 32 | * nforce2_chipset: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | * FSB is changed using the chipset |
| 34 | */ |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 35 | static struct pci_dev *nforce2_dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
| 37 | /* fid: |
| 38 | * multiplier * 10 |
| 39 | */ |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 40 | static int fid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
| 42 | /* min_fsb, max_fsb: |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 43 | * minimum and maximum FSB (= FSB at boot time) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | */ |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 45 | static int min_fsb; |
| 46 | static int max_fsb; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
| 48 | MODULE_AUTHOR("Sebastian Witt <se.witt@gmx.net>"); |
| 49 | MODULE_DESCRIPTION("nForce2 FSB changing cpufreq driver"); |
| 50 | MODULE_LICENSE("GPL"); |
| 51 | |
| 52 | module_param(fid, int, 0444); |
| 53 | module_param(min_fsb, int, 0444); |
| 54 | |
| 55 | MODULE_PARM_DESC(fid, "CPU multiplier to use (11.5 = 115)"); |
| 56 | MODULE_PARM_DESC(min_fsb, |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 57 | "Minimum FSB to use, if not defined: current FSB - 50"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
Dave Jones | 20174b6 | 2009-01-17 22:42:19 -0500 | [diff] [blame] | 59 | #define PFX "cpufreq-nforce2: " |
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 | return; |
| 128 | } |
| 129 | |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 130 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | * nforce2_fsb_read - Read FSB |
| 132 | * |
| 133 | * Read FSB from chipset |
| 134 | * If bootfsb != 0, return FSB at boot-time |
| 135 | */ |
| 136 | static unsigned int nforce2_fsb_read(int bootfsb) |
| 137 | { |
| 138 | struct pci_dev *nforce2_sub5; |
| 139 | u32 fsb, temp = 0; |
| 140 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | /* Get chipset boot FSB from subdevice 5 (FSB at boot-time) */ |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 142 | nforce2_sub5 = pci_get_subsys(PCI_VENDOR_ID_NVIDIA, 0x01EF, |
| 143 | PCI_ANY_ID, PCI_ANY_ID, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | if (!nforce2_sub5) |
| 145 | return 0; |
| 146 | |
| 147 | pci_read_config_dword(nforce2_sub5, NFORCE2_BOOTFSB, &fsb); |
| 148 | fsb /= 1000000; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | /* Check if PLL register is already set */ |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 151 | pci_read_config_byte(nforce2_dev, NFORCE2_PLLENABLE, (u8 *)&temp); |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 152 | |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 153 | if (bootfsb || !temp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | return fsb; |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 155 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | /* Use PLL register FSB value */ |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 157 | pci_read_config_dword(nforce2_dev, NFORCE2_PLLREG, &temp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | fsb = nforce2_calc_fsb(temp); |
| 159 | |
| 160 | return fsb; |
| 161 | } |
| 162 | |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 163 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | * nforce2_set_fsb - set new FSB |
| 165 | * @fsb: New FSB |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 166 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | * Sets new FSB |
| 168 | */ |
| 169 | static int nforce2_set_fsb(unsigned int fsb) |
| 170 | { |
Gabriel A. Devenyi | d492191 | 2005-12-01 01:09:22 -0800 | [diff] [blame] | 171 | u32 temp = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | unsigned int tfsb; |
| 173 | int diff; |
Gabriel A. Devenyi | d492191 | 2005-12-01 01:09:22 -0800 | [diff] [blame] | 174 | int pll = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | |
| 176 | if ((fsb > max_fsb) || (fsb < NFORCE2_MIN_FSB)) { |
Dave Jones | 20174b6 | 2009-01-17 22:42:19 -0500 | [diff] [blame] | 177 | printk(KERN_ERR PFX "FSB %d is out of range!\n", fsb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | return -EINVAL; |
| 179 | } |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 180 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | tfsb = nforce2_fsb_read(0); |
| 182 | if (!tfsb) { |
Dave Jones | 20174b6 | 2009-01-17 22:42:19 -0500 | [diff] [blame] | 183 | printk(KERN_ERR PFX "Error while reading the FSB\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 | return -EINVAL; |
| 185 | } |
| 186 | |
| 187 | /* First write? Then set actual value */ |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 188 | pci_read_config_byte(nforce2_dev, NFORCE2_PLLENABLE, (u8 *)&temp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | if (!temp) { |
| 190 | pll = nforce2_calc_pll(tfsb); |
| 191 | |
| 192 | if (pll < 0) |
| 193 | return -EINVAL; |
| 194 | |
| 195 | nforce2_write_pll(pll); |
| 196 | } |
| 197 | |
| 198 | /* Enable write access */ |
| 199 | temp = 0x01; |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 200 | pci_write_config_byte(nforce2_dev, NFORCE2_PLLENABLE, (u8)temp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | |
| 202 | diff = tfsb - fsb; |
| 203 | |
| 204 | if (!diff) |
| 205 | return 0; |
| 206 | |
| 207 | while ((tfsb != fsb) && (tfsb <= max_fsb) && (tfsb >= min_fsb)) { |
| 208 | if (diff < 0) |
| 209 | tfsb++; |
| 210 | else |
| 211 | tfsb--; |
| 212 | |
| 213 | /* Calculate the PLL reg. value */ |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 214 | pll = nforce2_calc_pll(tfsb); |
| 215 | if (pll == -1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | return -EINVAL; |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 217 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | nforce2_write_pll(pll); |
| 219 | #ifdef NFORCE2_DELAY |
| 220 | mdelay(NFORCE2_DELAY); |
| 221 | #endif |
| 222 | } |
| 223 | |
| 224 | temp = 0x40; |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 225 | pci_write_config_byte(nforce2_dev, NFORCE2_PLLADR, (u8)temp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 226 | |
| 227 | return 0; |
| 228 | } |
| 229 | |
| 230 | /** |
| 231 | * nforce2_get - get the CPU frequency |
| 232 | * @cpu: CPU number |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 233 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | * Returns the CPU frequency |
| 235 | */ |
| 236 | static unsigned int nforce2_get(unsigned int cpu) |
| 237 | { |
| 238 | if (cpu) |
| 239 | return 0; |
| 240 | return nforce2_fsb_read(0) * fid * 100; |
| 241 | } |
| 242 | |
| 243 | /** |
| 244 | * nforce2_target - set a new CPUFreq policy |
| 245 | * @policy: new policy |
| 246 | * @target_freq: the target frequency |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 247 | * @relation: how that frequency relates to achieved frequency |
| 248 | * (CPUFREQ_RELATION_L or CPUFREQ_RELATION_H) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | * |
| 250 | * Sets a new CPUFreq policy. |
| 251 | */ |
| 252 | static int nforce2_target(struct cpufreq_policy *policy, |
| 253 | unsigned int target_freq, unsigned int relation) |
| 254 | { |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 255 | /* unsigned long flags; */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | struct cpufreq_freqs freqs; |
| 257 | unsigned int target_fsb; |
| 258 | |
| 259 | if ((target_freq > policy->max) || (target_freq < policy->min)) |
| 260 | return -EINVAL; |
| 261 | |
| 262 | target_fsb = target_freq / (fid * 100); |
| 263 | |
| 264 | freqs.old = nforce2_get(policy->cpu); |
| 265 | freqs.new = target_fsb * fid * 100; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | |
| 267 | if (freqs.old == freqs.new) |
| 268 | return 0; |
| 269 | |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 270 | pr_debug("Old CPU frequency %d kHz, new %d kHz\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | freqs.old, freqs.new); |
| 272 | |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 273 | cpufreq_notify_transition(policy, &freqs, CPUFREQ_PRECHANGE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | |
| 275 | /* Disable IRQs */ |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 276 | /* local_irq_save(flags); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | |
| 278 | if (nforce2_set_fsb(target_fsb) < 0) |
Dave Jones | 20174b6 | 2009-01-17 22:42:19 -0500 | [diff] [blame] | 279 | printk(KERN_ERR PFX "Changing FSB to %d failed\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 | else |
Dominik Brodowski | 2d06d8c | 2011-03-27 15:04:46 +0200 | [diff] [blame] | 282 | pr_debug("Changed FSB successfully to %d\n", |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 283 | target_fsb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | |
| 285 | /* Enable IRQs */ |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 286 | /* local_irq_restore(flags); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | |
Viresh Kumar | b43a7ff | 2013-03-24 11:56:43 +0530 | [diff] [blame] | 288 | cpufreq_notify_transition(policy, &freqs, CPUFREQ_POSTCHANGE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
| 290 | return 0; |
| 291 | } |
| 292 | |
| 293 | /** |
| 294 | * nforce2_verify - verifies a new CPUFreq policy |
| 295 | * @policy: new policy |
| 296 | */ |
| 297 | static int nforce2_verify(struct cpufreq_policy *policy) |
| 298 | { |
| 299 | unsigned int fsb_pol_max; |
| 300 | |
| 301 | fsb_pol_max = policy->max / (fid * 100); |
| 302 | |
| 303 | if (policy->min < (fsb_pol_max * fid * 100)) |
| 304 | policy->max = (fsb_pol_max + 1) * fid * 100; |
| 305 | |
Viresh Kumar | be49e34 | 2013-10-02 14:13:19 +0530 | [diff] [blame] | 306 | cpufreq_verify_within_cpu_limits(policy); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | return 0; |
| 308 | } |
| 309 | |
| 310 | static int nforce2_cpu_init(struct cpufreq_policy *policy) |
| 311 | { |
| 312 | unsigned int fsb; |
| 313 | unsigned int rfid; |
| 314 | |
| 315 | /* capability check */ |
| 316 | if (policy->cpu != 0) |
| 317 | return -ENODEV; |
| 318 | |
| 319 | /* Get current FSB */ |
| 320 | fsb = nforce2_fsb_read(0); |
| 321 | |
| 322 | if (!fsb) |
| 323 | return -EIO; |
| 324 | |
| 325 | /* FIX: Get FID from CPU */ |
| 326 | if (!fid) { |
| 327 | if (!cpu_khz) { |
Dave Jones | 20174b6 | 2009-01-17 22:42:19 -0500 | [diff] [blame] | 328 | printk(KERN_WARNING PFX |
| 329 | "cpu_khz not set, can't calculate multiplier!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | return -ENODEV; |
| 331 | } |
| 332 | |
| 333 | fid = cpu_khz / (fsb * 100); |
| 334 | rfid = fid % 5; |
| 335 | |
| 336 | if (rfid) { |
| 337 | if (rfid > 2) |
| 338 | fid += 5 - rfid; |
| 339 | else |
| 340 | fid -= rfid; |
| 341 | } |
| 342 | } |
| 343 | |
Dave Jones | 20174b6 | 2009-01-17 22:42:19 -0500 | [diff] [blame] | 344 | printk(KERN_INFO PFX "FSB currently at %i MHz, FID %d.%d\n", fsb, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | fid / 10, fid % 10); |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 346 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | /* Set maximum FSB to FSB at boot time */ |
| 348 | max_fsb = nforce2_fsb_read(1); |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 349 | |
Paolo Ciarrocchi | 219835f | 2008-06-14 21:11:39 +0200 | [diff] [blame] | 350 | if (!max_fsb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | return -EIO; |
| 352 | |
| 353 | if (!min_fsb) |
| 354 | min_fsb = max_fsb - NFORCE2_SAFE_DISTANCE; |
| 355 | |
| 356 | if (min_fsb < NFORCE2_MIN_FSB) |
| 357 | min_fsb = NFORCE2_MIN_FSB; |
| 358 | |
| 359 | /* cpuinfo and default policy values */ |
Viresh Kumar | eb2f50f | 2013-04-01 12:57:48 +0000 | [diff] [blame] | 360 | policy->min = policy->cpuinfo.min_freq = min_fsb * fid * 100; |
| 361 | policy->max = policy->cpuinfo.max_freq = max_fsb * fid * 100; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | |
| 364 | return 0; |
| 365 | } |
| 366 | |
| 367 | static int nforce2_cpu_exit(struct cpufreq_policy *policy) |
| 368 | { |
| 369 | return 0; |
| 370 | } |
| 371 | |
Linus Torvalds | 221dee2 | 2007-02-26 14:55:48 -0800 | [diff] [blame] | 372 | static struct cpufreq_driver nforce2_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | .name = "nforce2", |
| 374 | .verify = nforce2_verify, |
| 375 | .target = nforce2_target, |
| 376 | .get = nforce2_get, |
| 377 | .init = nforce2_cpu_init, |
| 378 | .exit = nforce2_cpu_exit, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | }; |
| 380 | |
Andi Kleen | fa8031a | 2012-01-26 00:09:12 +0100 | [diff] [blame] | 381 | #ifdef MODULE |
| 382 | static DEFINE_PCI_DEVICE_TABLE(nforce2_ids) = { |
| 383 | { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE2 }, |
| 384 | {} |
| 385 | }; |
| 386 | MODULE_DEVICE_TABLE(pci, nforce2_ids); |
| 387 | #endif |
| 388 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | /** |
| 390 | * nforce2_detect_chipset - detect the Southbridge which contains FSB PLL logic |
| 391 | * |
| 392 | * Detects nForce2 A2 and C1 stepping |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 393 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | */ |
Julia Lawall | b2a33c1 | 2010-09-05 21:00:20 +0200 | [diff] [blame] | 395 | static int nforce2_detect_chipset(void) |
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 | nforce2_dev = pci_get_subsys(PCI_VENDOR_ID_NVIDIA, |
Dave Jones | 32ee8c3 | 2006-02-28 00:43:23 -0500 | [diff] [blame] | 398 | PCI_DEVICE_ID_NVIDIA_NFORCE2, |
| 399 | PCI_ANY_ID, PCI_ANY_ID, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 401 | if (nforce2_dev == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | return -ENODEV; |
| 403 | |
Dave Jones | 20174b6 | 2009-01-17 22:42:19 -0500 | [diff] [blame] | 404 | printk(KERN_INFO PFX "Detected nForce2 chipset revision %X\n", |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 405 | nforce2_dev->revision); |
Dave Jones | 20174b6 | 2009-01-17 22:42:19 -0500 | [diff] [blame] | 406 | printk(KERN_INFO PFX |
| 407 | "FSB changing is maybe unstable and can lead to " |
Dave Jones | b5c9166 | 2009-01-17 22:39:47 -0500 | [diff] [blame] | 408 | "crashes and data loss.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | |
| 410 | return 0; |
| 411 | } |
| 412 | |
| 413 | /** |
| 414 | * nforce2_init - initializes the nForce2 CPUFreq driver |
| 415 | * |
| 416 | * Initializes the nForce2 FSB support. Returns -ENODEV on unsupported |
| 417 | * devices, -EINVAL on problems during initiatization, and zero on |
| 418 | * success. |
| 419 | */ |
| 420 | static int __init nforce2_init(void) |
| 421 | { |
| 422 | /* TODO: do we need to detect the processor? */ |
| 423 | |
| 424 | /* detect chipset */ |
| 425 | if (nforce2_detect_chipset()) { |
Matthew Garrett | eb3092c | 2009-02-21 01:58:47 +0000 | [diff] [blame] | 426 | printk(KERN_INFO PFX "No nForce2 chipset.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | return -ENODEV; |
| 428 | } |
| 429 | |
| 430 | return cpufreq_register_driver(&nforce2_driver); |
| 431 | } |
| 432 | |
| 433 | /** |
| 434 | * nforce2_exit - unregisters cpufreq module |
| 435 | * |
| 436 | * Unregisters nForce2 FSB change support. |
| 437 | */ |
| 438 | static void __exit nforce2_exit(void) |
| 439 | { |
| 440 | cpufreq_unregister_driver(&nforce2_driver); |
| 441 | } |
| 442 | |
| 443 | module_init(nforce2_init); |
| 444 | module_exit(nforce2_exit); |
| 445 | |