diff options
| author | Len Brown <len.brown@intel.com> | 2008-10-25 04:07:44 -0400 |
|---|---|---|
| committer | Len Brown <len.brown@intel.com> | 2008-10-25 04:07:44 -0400 |
| commit | 9fb3c5ca3dabe06758c35f790c68e273ed749e19 (patch) | |
| tree | 874eb114b57c5b30152e66d601a8e67ed81ec606 | |
| parent | 438f8de46bc261b35d84771ae9992cfff3ff4dd8 (diff) | |
| parent | f371be6352cdde3df2253b76acb979480e93ce4f (diff) | |
Merge branch 'i7300_idle' into release
| -rw-r--r-- | drivers/dma/ioat_dma.c | 7 | ||||
| -rw-r--r-- | drivers/idle/Kconfig | 11 | ||||
| -rw-r--r-- | drivers/idle/i7300_idle.c | 105 | ||||
| -rw-r--r-- | include/linux/i7300_idle.h | 83 |
4 files changed, 114 insertions, 92 deletions
diff --git a/drivers/dma/ioat_dma.c b/drivers/dma/ioat_dma.c index 43b8cefad2c6..b0438c4f0c30 100644 --- a/drivers/dma/ioat_dma.c +++ b/drivers/dma/ioat_dma.c | |||
| @@ -33,6 +33,7 @@ | |||
| 33 | #include <linux/delay.h> | 33 | #include <linux/delay.h> |
| 34 | #include <linux/dma-mapping.h> | 34 | #include <linux/dma-mapping.h> |
| 35 | #include <linux/workqueue.h> | 35 | #include <linux/workqueue.h> |
| 36 | #include <linux/i7300_idle.h> | ||
| 36 | #include "ioatdma.h" | 37 | #include "ioatdma.h" |
| 37 | #include "ioatdma_registers.h" | 38 | #include "ioatdma_registers.h" |
| 38 | #include "ioatdma_hw.h" | 39 | #include "ioatdma_hw.h" |
| @@ -171,8 +172,10 @@ static int ioat_dma_enumerate_channels(struct ioatdma_device *device) | |||
| 171 | xfercap_scale = readb(device->reg_base + IOAT_XFERCAP_OFFSET); | 172 | xfercap_scale = readb(device->reg_base + IOAT_XFERCAP_OFFSET); |
| 172 | xfercap = (xfercap_scale == 0 ? -1 : (1UL << xfercap_scale)); | 173 | xfercap = (xfercap_scale == 0 ? -1 : (1UL << xfercap_scale)); |
| 173 | 174 | ||
| 174 | #if CONFIG_I7300_IDLE_IOAT_CHANNEL | 175 | #ifdef CONFIG_I7300_IDLE_IOAT_CHANNEL |
| 175 | device->common.chancnt--; | 176 | if (i7300_idle_platform_probe(NULL, NULL) == 0) { |
| 177 | device->common.chancnt--; | ||
| 178 | } | ||
| 176 | #endif | 179 | #endif |
| 177 | for (i = 0; i < device->common.chancnt; i++) { | 180 | for (i = 0; i < device->common.chancnt; i++) { |
| 178 | ioat_chan = kzalloc(sizeof(*ioat_chan), GFP_KERNEL); | 181 | ioat_chan = kzalloc(sizeof(*ioat_chan), GFP_KERNEL); |
diff --git a/drivers/idle/Kconfig b/drivers/idle/Kconfig index f5b26dd579e4..108264de0ac9 100644 --- a/drivers/idle/Kconfig +++ b/drivers/idle/Kconfig | |||
| @@ -5,12 +5,13 @@ config I7300_IDLE_IOAT_CHANNEL | |||
| 5 | bool | 5 | bool |
| 6 | 6 | ||
| 7 | config I7300_IDLE | 7 | config I7300_IDLE |
| 8 | tristate "Intel chipset idle power saving driver" | 8 | tristate "Intel chipset idle memory power saving driver" |
| 9 | select I7300_IDLE_IOAT_CHANNEL | 9 | select I7300_IDLE_IOAT_CHANNEL |
| 10 | depends on X86_64 | 10 | depends on X86_64 && EXPERIMENTAL |
| 11 | help | 11 | help |
| 12 | Enable idle power savings with certain Intel server chipsets. | 12 | Enable memory power savings when idle with certain Intel server |
| 13 | The chipset must have I/O AT support, such as the Intel 7300. | 13 | chipsets. The chipset must have I/O AT support, such as the |
| 14 | The power savings depends on the type and quantity of DRAM devices. | 14 | Intel 7300. The power savings depends on the type and quantity of |
| 15 | DRAM devices. | ||
| 15 | 16 | ||
| 16 | endmenu | 17 | endmenu |
diff --git a/drivers/idle/i7300_idle.c b/drivers/idle/i7300_idle.c index 59d1bbc3cd3c..fb176f6ef9f8 100644 --- a/drivers/idle/i7300_idle.c +++ b/drivers/idle/i7300_idle.c | |||
| @@ -25,6 +25,7 @@ | |||
| 25 | #include <linux/delay.h> | 25 | #include <linux/delay.h> |
| 26 | #include <linux/debugfs.h> | 26 | #include <linux/debugfs.h> |
| 27 | #include <linux/stop_machine.h> | 27 | #include <linux/stop_machine.h> |
| 28 | #include <linux/i7300_idle.h> | ||
| 28 | 29 | ||
| 29 | #include <asm/idle.h> | 30 | #include <asm/idle.h> |
| 30 | 31 | ||
| @@ -34,6 +35,8 @@ | |||
| 34 | #define I7300_IDLE_DRIVER_VERSION "1.55" | 35 | #define I7300_IDLE_DRIVER_VERSION "1.55" |
| 35 | #define I7300_PRINT "i7300_idle:" | 36 | #define I7300_PRINT "i7300_idle:" |
| 36 | 37 | ||
| 38 | #define MAX_STOP_RETRIES 10 | ||
| 39 | |||
| 37 | static int debug; | 40 | static int debug; |
| 38 | module_param_named(debug, debug, uint, 0644); | 41 | module_param_named(debug, debug, uint, 0644); |
| 39 | MODULE_PARM_DESC(debug, "Enable debug printks in this driver"); | 42 | MODULE_PARM_DESC(debug, "Enable debug printks in this driver"); |
| @@ -46,12 +49,12 @@ MODULE_PARM_DESC(debug, "Enable debug printks in this driver"); | |||
| 46 | * 0 = No throttling | 49 | * 0 = No throttling |
| 47 | * 1 = Throttle when > 4 activations per eval window (Maximum throttling) | 50 | * 1 = Throttle when > 4 activations per eval window (Maximum throttling) |
| 48 | * 2 = Throttle when > 8 activations | 51 | * 2 = Throttle when > 8 activations |
| 49 | * 168 = Throttle when > 168 activations (Minimum throttling) | 52 | * 168 = Throttle when > 672 activations (Minimum throttling) |
| 50 | */ | 53 | */ |
| 51 | #define MAX_THRTLWLIMIT 168 | 54 | #define MAX_THROTTLE_LOW_LIMIT 168 |
| 52 | static uint i7300_idle_thrtlowlm = 1; | 55 | static uint throttle_low_limit = 1; |
| 53 | module_param_named(thrtlwlimit, i7300_idle_thrtlowlm, uint, 0644); | 56 | module_param_named(throttle_low_limit, throttle_low_limit, uint, 0644); |
| 54 | MODULE_PARM_DESC(thrtlwlimit, | 57 | MODULE_PARM_DESC(throttle_low_limit, |
| 55 | "Value for THRTLOWLM activation field " | 58 | "Value for THRTLOWLM activation field " |
| 56 | "(0 = disable throttle, 1 = Max throttle, 168 = Min throttle)"); | 59 | "(0 = disable throttle, 1 = Max throttle, 168 = Min throttle)"); |
| 57 | 60 | ||
| @@ -110,9 +113,9 @@ static int i7300_idle_ioat_start(void) | |||
| 110 | static void i7300_idle_ioat_stop(void) | 113 | static void i7300_idle_ioat_stop(void) |
| 111 | { | 114 | { |
| 112 | int i; | 115 | int i; |
| 113 | u8 sts; | 116 | u64 sts; |
| 114 | 117 | ||
| 115 | for (i = 0; i < 5; i++) { | 118 | for (i = 0; i < MAX_STOP_RETRIES; i++) { |
| 116 | writeb(IOAT_CHANCMD_RESET, | 119 | writeb(IOAT_CHANCMD_RESET, |
| 117 | ioat_chanbase + IOAT1_CHANCMD_OFFSET); | 120 | ioat_chanbase + IOAT1_CHANCMD_OFFSET); |
| 118 | 121 | ||
| @@ -126,9 +129,10 @@ static void i7300_idle_ioat_stop(void) | |||
| 126 | 129 | ||
| 127 | } | 130 | } |
| 128 | 131 | ||
| 129 | if (i == 5) | 132 | if (i == MAX_STOP_RETRIES) { |
| 130 | dprintk("failed to suspend+reset I/O AT after 5 retries\n"); | 133 | dprintk("failed to stop I/O AT after %d retries\n", |
| 131 | 134 | MAX_STOP_RETRIES); | |
| 135 | } | ||
| 132 | } | 136 | } |
| 133 | 137 | ||
| 134 | /* Test I/O AT by copying 1024 byte from 2k to 1k */ | 138 | /* Test I/O AT by copying 1024 byte from 2k to 1k */ |
| @@ -275,7 +279,7 @@ static void __exit i7300_idle_ioat_exit(void) | |||
| 275 | i7300_idle_ioat_stop(); | 279 | i7300_idle_ioat_stop(); |
| 276 | 280 | ||
| 277 | /* Wait for a while for the channel to halt before releasing */ | 281 | /* Wait for a while for the channel to halt before releasing */ |
| 278 | for (i = 0; i < 10; i++) { | 282 | for (i = 0; i < MAX_STOP_RETRIES; i++) { |
| 279 | writeb(IOAT_CHANCMD_RESET, | 283 | writeb(IOAT_CHANCMD_RESET, |
| 280 | ioat_chanbase + IOAT1_CHANCMD_OFFSET); | 284 | ioat_chanbase + IOAT1_CHANCMD_OFFSET); |
| 281 | 285 | ||
| @@ -389,9 +393,9 @@ static void i7300_idle_start(void) | |||
| 389 | new_ctl = i7300_idle_thrtctl_saved & ~DIMM_THRTCTL_THRMHUNT; | 393 | new_ctl = i7300_idle_thrtctl_saved & ~DIMM_THRTCTL_THRMHUNT; |
| 390 | pci_write_config_byte(fbd_dev, DIMM_THRTCTL, new_ctl); | 394 | pci_write_config_byte(fbd_dev, DIMM_THRTCTL, new_ctl); |
| 391 | 395 | ||
| 392 | limit = i7300_idle_thrtlowlm; | 396 | limit = throttle_low_limit; |
| 393 | if (unlikely(limit > MAX_THRTLWLIMIT)) | 397 | if (unlikely(limit > MAX_THROTTLE_LOW_LIMIT)) |
| 394 | limit = MAX_THRTLWLIMIT; | 398 | limit = MAX_THROTTLE_LOW_LIMIT; |
| 395 | 399 | ||
| 396 | pci_write_config_byte(fbd_dev, DIMM_THRTLOW, limit); | 400 | pci_write_config_byte(fbd_dev, DIMM_THRTLOW, limit); |
| 397 | 401 | ||
| @@ -440,7 +444,7 @@ static int i7300_idle_notifier(struct notifier_block *nb, unsigned long val, | |||
| 440 | static ktime_t idle_begin_time; | 444 | static ktime_t idle_begin_time; |
| 441 | static int time_init = 1; | 445 | static int time_init = 1; |
| 442 | 446 | ||
| 443 | if (!i7300_idle_thrtlowlm) | 447 | if (!throttle_low_limit) |
| 444 | return 0; | 448 | return 0; |
| 445 | 449 | ||
| 446 | if (unlikely(time_init)) { | 450 | if (unlikely(time_init)) { |
| @@ -505,77 +509,8 @@ static struct notifier_block i7300_idle_nb = { | |||
| 505 | .notifier_call = i7300_idle_notifier, | 509 | .notifier_call = i7300_idle_notifier, |
| 506 | }; | 510 | }; |
| 507 | 511 | ||
| 508 | /* | ||
| 509 | * I/O AT controls (PCI bus 0 device 8 function 0) | ||
| 510 | * DIMM controls (PCI bus 0 device 16 function 1) | ||
| 511 | */ | ||
| 512 | #define IOAT_BUS 0 | ||
| 513 | #define IOAT_DEVFN PCI_DEVFN(8, 0) | ||
| 514 | #define MEMCTL_BUS 0 | ||
| 515 | #define MEMCTL_DEVFN PCI_DEVFN(16, 1) | ||
| 516 | |||
| 517 | struct fbd_ioat { | ||
| 518 | unsigned int vendor; | ||
| 519 | unsigned int ioat_dev; | ||
| 520 | }; | ||
| 521 | |||
| 522 | /* | ||
| 523 | * The i5000 chip-set has the same hooks as the i7300 | ||
| 524 | * but support is disabled by default because this driver | ||
| 525 | * has not been validated on that platform. | ||
| 526 | */ | ||
| 527 | #define SUPPORT_I5000 0 | ||
| 528 | |||
| 529 | static const struct fbd_ioat fbd_ioat_list[] = { | ||
| 530 | {PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_CNB}, | ||
| 531 | #if SUPPORT_I5000 | ||
| 532 | {PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT}, | ||
| 533 | #endif | ||
| 534 | {0, 0} | ||
| 535 | }; | ||
| 536 | |||
| 537 | /* table of devices that work with this driver */ | ||
| 538 | static const struct pci_device_id pci_tbl[] = { | ||
| 539 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_FBD_CNB) }, | ||
| 540 | #if SUPPORT_I5000 | ||
| 541 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5000_ERR) }, | ||
| 542 | #endif | ||
| 543 | { } /* Terminating entry */ | ||
| 544 | }; | ||
| 545 | |||
| 546 | MODULE_DEVICE_TABLE(pci, pci_tbl); | 512 | MODULE_DEVICE_TABLE(pci, pci_tbl); |
| 547 | 513 | ||
| 548 | /* Check for known platforms with I/O-AT */ | ||
| 549 | static int __init i7300_idle_platform_probe(void) | ||
| 550 | { | ||
| 551 | int i; | ||
| 552 | |||
| 553 | fbd_dev = pci_get_bus_and_slot(MEMCTL_BUS, MEMCTL_DEVFN); | ||
| 554 | if (!fbd_dev) | ||
| 555 | return -ENODEV; | ||
| 556 | |||
| 557 | for (i = 0; pci_tbl[i].vendor != 0; i++) { | ||
| 558 | if (fbd_dev->vendor == pci_tbl[i].vendor && | ||
| 559 | fbd_dev->device == pci_tbl[i].device) { | ||
| 560 | break; | ||
| 561 | } | ||
| 562 | } | ||
| 563 | if (pci_tbl[i].vendor == 0) | ||
| 564 | return -ENODEV; | ||
| 565 | |||
| 566 | ioat_dev = pci_get_bus_and_slot(IOAT_BUS, IOAT_DEVFN); | ||
| 567 | if (!ioat_dev) | ||
| 568 | return -ENODEV; | ||
| 569 | |||
| 570 | for (i = 0; fbd_ioat_list[i].vendor != 0; i++) { | ||
| 571 | if (ioat_dev->vendor == fbd_ioat_list[i].vendor && | ||
| 572 | ioat_dev->device == fbd_ioat_list[i].ioat_dev) { | ||
| 573 | return 0; | ||
| 574 | } | ||
| 575 | } | ||
| 576 | return -ENODEV; | ||
| 577 | } | ||
| 578 | |||
| 579 | int stats_open_generic(struct inode *inode, struct file *fp) | 514 | int stats_open_generic(struct inode *inode, struct file *fp) |
| 580 | { | 515 | { |
| 581 | fp->private_data = inode->i_private; | 516 | fp->private_data = inode->i_private; |
| @@ -617,7 +552,7 @@ static int __init i7300_idle_init(void) | |||
| 617 | cpus_clear(idle_cpumask); | 552 | cpus_clear(idle_cpumask); |
| 618 | total_us = 0; | 553 | total_us = 0; |
| 619 | 554 | ||
| 620 | if (i7300_idle_platform_probe()) | 555 | if (i7300_idle_platform_probe(&fbd_dev, &ioat_dev)) |
| 621 | return -ENODEV; | 556 | return -ENODEV; |
| 622 | 557 | ||
| 623 | if (i7300_idle_thrt_save()) | 558 | if (i7300_idle_thrt_save()) |
diff --git a/include/linux/i7300_idle.h b/include/linux/i7300_idle.h new file mode 100644 index 000000000000..05a80c44513c --- /dev/null +++ b/include/linux/i7300_idle.h | |||
| @@ -0,0 +1,83 @@ | |||
| 1 | |||
| 2 | #ifndef I7300_IDLE_H | ||
| 3 | #define I7300_IDLE_H | ||
| 4 | |||
| 5 | #include <linux/pci.h> | ||
| 6 | |||
| 7 | /* | ||
| 8 | * I/O AT controls (PCI bus 0 device 8 function 0) | ||
| 9 | * DIMM controls (PCI bus 0 device 16 function 1) | ||
| 10 | */ | ||
| 11 | #define IOAT_BUS 0 | ||
| 12 | #define IOAT_DEVFN PCI_DEVFN(8, 0) | ||
| 13 | #define MEMCTL_BUS 0 | ||
| 14 | #define MEMCTL_DEVFN PCI_DEVFN(16, 1) | ||
| 15 | |||
| 16 | struct fbd_ioat { | ||
| 17 | unsigned int vendor; | ||
| 18 | unsigned int ioat_dev; | ||
| 19 | }; | ||
| 20 | |||
| 21 | /* | ||
| 22 | * The i5000 chip-set has the same hooks as the i7300 | ||
| 23 | * but support is disabled by default because this driver | ||
| 24 | * has not been validated on that platform. | ||
| 25 | */ | ||
| 26 | #define SUPPORT_I5000 0 | ||
| 27 | |||
| 28 | static const struct fbd_ioat fbd_ioat_list[] = { | ||
| 29 | {PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT_CNB}, | ||
| 30 | #if SUPPORT_I5000 | ||
| 31 | {PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_IOAT}, | ||
| 32 | #endif | ||
| 33 | {0, 0} | ||
| 34 | }; | ||
| 35 | |||
| 36 | /* table of devices that work with this driver */ | ||
| 37 | static const struct pci_device_id pci_tbl[] = { | ||
| 38 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_FBD_CNB) }, | ||
| 39 | #if SUPPORT_I5000 | ||
| 40 | { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_5000_ERR) }, | ||
| 41 | #endif | ||
| 42 | { } /* Terminating entry */ | ||
| 43 | }; | ||
| 44 | |||
| 45 | /* Check for known platforms with I/O-AT */ | ||
| 46 | static inline int i7300_idle_platform_probe(struct pci_dev **fbd_dev, | ||
| 47 | struct pci_dev **ioat_dev) | ||
| 48 | { | ||
| 49 | int i; | ||
| 50 | struct pci_dev *memdev, *dmadev; | ||
| 51 | |||
| 52 | memdev = pci_get_bus_and_slot(MEMCTL_BUS, MEMCTL_DEVFN); | ||
| 53 | if (!memdev) | ||
| 54 | return -ENODEV; | ||
| 55 | |||
| 56 | for (i = 0; pci_tbl[i].vendor != 0; i++) { | ||
| 57 | if (memdev->vendor == pci_tbl[i].vendor && | ||
| 58 | memdev->device == pci_tbl[i].device) { | ||
| 59 | break; | ||
| 60 | } | ||
| 61 | } | ||
| 62 | if (pci_tbl[i].vendor == 0) | ||
| 63 | return -ENODEV; | ||
| 64 | |||
| 65 | dmadev = pci_get_bus_and_slot(IOAT_BUS, IOAT_DEVFN); | ||
| 66 | if (!dmadev) | ||
| 67 | return -ENODEV; | ||
| 68 | |||
| 69 | for (i = 0; fbd_ioat_list[i].vendor != 0; i++) { | ||
| 70 | if (dmadev->vendor == fbd_ioat_list[i].vendor && | ||
| 71 | dmadev->device == fbd_ioat_list[i].ioat_dev) { | ||
| 72 | if (fbd_dev) | ||
| 73 | *fbd_dev = memdev; | ||
| 74 | if (ioat_dev) | ||
| 75 | *ioat_dev = dmadev; | ||
| 76 | |||
| 77 | return 0; | ||
| 78 | } | ||
| 79 | } | ||
| 80 | return -ENODEV; | ||
| 81 | } | ||
| 82 | |||
| 83 | #endif | ||
