diff options
Diffstat (limited to 'drivers')
308 files changed, 3538 insertions, 2104 deletions
diff --git a/drivers/acpi/acpica/acpredef.h b/drivers/acpi/acpica/acpredef.h index cd80d1dd1950..57bdaf6ffab1 100644 --- a/drivers/acpi/acpica/acpredef.h +++ b/drivers/acpi/acpica/acpredef.h | |||
| @@ -203,8 +203,9 @@ static const union acpi_predefined_info predefined_names[] = | |||
| 203 | {{"_BCT", 1, ACPI_RTYPE_INTEGER}}, | 203 | {{"_BCT", 1, ACPI_RTYPE_INTEGER}}, |
| 204 | {{"_BDN", 0, ACPI_RTYPE_INTEGER}}, | 204 | {{"_BDN", 0, ACPI_RTYPE_INTEGER}}, |
| 205 | {{"_BFS", 1, 0}}, | 205 | {{"_BFS", 1, 0}}, |
| 206 | {{"_BIF", 0, ACPI_RTYPE_PACKAGE}}, /* Fixed-length (9 Int),(4 Str) */ | 206 | {{"_BIF", 0, ACPI_RTYPE_PACKAGE} }, /* Fixed-length (9 Int),(4 Str/Buf) */ |
| 207 | {{{ACPI_PTYPE1_FIXED, ACPI_RTYPE_INTEGER, 9, ACPI_RTYPE_STRING}, 4,0}}, | 207 | {{{ACPI_PTYPE1_FIXED, ACPI_RTYPE_INTEGER, 9, |
| 208 | ACPI_RTYPE_STRING | ACPI_RTYPE_BUFFER}, 4, 0} }, | ||
| 208 | 209 | ||
| 209 | {{"_BIX", 0, ACPI_RTYPE_PACKAGE}}, /* Fixed-length (16 Int),(4 Str) */ | 210 | {{"_BIX", 0, ACPI_RTYPE_PACKAGE}}, /* Fixed-length (16 Int),(4 Str) */ |
| 210 | {{{ACPI_PTYPE1_FIXED, ACPI_RTYPE_INTEGER, 16, ACPI_RTYPE_STRING}, 4, | 211 | {{{ACPI_PTYPE1_FIXED, ACPI_RTYPE_INTEGER, 16, ACPI_RTYPE_STRING}, 4, |
diff --git a/drivers/acpi/blacklist.c b/drivers/acpi/blacklist.c index e56b2a7b53db..23e5a0519af5 100644 --- a/drivers/acpi/blacklist.c +++ b/drivers/acpi/blacklist.c | |||
| @@ -224,6 +224,7 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = { | |||
| 224 | * _OSI(Linux) helps sound | 224 | * _OSI(Linux) helps sound |
| 225 | * DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad R61"), | 225 | * DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad R61"), |
| 226 | * DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T61"), | 226 | * DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T61"), |
| 227 | * T400, T500 | ||
| 227 | * _OSI(Linux) has Linux specific hooks | 228 | * _OSI(Linux) has Linux specific hooks |
| 228 | * DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad X61"), | 229 | * DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad X61"), |
| 229 | * _OSI(Linux) is a NOP: | 230 | * _OSI(Linux) is a NOP: |
| @@ -254,6 +255,22 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = { | |||
| 254 | DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad X61"), | 255 | DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad X61"), |
| 255 | }, | 256 | }, |
| 256 | }, | 257 | }, |
| 258 | { | ||
| 259 | .callback = dmi_enable_osi_linux, | ||
| 260 | .ident = "Lenovo ThinkPad T400", | ||
| 261 | .matches = { | ||
| 262 | DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), | ||
| 263 | DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T400"), | ||
| 264 | }, | ||
| 265 | }, | ||
| 266 | { | ||
| 267 | .callback = dmi_enable_osi_linux, | ||
| 268 | .ident = "Lenovo ThinkPad T500", | ||
| 269 | .matches = { | ||
| 270 | DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), | ||
| 271 | DMI_MATCH(DMI_PRODUCT_VERSION, "ThinkPad T500"), | ||
| 272 | }, | ||
| 273 | }, | ||
| 257 | {} | 274 | {} |
| 258 | }; | 275 | }; |
| 259 | 276 | ||
diff --git a/drivers/acpi/sleep.c b/drivers/acpi/sleep.c index 4cc1b8116e76..5f2c379ab7bf 100644 --- a/drivers/acpi/sleep.c +++ b/drivers/acpi/sleep.c | |||
| @@ -430,6 +430,14 @@ static struct dmi_system_id __initdata acpisleep_dmi_table[] = { | |||
| 430 | }, | 430 | }, |
| 431 | { | 431 | { |
| 432 | .callback = init_set_sci_en_on_resume, | 432 | .callback = init_set_sci_en_on_resume, |
| 433 | .ident = "Hewlett-Packard Compaq Presario C700 Notebook PC", | ||
| 434 | .matches = { | ||
| 435 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | ||
| 436 | DMI_MATCH(DMI_PRODUCT_NAME, "Compaq Presario C700 Notebook PC"), | ||
| 437 | }, | ||
| 438 | }, | ||
| 439 | { | ||
| 440 | .callback = init_set_sci_en_on_resume, | ||
| 433 | .ident = "Hewlett-Packard Compaq Presario CQ40 Notebook PC", | 441 | .ident = "Hewlett-Packard Compaq Presario CQ40 Notebook PC", |
| 434 | .matches = { | 442 | .matches = { |
| 435 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), | 443 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), |
diff --git a/drivers/ata/sata_fsl.c b/drivers/ata/sata_fsl.c index d344db42a002..172b57e6543f 100644 --- a/drivers/ata/sata_fsl.c +++ b/drivers/ata/sata_fsl.c | |||
| @@ -707,34 +707,17 @@ static unsigned int sata_fsl_dev_classify(struct ata_port *ap) | |||
| 707 | return ata_dev_classify(&tf); | 707 | return ata_dev_classify(&tf); |
| 708 | } | 708 | } |
| 709 | 709 | ||
| 710 | static int sata_fsl_prereset(struct ata_link *link, unsigned long deadline) | 710 | static int sata_fsl_hardreset(struct ata_link *link, unsigned int *class, |
| 711 | { | ||
| 712 | /* FIXME: Never skip softreset, sata_fsl_softreset() is | ||
| 713 | * combination of soft and hard resets. sata_fsl_softreset() | ||
| 714 | * needs to be splitted into soft and hard resets. | ||
| 715 | */ | ||
| 716 | return 0; | ||
| 717 | } | ||
| 718 | |||
| 719 | static int sata_fsl_softreset(struct ata_link *link, unsigned int *class, | ||
| 720 | unsigned long deadline) | 711 | unsigned long deadline) |
| 721 | { | 712 | { |
| 722 | struct ata_port *ap = link->ap; | 713 | struct ata_port *ap = link->ap; |
| 723 | struct sata_fsl_port_priv *pp = ap->private_data; | ||
| 724 | struct sata_fsl_host_priv *host_priv = ap->host->private_data; | 714 | struct sata_fsl_host_priv *host_priv = ap->host->private_data; |
| 725 | void __iomem *hcr_base = host_priv->hcr_base; | 715 | void __iomem *hcr_base = host_priv->hcr_base; |
| 726 | int pmp = sata_srst_pmp(link); | ||
| 727 | u32 temp; | 716 | u32 temp; |
| 728 | struct ata_taskfile tf; | ||
| 729 | u8 *cfis; | ||
| 730 | u32 Serror; | ||
| 731 | int i = 0; | 717 | int i = 0; |
| 732 | unsigned long start_jiffies; | 718 | unsigned long start_jiffies; |
| 733 | 719 | ||
| 734 | DPRINTK("in xx_softreset\n"); | 720 | DPRINTK("in xx_hardreset\n"); |
| 735 | |||
| 736 | if (pmp != SATA_PMP_CTRL_PORT) | ||
| 737 | goto issue_srst; | ||
| 738 | 721 | ||
| 739 | try_offline_again: | 722 | try_offline_again: |
| 740 | /* | 723 | /* |
| @@ -749,7 +732,7 @@ try_offline_again: | |||
| 749 | 732 | ||
| 750 | if (temp & ONLINE) { | 733 | if (temp & ONLINE) { |
| 751 | ata_port_printk(ap, KERN_ERR, | 734 | ata_port_printk(ap, KERN_ERR, |
| 752 | "Softreset failed, not off-lined %d\n", i); | 735 | "Hardreset failed, not off-lined %d\n", i); |
| 753 | 736 | ||
| 754 | /* | 737 | /* |
| 755 | * Try to offline controller atleast twice | 738 | * Try to offline controller atleast twice |
| @@ -761,7 +744,7 @@ try_offline_again: | |||
| 761 | goto try_offline_again; | 744 | goto try_offline_again; |
| 762 | } | 745 | } |
| 763 | 746 | ||
| 764 | DPRINTK("softreset, controller off-lined\n"); | 747 | DPRINTK("hardreset, controller off-lined\n"); |
| 765 | VPRINTK("HStatus = 0x%x\n", ioread32(hcr_base + HSTATUS)); | 748 | VPRINTK("HStatus = 0x%x\n", ioread32(hcr_base + HSTATUS)); |
| 766 | VPRINTK("HControl = 0x%x\n", ioread32(hcr_base + HCONTROL)); | 749 | VPRINTK("HControl = 0x%x\n", ioread32(hcr_base + HCONTROL)); |
| 767 | 750 | ||
| @@ -786,11 +769,11 @@ try_offline_again: | |||
| 786 | 769 | ||
| 787 | if (!(temp & ONLINE)) { | 770 | if (!(temp & ONLINE)) { |
| 788 | ata_port_printk(ap, KERN_ERR, | 771 | ata_port_printk(ap, KERN_ERR, |
| 789 | "Softreset failed, not on-lined\n"); | 772 | "Hardreset failed, not on-lined\n"); |
| 790 | goto err; | 773 | goto err; |
| 791 | } | 774 | } |
| 792 | 775 | ||
| 793 | DPRINTK("softreset, controller off-lined & on-lined\n"); | 776 | DPRINTK("hardreset, controller off-lined & on-lined\n"); |
| 794 | VPRINTK("HStatus = 0x%x\n", ioread32(hcr_base + HSTATUS)); | 777 | VPRINTK("HStatus = 0x%x\n", ioread32(hcr_base + HSTATUS)); |
| 795 | VPRINTK("HControl = 0x%x\n", ioread32(hcr_base + HCONTROL)); | 778 | VPRINTK("HControl = 0x%x\n", ioread32(hcr_base + HCONTROL)); |
| 796 | 779 | ||
| @@ -806,7 +789,7 @@ try_offline_again: | |||
| 806 | "No Device OR PHYRDY change,Hstatus = 0x%x\n", | 789 | "No Device OR PHYRDY change,Hstatus = 0x%x\n", |
| 807 | ioread32(hcr_base + HSTATUS)); | 790 | ioread32(hcr_base + HSTATUS)); |
| 808 | *class = ATA_DEV_NONE; | 791 | *class = ATA_DEV_NONE; |
| 809 | goto out; | 792 | return 0; |
| 810 | } | 793 | } |
| 811 | 794 | ||
| 812 | /* | 795 | /* |
| @@ -819,11 +802,44 @@ try_offline_again: | |||
| 819 | if ((temp & 0xFF) != 0x18) { | 802 | if ((temp & 0xFF) != 0x18) { |
| 820 | ata_port_printk(ap, KERN_WARNING, "No Signature Update\n"); | 803 | ata_port_printk(ap, KERN_WARNING, "No Signature Update\n"); |
| 821 | *class = ATA_DEV_NONE; | 804 | *class = ATA_DEV_NONE; |
| 822 | goto out; | 805 | goto do_followup_srst; |
| 823 | } else { | 806 | } else { |
| 824 | ata_port_printk(ap, KERN_INFO, | 807 | ata_port_printk(ap, KERN_INFO, |
| 825 | "Signature Update detected @ %d msecs\n", | 808 | "Signature Update detected @ %d msecs\n", |
| 826 | jiffies_to_msecs(jiffies - start_jiffies)); | 809 | jiffies_to_msecs(jiffies - start_jiffies)); |
| 810 | *class = sata_fsl_dev_classify(ap); | ||
| 811 | return 0; | ||
| 812 | } | ||
| 813 | |||
| 814 | do_followup_srst: | ||
| 815 | /* | ||
| 816 | * request libATA to perform follow-up softreset | ||
| 817 | */ | ||
| 818 | return -EAGAIN; | ||
| 819 | |||
| 820 | err: | ||
| 821 | return -EIO; | ||
| 822 | } | ||
| 823 | |||
| 824 | static int sata_fsl_softreset(struct ata_link *link, unsigned int *class, | ||
| 825 | unsigned long deadline) | ||
| 826 | { | ||
| 827 | struct ata_port *ap = link->ap; | ||
| 828 | struct sata_fsl_port_priv *pp = ap->private_data; | ||
| 829 | struct sata_fsl_host_priv *host_priv = ap->host->private_data; | ||
| 830 | void __iomem *hcr_base = host_priv->hcr_base; | ||
| 831 | int pmp = sata_srst_pmp(link); | ||
| 832 | u32 temp; | ||
| 833 | struct ata_taskfile tf; | ||
| 834 | u8 *cfis; | ||
| 835 | u32 Serror; | ||
| 836 | |||
| 837 | DPRINTK("in xx_softreset\n"); | ||
| 838 | |||
| 839 | if (ata_link_offline(link)) { | ||
| 840 | DPRINTK("PHY reports no device\n"); | ||
| 841 | *class = ATA_DEV_NONE; | ||
| 842 | return 0; | ||
| 827 | } | 843 | } |
| 828 | 844 | ||
| 829 | /* | 845 | /* |
| @@ -834,7 +850,6 @@ try_offline_again: | |||
| 834 | * reached here, we can send a command to the target device | 850 | * reached here, we can send a command to the target device |
| 835 | */ | 851 | */ |
| 836 | 852 | ||
| 837 | issue_srst: | ||
| 838 | DPRINTK("Sending SRST/device reset\n"); | 853 | DPRINTK("Sending SRST/device reset\n"); |
| 839 | 854 | ||
| 840 | ata_tf_init(link->device, &tf); | 855 | ata_tf_init(link->device, &tf); |
| @@ -860,6 +875,8 @@ issue_srst: | |||
| 860 | ioread32(CA + hcr_base), ioread32(CC + hcr_base)); | 875 | ioread32(CA + hcr_base), ioread32(CC + hcr_base)); |
| 861 | 876 | ||
| 862 | iowrite32(0xFFFF, CC + hcr_base); | 877 | iowrite32(0xFFFF, CC + hcr_base); |
| 878 | if (pmp != SATA_PMP_CTRL_PORT) | ||
| 879 | iowrite32(pmp, CQPMP + hcr_base); | ||
| 863 | iowrite32(1, CQ + hcr_base); | 880 | iowrite32(1, CQ + hcr_base); |
| 864 | 881 | ||
| 865 | temp = ata_wait_register(CQ + hcr_base, 0x1, 0x1, 1, 5000); | 882 | temp = ata_wait_register(CQ + hcr_base, 0x1, 0x1, 1, 5000); |
| @@ -926,7 +943,6 @@ issue_srst: | |||
| 926 | VPRINTK("cereg = 0x%x\n", ioread32(hcr_base + CE)); | 943 | VPRINTK("cereg = 0x%x\n", ioread32(hcr_base + CE)); |
| 927 | } | 944 | } |
| 928 | 945 | ||
| 929 | out: | ||
| 930 | return 0; | 946 | return 0; |
| 931 | 947 | ||
| 932 | err: | 948 | err: |
| @@ -988,18 +1004,6 @@ static void sata_fsl_error_intr(struct ata_port *ap) | |||
| 988 | ehi->err_mask |= AC_ERR_ATA_BUS; | 1004 | ehi->err_mask |= AC_ERR_ATA_BUS; |
| 989 | ehi->action |= ATA_EH_SOFTRESET; | 1005 | ehi->action |= ATA_EH_SOFTRESET; |
| 990 | 1006 | ||
| 991 | /* | ||
| 992 | * Ignore serror in case of fatal errors as we always want | ||
| 993 | * to do a soft-reset of the FSL SATA controller. Analyzing | ||
| 994 | * serror may cause libata to schedule a hard-reset action, | ||
| 995 | * and hard-reset currently does not do controller | ||
| 996 | * offline/online, causing command timeouts and leads to an | ||
| 997 | * un-recoverable state, hence make libATA ignore | ||
| 998 | * autopsy in case of fatal errors. | ||
| 999 | */ | ||
| 1000 | |||
| 1001 | ehi->flags |= ATA_EHI_NO_AUTOPSY; | ||
| 1002 | |||
| 1003 | freeze = 1; | 1007 | freeze = 1; |
| 1004 | } | 1008 | } |
| 1005 | 1009 | ||
| @@ -1267,8 +1271,8 @@ static struct ata_port_operations sata_fsl_ops = { | |||
| 1267 | 1271 | ||
| 1268 | .freeze = sata_fsl_freeze, | 1272 | .freeze = sata_fsl_freeze, |
| 1269 | .thaw = sata_fsl_thaw, | 1273 | .thaw = sata_fsl_thaw, |
| 1270 | .prereset = sata_fsl_prereset, | ||
| 1271 | .softreset = sata_fsl_softreset, | 1274 | .softreset = sata_fsl_softreset, |
| 1275 | .hardreset = sata_fsl_hardreset, | ||
| 1272 | .pmp_softreset = sata_fsl_softreset, | 1276 | .pmp_softreset = sata_fsl_softreset, |
| 1273 | .error_handler = sata_fsl_error_handler, | 1277 | .error_handler = sata_fsl_error_handler, |
| 1274 | .post_internal_cmd = sata_fsl_post_internal_cmd, | 1278 | .post_internal_cmd = sata_fsl_post_internal_cmd, |
diff --git a/drivers/base/power/runtime.c b/drivers/base/power/runtime.c index a770498a74ec..846d89e3d122 100644 --- a/drivers/base/power/runtime.c +++ b/drivers/base/power/runtime.c | |||
| @@ -328,11 +328,11 @@ int __pm_runtime_resume(struct device *dev, bool from_wq) | |||
| 328 | * necessary. | 328 | * necessary. |
| 329 | */ | 329 | */ |
| 330 | parent = dev->parent; | 330 | parent = dev->parent; |
| 331 | spin_unlock_irq(&dev->power.lock); | 331 | spin_unlock(&dev->power.lock); |
| 332 | 332 | ||
| 333 | pm_runtime_get_noresume(parent); | 333 | pm_runtime_get_noresume(parent); |
| 334 | 334 | ||
| 335 | spin_lock_irq(&parent->power.lock); | 335 | spin_lock(&parent->power.lock); |
| 336 | /* | 336 | /* |
| 337 | * We can resume if the parent's run-time PM is disabled or it | 337 | * We can resume if the parent's run-time PM is disabled or it |
| 338 | * is set to ignore children. | 338 | * is set to ignore children. |
| @@ -343,9 +343,9 @@ int __pm_runtime_resume(struct device *dev, bool from_wq) | |||
| 343 | if (parent->power.runtime_status != RPM_ACTIVE) | 343 | if (parent->power.runtime_status != RPM_ACTIVE) |
| 344 | retval = -EBUSY; | 344 | retval = -EBUSY; |
| 345 | } | 345 | } |
| 346 | spin_unlock_irq(&parent->power.lock); | 346 | spin_unlock(&parent->power.lock); |
| 347 | 347 | ||
| 348 | spin_lock_irq(&dev->power.lock); | 348 | spin_lock(&dev->power.lock); |
| 349 | if (retval) | 349 | if (retval) |
| 350 | goto out; | 350 | goto out; |
| 351 | goto repeat; | 351 | goto repeat; |
| @@ -777,7 +777,7 @@ int __pm_runtime_set_status(struct device *dev, unsigned int status) | |||
| 777 | } | 777 | } |
| 778 | 778 | ||
| 779 | if (parent) { | 779 | if (parent) { |
| 780 | spin_lock_irq(&parent->power.lock); | 780 | spin_lock(&parent->power.lock); |
| 781 | 781 | ||
| 782 | /* | 782 | /* |
| 783 | * It is invalid to put an active child under a parent that is | 783 | * It is invalid to put an active child under a parent that is |
| @@ -793,7 +793,7 @@ int __pm_runtime_set_status(struct device *dev, unsigned int status) | |||
| 793 | atomic_inc(&parent->power.child_count); | 793 | atomic_inc(&parent->power.child_count); |
| 794 | } | 794 | } |
| 795 | 795 | ||
| 796 | spin_unlock_irq(&parent->power.lock); | 796 | spin_unlock(&parent->power.lock); |
| 797 | 797 | ||
| 798 | if (error) | 798 | if (error) |
| 799 | goto out; | 799 | goto out; |
diff --git a/drivers/block/aoe/aoecmd.c b/drivers/block/aoe/aoecmd.c index 965ece2c7e4d..13bb69d2abb3 100644 --- a/drivers/block/aoe/aoecmd.c +++ b/drivers/block/aoe/aoecmd.c | |||
| @@ -735,6 +735,21 @@ diskstats(struct gendisk *disk, struct bio *bio, ulong duration, sector_t sector | |||
| 735 | part_stat_unlock(); | 735 | part_stat_unlock(); |
| 736 | } | 736 | } |
| 737 | 737 | ||
| 738 | /* | ||
| 739 | * Ensure we don't create aliases in VI caches | ||
| 740 | */ | ||
| 741 | static inline void | ||
| 742 | killalias(struct bio *bio) | ||
| 743 | { | ||
| 744 | struct bio_vec *bv; | ||
| 745 | int i; | ||
| 746 | |||
| 747 | if (bio_data_dir(bio) == READ) | ||
| 748 | __bio_for_each_segment(bv, bio, i, 0) { | ||
| 749 | flush_dcache_page(bv->bv_page); | ||
| 750 | } | ||
| 751 | } | ||
| 752 | |||
| 738 | void | 753 | void |
| 739 | aoecmd_ata_rsp(struct sk_buff *skb) | 754 | aoecmd_ata_rsp(struct sk_buff *skb) |
| 740 | { | 755 | { |
| @@ -853,8 +868,12 @@ aoecmd_ata_rsp(struct sk_buff *skb) | |||
| 853 | 868 | ||
| 854 | if (buf && --buf->nframesout == 0 && buf->resid == 0) { | 869 | if (buf && --buf->nframesout == 0 && buf->resid == 0) { |
| 855 | diskstats(d->gd, buf->bio, jiffies - buf->stime, buf->sector); | 870 | diskstats(d->gd, buf->bio, jiffies - buf->stime, buf->sector); |
| 856 | n = (buf->flags & BUFFL_FAIL) ? -EIO : 0; | 871 | if (buf->flags & BUFFL_FAIL) |
| 857 | bio_endio(buf->bio, n); | 872 | bio_endio(buf->bio, -EIO); |
| 873 | else { | ||
| 874 | killalias(buf->bio); | ||
| 875 | bio_endio(buf->bio, 0); | ||
| 876 | } | ||
| 858 | mempool_free(buf, d->bufpool); | 877 | mempool_free(buf, d->bufpool); |
| 859 | } | 878 | } |
| 860 | 879 | ||
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c index 6399e5090df4..92b126394fa1 100644 --- a/drivers/block/cciss.c +++ b/drivers/block/cciss.c | |||
| @@ -482,7 +482,7 @@ static ssize_t host_store_rescan(struct device *dev, | |||
| 482 | 482 | ||
| 483 | return count; | 483 | return count; |
| 484 | } | 484 | } |
| 485 | DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan); | 485 | static DEVICE_ATTR(rescan, S_IWUSR, NULL, host_store_rescan); |
| 486 | 486 | ||
| 487 | static ssize_t dev_show_unique_id(struct device *dev, | 487 | static ssize_t dev_show_unique_id(struct device *dev, |
| 488 | struct device_attribute *attr, | 488 | struct device_attribute *attr, |
| @@ -512,7 +512,7 @@ static ssize_t dev_show_unique_id(struct device *dev, | |||
| 512 | sn[8], sn[9], sn[10], sn[11], | 512 | sn[8], sn[9], sn[10], sn[11], |
| 513 | sn[12], sn[13], sn[14], sn[15]); | 513 | sn[12], sn[13], sn[14], sn[15]); |
| 514 | } | 514 | } |
| 515 | DEVICE_ATTR(unique_id, S_IRUGO, dev_show_unique_id, NULL); | 515 | static DEVICE_ATTR(unique_id, S_IRUGO, dev_show_unique_id, NULL); |
| 516 | 516 | ||
| 517 | static ssize_t dev_show_vendor(struct device *dev, | 517 | static ssize_t dev_show_vendor(struct device *dev, |
| 518 | struct device_attribute *attr, | 518 | struct device_attribute *attr, |
| @@ -536,7 +536,7 @@ static ssize_t dev_show_vendor(struct device *dev, | |||
| 536 | else | 536 | else |
| 537 | return snprintf(buf, sizeof(vendor) + 1, "%s\n", drv->vendor); | 537 | return snprintf(buf, sizeof(vendor) + 1, "%s\n", drv->vendor); |
| 538 | } | 538 | } |
| 539 | DEVICE_ATTR(vendor, S_IRUGO, dev_show_vendor, NULL); | 539 | static DEVICE_ATTR(vendor, S_IRUGO, dev_show_vendor, NULL); |
| 540 | 540 | ||
| 541 | static ssize_t dev_show_model(struct device *dev, | 541 | static ssize_t dev_show_model(struct device *dev, |
| 542 | struct device_attribute *attr, | 542 | struct device_attribute *attr, |
| @@ -560,7 +560,7 @@ static ssize_t dev_show_model(struct device *dev, | |||
| 560 | else | 560 | else |
| 561 | return snprintf(buf, sizeof(model) + 1, "%s\n", drv->model); | 561 | return snprintf(buf, sizeof(model) + 1, "%s\n", drv->model); |
| 562 | } | 562 | } |
| 563 | DEVICE_ATTR(model, S_IRUGO, dev_show_model, NULL); | 563 | static DEVICE_ATTR(model, S_IRUGO, dev_show_model, NULL); |
| 564 | 564 | ||
| 565 | static ssize_t dev_show_rev(struct device *dev, | 565 | static ssize_t dev_show_rev(struct device *dev, |
| 566 | struct device_attribute *attr, | 566 | struct device_attribute *attr, |
| @@ -584,7 +584,7 @@ static ssize_t dev_show_rev(struct device *dev, | |||
| 584 | else | 584 | else |
| 585 | return snprintf(buf, sizeof(rev) + 1, "%s\n", drv->rev); | 585 | return snprintf(buf, sizeof(rev) + 1, "%s\n", drv->rev); |
| 586 | } | 586 | } |
| 587 | DEVICE_ATTR(rev, S_IRUGO, dev_show_rev, NULL); | 587 | static DEVICE_ATTR(rev, S_IRUGO, dev_show_rev, NULL); |
| 588 | 588 | ||
| 589 | static ssize_t cciss_show_lunid(struct device *dev, | 589 | static ssize_t cciss_show_lunid(struct device *dev, |
| 590 | struct device_attribute *attr, char *buf) | 590 | struct device_attribute *attr, char *buf) |
| @@ -609,7 +609,7 @@ static ssize_t cciss_show_lunid(struct device *dev, | |||
| 609 | lunid[0], lunid[1], lunid[2], lunid[3], | 609 | lunid[0], lunid[1], lunid[2], lunid[3], |
| 610 | lunid[4], lunid[5], lunid[6], lunid[7]); | 610 | lunid[4], lunid[5], lunid[6], lunid[7]); |
| 611 | } | 611 | } |
| 612 | DEVICE_ATTR(lunid, S_IRUGO, cciss_show_lunid, NULL); | 612 | static DEVICE_ATTR(lunid, S_IRUGO, cciss_show_lunid, NULL); |
| 613 | 613 | ||
| 614 | static ssize_t cciss_show_raid_level(struct device *dev, | 614 | static ssize_t cciss_show_raid_level(struct device *dev, |
| 615 | struct device_attribute *attr, char *buf) | 615 | struct device_attribute *attr, char *buf) |
| @@ -632,7 +632,7 @@ static ssize_t cciss_show_raid_level(struct device *dev, | |||
| 632 | return snprintf(buf, strlen(raid_label[raid]) + 7, "RAID %s\n", | 632 | return snprintf(buf, strlen(raid_label[raid]) + 7, "RAID %s\n", |
| 633 | raid_label[raid]); | 633 | raid_label[raid]); |
| 634 | } | 634 | } |
| 635 | DEVICE_ATTR(raid_level, S_IRUGO, cciss_show_raid_level, NULL); | 635 | static DEVICE_ATTR(raid_level, S_IRUGO, cciss_show_raid_level, NULL); |
| 636 | 636 | ||
| 637 | static ssize_t cciss_show_usage_count(struct device *dev, | 637 | static ssize_t cciss_show_usage_count(struct device *dev, |
| 638 | struct device_attribute *attr, char *buf) | 638 | struct device_attribute *attr, char *buf) |
| @@ -651,7 +651,7 @@ static ssize_t cciss_show_usage_count(struct device *dev, | |||
| 651 | spin_unlock_irqrestore(CCISS_LOCK(h->ctlr), flags); | 651 | spin_unlock_irqrestore(CCISS_LOCK(h->ctlr), flags); |
| 652 | return snprintf(buf, 20, "%d\n", count); | 652 | return snprintf(buf, 20, "%d\n", count); |
| 653 | } | 653 | } |
| 654 | DEVICE_ATTR(usage_count, S_IRUGO, cciss_show_usage_count, NULL); | 654 | static DEVICE_ATTR(usage_count, S_IRUGO, cciss_show_usage_count, NULL); |
| 655 | 655 | ||
| 656 | static struct attribute *cciss_host_attrs[] = { | 656 | static struct attribute *cciss_host_attrs[] = { |
| 657 | &dev_attr_rescan.attr, | 657 | &dev_attr_rescan.attr, |
diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index 7ba91aa3fe8b..44bc8bbabf54 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c | |||
| @@ -591,6 +591,7 @@ static int btusb_close(struct hci_dev *hdev) | |||
| 591 | return 0; | 591 | return 0; |
| 592 | 592 | ||
| 593 | cancel_work_sync(&data->work); | 593 | cancel_work_sync(&data->work); |
| 594 | cancel_work_sync(&data->waker); | ||
| 594 | 595 | ||
| 595 | clear_bit(BTUSB_ISOC_RUNNING, &data->flags); | 596 | clear_bit(BTUSB_ISOC_RUNNING, &data->flags); |
| 596 | clear_bit(BTUSB_BULK_RUNNING, &data->flags); | 597 | clear_bit(BTUSB_BULK_RUNNING, &data->flags); |
| @@ -599,11 +600,13 @@ static int btusb_close(struct hci_dev *hdev) | |||
| 599 | btusb_stop_traffic(data); | 600 | btusb_stop_traffic(data); |
| 600 | err = usb_autopm_get_interface(data->intf); | 601 | err = usb_autopm_get_interface(data->intf); |
| 601 | if (err < 0) | 602 | if (err < 0) |
| 602 | return 0; | 603 | goto failed; |
| 603 | 604 | ||
| 604 | data->intf->needs_remote_wakeup = 0; | 605 | data->intf->needs_remote_wakeup = 0; |
| 605 | usb_autopm_put_interface(data->intf); | 606 | usb_autopm_put_interface(data->intf); |
| 606 | 607 | ||
| 608 | failed: | ||
| 609 | usb_scuttle_anchored_urbs(&data->deferred); | ||
| 607 | return 0; | 610 | return 0; |
| 608 | } | 611 | } |
| 609 | 612 | ||
diff --git a/drivers/char/agp/intel-agp.c b/drivers/char/agp/intel-agp.c index 4068467ce7b9..3cb56a049e24 100644 --- a/drivers/char/agp/intel-agp.c +++ b/drivers/char/agp/intel-agp.c | |||
| @@ -62,6 +62,7 @@ | |||
| 62 | #define PCI_DEVICE_ID_INTEL_IGDNG_D_IG 0x0042 | 62 | #define PCI_DEVICE_ID_INTEL_IGDNG_D_IG 0x0042 |
| 63 | #define PCI_DEVICE_ID_INTEL_IGDNG_M_HB 0x0044 | 63 | #define PCI_DEVICE_ID_INTEL_IGDNG_M_HB 0x0044 |
| 64 | #define PCI_DEVICE_ID_INTEL_IGDNG_MA_HB 0x0062 | 64 | #define PCI_DEVICE_ID_INTEL_IGDNG_MA_HB 0x0062 |
| 65 | #define PCI_DEVICE_ID_INTEL_IGDNG_MC2_HB 0x006a | ||
| 65 | #define PCI_DEVICE_ID_INTEL_IGDNG_M_IG 0x0046 | 66 | #define PCI_DEVICE_ID_INTEL_IGDNG_M_IG 0x0046 |
| 66 | 67 | ||
| 67 | /* cover 915 and 945 variants */ | 68 | /* cover 915 and 945 variants */ |
| @@ -96,7 +97,8 @@ | |||
| 96 | agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_B43_HB || \ | 97 | agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_B43_HB || \ |
| 97 | agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_IGDNG_D_HB || \ | 98 | agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_IGDNG_D_HB || \ |
| 98 | agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_IGDNG_M_HB || \ | 99 | agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_IGDNG_M_HB || \ |
| 99 | agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_IGDNG_MA_HB) | 100 | agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_IGDNG_MA_HB || \ |
| 101 | agp_bridge->dev->device == PCI_DEVICE_ID_INTEL_IGDNG_MC2_HB) | ||
| 100 | 102 | ||
| 101 | extern int agp_memory_reserved; | 103 | extern int agp_memory_reserved; |
| 102 | 104 | ||
| @@ -1161,12 +1163,6 @@ static int intel_i915_configure(void) | |||
| 1161 | 1163 | ||
| 1162 | intel_i9xx_setup_flush(); | 1164 | intel_i9xx_setup_flush(); |
| 1163 | 1165 | ||
| 1164 | #ifdef USE_PCI_DMA_API | ||
| 1165 | if (pci_set_dma_mask(intel_private.pcidev, DMA_BIT_MASK(36))) | ||
| 1166 | dev_err(&intel_private.pcidev->dev, | ||
| 1167 | "set gfx device dma mask 36bit failed!\n"); | ||
| 1168 | #endif | ||
| 1169 | |||
| 1170 | return 0; | 1166 | return 0; |
| 1171 | } | 1167 | } |
| 1172 | 1168 | ||
| @@ -1364,6 +1360,7 @@ static void intel_i965_get_gtt_range(int *gtt_offset, int *gtt_size) | |||
| 1364 | case PCI_DEVICE_ID_INTEL_IGDNG_D_HB: | 1360 | case PCI_DEVICE_ID_INTEL_IGDNG_D_HB: |
| 1365 | case PCI_DEVICE_ID_INTEL_IGDNG_M_HB: | 1361 | case PCI_DEVICE_ID_INTEL_IGDNG_M_HB: |
| 1366 | case PCI_DEVICE_ID_INTEL_IGDNG_MA_HB: | 1362 | case PCI_DEVICE_ID_INTEL_IGDNG_MA_HB: |
| 1363 | case PCI_DEVICE_ID_INTEL_IGDNG_MC2_HB: | ||
| 1367 | *gtt_offset = *gtt_size = MB(2); | 1364 | *gtt_offset = *gtt_size = MB(2); |
| 1368 | break; | 1365 | break; |
| 1369 | default: | 1366 | default: |
| @@ -2365,6 +2362,8 @@ static const struct intel_driver_description { | |||
| 2365 | "IGDNG/M", NULL, &intel_i965_driver }, | 2362 | "IGDNG/M", NULL, &intel_i965_driver }, |
| 2366 | { PCI_DEVICE_ID_INTEL_IGDNG_MA_HB, PCI_DEVICE_ID_INTEL_IGDNG_M_IG, 0, | 2363 | { PCI_DEVICE_ID_INTEL_IGDNG_MA_HB, PCI_DEVICE_ID_INTEL_IGDNG_M_IG, 0, |
| 2367 | "IGDNG/MA", NULL, &intel_i965_driver }, | 2364 | "IGDNG/MA", NULL, &intel_i965_driver }, |
| 2365 | { PCI_DEVICE_ID_INTEL_IGDNG_MC2_HB, PCI_DEVICE_ID_INTEL_IGDNG_M_IG, 0, | ||
| 2366 | "IGDNG/MC2", NULL, &intel_i965_driver }, | ||
| 2368 | { 0, 0, 0, NULL, NULL, NULL } | 2367 | { 0, 0, 0, NULL, NULL, NULL } |
| 2369 | }; | 2368 | }; |
| 2370 | 2369 | ||
| @@ -2456,6 +2455,11 @@ static int __devinit agp_intel_probe(struct pci_dev *pdev, | |||
| 2456 | &bridge->mode); | 2455 | &bridge->mode); |
| 2457 | } | 2456 | } |
| 2458 | 2457 | ||
| 2458 | if (bridge->driver->mask_memory == intel_i965_mask_memory) | ||
| 2459 | if (pci_set_dma_mask(intel_private.pcidev, DMA_BIT_MASK(36))) | ||
| 2460 | dev_err(&intel_private.pcidev->dev, | ||
| 2461 | "set gfx device dma mask 36bit failed!\n"); | ||
| 2462 | |||
| 2459 | pci_set_drvdata(pdev, bridge); | 2463 | pci_set_drvdata(pdev, bridge); |
| 2460 | return agp_add_bridge(bridge); | 2464 | return agp_add_bridge(bridge); |
| 2461 | } | 2465 | } |
| @@ -2561,6 +2565,7 @@ static struct pci_device_id agp_intel_pci_table[] = { | |||
| 2561 | ID(PCI_DEVICE_ID_INTEL_IGDNG_D_HB), | 2565 | ID(PCI_DEVICE_ID_INTEL_IGDNG_D_HB), |
| 2562 | ID(PCI_DEVICE_ID_INTEL_IGDNG_M_HB), | 2566 | ID(PCI_DEVICE_ID_INTEL_IGDNG_M_HB), |
| 2563 | ID(PCI_DEVICE_ID_INTEL_IGDNG_MA_HB), | 2567 | ID(PCI_DEVICE_ID_INTEL_IGDNG_MA_HB), |
| 2568 | ID(PCI_DEVICE_ID_INTEL_IGDNG_MC2_HB), | ||
| 2564 | { } | 2569 | { } |
| 2565 | }; | 2570 | }; |
| 2566 | 2571 | ||
diff --git a/drivers/char/keyboard.c b/drivers/char/keyboard.c index 737be953cc58..950837cf9e9c 100644 --- a/drivers/char/keyboard.c +++ b/drivers/char/keyboard.c | |||
| @@ -1249,7 +1249,7 @@ static void kbd_keycode(unsigned int keycode, int down, int hw_raw) | |||
| 1249 | 1249 | ||
| 1250 | if (keycode >= NR_KEYS) | 1250 | if (keycode >= NR_KEYS) |
| 1251 | if (keycode >= KEY_BRL_DOT1 && keycode <= KEY_BRL_DOT8) | 1251 | if (keycode >= KEY_BRL_DOT1 && keycode <= KEY_BRL_DOT8) |
| 1252 | keysym = K(KT_BRL, keycode - KEY_BRL_DOT1 + 1); | 1252 | keysym = U(K(KT_BRL, keycode - KEY_BRL_DOT1 + 1)); |
| 1253 | else | 1253 | else |
| 1254 | return; | 1254 | return; |
| 1255 | else | 1255 | else |
diff --git a/drivers/char/tty_port.c b/drivers/char/tty_port.c index a4bbb28f10be..c63f3d33914a 100644 --- a/drivers/char/tty_port.c +++ b/drivers/char/tty_port.c | |||
| @@ -219,8 +219,14 @@ int tty_port_block_til_ready(struct tty_port *port, | |||
| 219 | 219 | ||
| 220 | /* if non-blocking mode is set we can pass directly to open unless | 220 | /* if non-blocking mode is set we can pass directly to open unless |
| 221 | the port has just hung up or is in another error state */ | 221 | the port has just hung up or is in another error state */ |
| 222 | if ((filp->f_flags & O_NONBLOCK) || | 222 | if (tty->flags & (1 << TTY_IO_ERROR)) { |
| 223 | (tty->flags & (1 << TTY_IO_ERROR))) { | 223 | port->flags |= ASYNC_NORMAL_ACTIVE; |
| 224 | return 0; | ||
| 225 | } | ||
| 226 | if (filp->f_flags & O_NONBLOCK) { | ||
| 227 | /* Indicate we are open */ | ||
| 228 | if (tty->termios->c_cflag & CBAUD) | ||
| 229 | tty_port_raise_dtr_rts(port); | ||
| 224 | port->flags |= ASYNC_NORMAL_ACTIVE; | 230 | port->flags |= ASYNC_NORMAL_ACTIVE; |
| 225 | return 0; | 231 | return 0; |
| 226 | } | 232 | } |
diff --git a/drivers/char/vt_ioctl.c b/drivers/char/vt_ioctl.c index ed86d3bf249a..6aa10284104a 100644 --- a/drivers/char/vt_ioctl.c +++ b/drivers/char/vt_ioctl.c | |||
| @@ -103,8 +103,8 @@ void vt_event_post(unsigned int event, unsigned int old, unsigned int new) | |||
| 103 | ve->event.event = event; | 103 | ve->event.event = event; |
| 104 | /* kernel view is consoles 0..n-1, user space view is | 104 | /* kernel view is consoles 0..n-1, user space view is |
| 105 | console 1..n with 0 meaning current, so we must bias */ | 105 | console 1..n with 0 meaning current, so we must bias */ |
| 106 | ve->event.old = old + 1; | 106 | ve->event.oldev = old + 1; |
| 107 | ve->event.new = new + 1; | 107 | ve->event.newev = new + 1; |
| 108 | wake = 1; | 108 | wake = 1; |
| 109 | ve->done = 1; | 109 | ve->done = 1; |
| 110 | } | 110 | } |
| @@ -186,7 +186,7 @@ int vt_waitactive(int n) | |||
| 186 | vt_event_wait(&vw); | 186 | vt_event_wait(&vw); |
| 187 | if (vw.done == 0) | 187 | if (vw.done == 0) |
| 188 | return -EINTR; | 188 | return -EINTR; |
| 189 | } while (vw.event.new != n); | 189 | } while (vw.event.newev != n); |
| 190 | return 0; | 190 | return 0; |
| 191 | } | 191 | } |
| 192 | 192 | ||
diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index 3938c7817095..ff57c40e9b8b 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c | |||
| @@ -41,7 +41,7 @@ static struct cpufreq_driver *cpufreq_driver; | |||
| 41 | static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data); | 41 | static DEFINE_PER_CPU(struct cpufreq_policy *, cpufreq_cpu_data); |
| 42 | #ifdef CONFIG_HOTPLUG_CPU | 42 | #ifdef CONFIG_HOTPLUG_CPU |
| 43 | /* This one keeps track of the previously set governor of a removed CPU */ | 43 | /* This one keeps track of the previously set governor of a removed CPU */ |
| 44 | static DEFINE_PER_CPU(struct cpufreq_governor *, cpufreq_cpu_governor); | 44 | static DEFINE_PER_CPU(char[CPUFREQ_NAME_LEN], cpufreq_cpu_governor); |
| 45 | #endif | 45 | #endif |
| 46 | static DEFINE_SPINLOCK(cpufreq_driver_lock); | 46 | static DEFINE_SPINLOCK(cpufreq_driver_lock); |
| 47 | 47 | ||
| @@ -774,10 +774,12 @@ int cpufreq_add_dev_policy(unsigned int cpu, struct cpufreq_policy *policy, | |||
| 774 | #ifdef CONFIG_SMP | 774 | #ifdef CONFIG_SMP |
| 775 | unsigned long flags; | 775 | unsigned long flags; |
| 776 | unsigned int j; | 776 | unsigned int j; |
| 777 | |||
| 778 | #ifdef CONFIG_HOTPLUG_CPU | 777 | #ifdef CONFIG_HOTPLUG_CPU |
| 779 | if (per_cpu(cpufreq_cpu_governor, cpu)) { | 778 | struct cpufreq_governor *gov; |
| 780 | policy->governor = per_cpu(cpufreq_cpu_governor, cpu); | 779 | |
| 780 | gov = __find_governor(per_cpu(cpufreq_cpu_governor, cpu)); | ||
| 781 | if (gov) { | ||
| 782 | policy->governor = gov; | ||
| 781 | dprintk("Restoring governor %s for cpu %d\n", | 783 | dprintk("Restoring governor %s for cpu %d\n", |
| 782 | policy->governor->name, cpu); | 784 | policy->governor->name, cpu); |
| 783 | } | 785 | } |
| @@ -949,10 +951,13 @@ err_out_kobj_put: | |||
| 949 | static int cpufreq_add_dev(struct sys_device *sys_dev) | 951 | static int cpufreq_add_dev(struct sys_device *sys_dev) |
| 950 | { | 952 | { |
| 951 | unsigned int cpu = sys_dev->id; | 953 | unsigned int cpu = sys_dev->id; |
| 952 | int ret = 0; | 954 | int ret = 0, found = 0; |
| 953 | struct cpufreq_policy *policy; | 955 | struct cpufreq_policy *policy; |
| 954 | unsigned long flags; | 956 | unsigned long flags; |
| 955 | unsigned int j; | 957 | unsigned int j; |
| 958 | #ifdef CONFIG_HOTPLUG_CPU | ||
| 959 | int sibling; | ||
| 960 | #endif | ||
| 956 | 961 | ||
| 957 | if (cpu_is_offline(cpu)) | 962 | if (cpu_is_offline(cpu)) |
| 958 | return 0; | 963 | return 0; |
| @@ -999,7 +1004,19 @@ static int cpufreq_add_dev(struct sys_device *sys_dev) | |||
| 999 | INIT_WORK(&policy->update, handle_update); | 1004 | INIT_WORK(&policy->update, handle_update); |
| 1000 | 1005 | ||
| 1001 | /* Set governor before ->init, so that driver could check it */ | 1006 | /* Set governor before ->init, so that driver could check it */ |
| 1002 | policy->governor = CPUFREQ_DEFAULT_GOVERNOR; | 1007 | #ifdef CONFIG_HOTPLUG_CPU |
| 1008 | for_each_online_cpu(sibling) { | ||
| 1009 | struct cpufreq_policy *cp = per_cpu(cpufreq_cpu_data, sibling); | ||
| 1010 | if (cp && cp->governor && | ||
| 1011 | (cpumask_test_cpu(cpu, cp->related_cpus))) { | ||
| 1012 | policy->governor = cp->governor; | ||
| 1013 | found = 1; | ||
| 1014 | break; | ||
| 1015 | } | ||
| 1016 | } | ||
| 1017 | #endif | ||
| 1018 | if (!found) | ||
| 1019 | policy->governor = CPUFREQ_DEFAULT_GOVERNOR; | ||
| 1003 | /* call driver. From then on the cpufreq must be able | 1020 | /* call driver. From then on the cpufreq must be able |
| 1004 | * to accept all calls to ->verify and ->setpolicy for this CPU | 1021 | * to accept all calls to ->verify and ->setpolicy for this CPU |
| 1005 | */ | 1022 | */ |
| @@ -1111,7 +1128,8 @@ static int __cpufreq_remove_dev(struct sys_device *sys_dev) | |||
| 1111 | #ifdef CONFIG_SMP | 1128 | #ifdef CONFIG_SMP |
| 1112 | 1129 | ||
| 1113 | #ifdef CONFIG_HOTPLUG_CPU | 1130 | #ifdef CONFIG_HOTPLUG_CPU |
| 1114 | per_cpu(cpufreq_cpu_governor, cpu) = data->governor; | 1131 | strncpy(per_cpu(cpufreq_cpu_governor, cpu), data->governor->name, |
| 1132 | CPUFREQ_NAME_LEN); | ||
| 1115 | #endif | 1133 | #endif |
| 1116 | 1134 | ||
| 1117 | /* if we have other CPUs still registered, we need to unlink them, | 1135 | /* if we have other CPUs still registered, we need to unlink them, |
| @@ -1135,7 +1153,8 @@ static int __cpufreq_remove_dev(struct sys_device *sys_dev) | |||
| 1135 | continue; | 1153 | continue; |
| 1136 | dprintk("removing link for cpu %u\n", j); | 1154 | dprintk("removing link for cpu %u\n", j); |
| 1137 | #ifdef CONFIG_HOTPLUG_CPU | 1155 | #ifdef CONFIG_HOTPLUG_CPU |
| 1138 | per_cpu(cpufreq_cpu_governor, j) = data->governor; | 1156 | strncpy(per_cpu(cpufreq_cpu_governor, j), |
| 1157 | data->governor->name, CPUFREQ_NAME_LEN); | ||
| 1139 | #endif | 1158 | #endif |
| 1140 | cpu_sys_dev = get_cpu_sysdev(j); | 1159 | cpu_sys_dev = get_cpu_sysdev(j); |
| 1141 | sysfs_remove_link(&cpu_sys_dev->kobj, "cpufreq"); | 1160 | sysfs_remove_link(&cpu_sys_dev->kobj, "cpufreq"); |
| @@ -1606,9 +1625,22 @@ EXPORT_SYMBOL_GPL(cpufreq_register_governor); | |||
| 1606 | 1625 | ||
| 1607 | void cpufreq_unregister_governor(struct cpufreq_governor *governor) | 1626 | void cpufreq_unregister_governor(struct cpufreq_governor *governor) |
| 1608 | { | 1627 | { |
| 1628 | #ifdef CONFIG_HOTPLUG_CPU | ||
| 1629 | int cpu; | ||
| 1630 | #endif | ||
| 1631 | |||
| 1609 | if (!governor) | 1632 | if (!governor) |
| 1610 | return; | 1633 | return; |
| 1611 | 1634 | ||
| 1635 | #ifdef CONFIG_HOTPLUG_CPU | ||
| 1636 | for_each_present_cpu(cpu) { | ||
| 1637 | if (cpu_online(cpu)) | ||
| 1638 | continue; | ||
| 1639 | if (!strcmp(per_cpu(cpufreq_cpu_governor, cpu), governor->name)) | ||
| 1640 | strcpy(per_cpu(cpufreq_cpu_governor, cpu), "\0"); | ||
| 1641 | } | ||
| 1642 | #endif | ||
| 1643 | |||
| 1612 | mutex_lock(&cpufreq_governor_mutex); | 1644 | mutex_lock(&cpufreq_governor_mutex); |
| 1613 | list_del(&governor->governor_list); | 1645 | list_del(&governor->governor_list); |
| 1614 | mutex_unlock(&cpufreq_governor_mutex); | 1646 | mutex_unlock(&cpufreq_governor_mutex); |
diff --git a/drivers/cpufreq/cpufreq_conservative.c b/drivers/cpufreq/cpufreq_conservative.c index bc33ddc9c97c..c7b081b839ff 100644 --- a/drivers/cpufreq/cpufreq_conservative.c +++ b/drivers/cpufreq/cpufreq_conservative.c | |||
| @@ -116,9 +116,9 @@ static inline cputime64_t get_cpu_idle_time_jiffy(unsigned int cpu, | |||
| 116 | 116 | ||
| 117 | idle_time = cputime64_sub(cur_wall_time, busy_time); | 117 | idle_time = cputime64_sub(cur_wall_time, busy_time); |
| 118 | if (wall) | 118 | if (wall) |
| 119 | *wall = cur_wall_time; | 119 | *wall = (cputime64_t)jiffies_to_usecs(cur_wall_time); |
| 120 | 120 | ||
| 121 | return idle_time; | 121 | return (cputime64_t)jiffies_to_usecs(idle_time);; |
| 122 | } | 122 | } |
| 123 | 123 | ||
| 124 | static inline cputime64_t get_cpu_idle_time(unsigned int cpu, cputime64_t *wall) | 124 | static inline cputime64_t get_cpu_idle_time(unsigned int cpu, cputime64_t *wall) |
diff --git a/drivers/cpufreq/cpufreq_ondemand.c b/drivers/cpufreq/cpufreq_ondemand.c index 071699de50ee..4b34ade2332b 100644 --- a/drivers/cpufreq/cpufreq_ondemand.c +++ b/drivers/cpufreq/cpufreq_ondemand.c | |||
| @@ -133,9 +133,9 @@ static inline cputime64_t get_cpu_idle_time_jiffy(unsigned int cpu, | |||
| 133 | 133 | ||
| 134 | idle_time = cputime64_sub(cur_wall_time, busy_time); | 134 | idle_time = cputime64_sub(cur_wall_time, busy_time); |
| 135 | if (wall) | 135 | if (wall) |
| 136 | *wall = cur_wall_time; | 136 | *wall = (cputime64_t)jiffies_to_usecs(cur_wall_time); |
| 137 | 137 | ||
| 138 | return idle_time; | 138 | return (cputime64_t)jiffies_to_usecs(idle_time); |
| 139 | } | 139 | } |
| 140 | 140 | ||
| 141 | static inline cputime64_t get_cpu_idle_time(unsigned int cpu, cputime64_t *wall) | 141 | static inline cputime64_t get_cpu_idle_time(unsigned int cpu, cputime64_t *wall) |
diff --git a/drivers/crypto/padlock-aes.c b/drivers/crypto/padlock-aes.c index a9952b1236b0..84c51e177269 100644 --- a/drivers/crypto/padlock-aes.c +++ b/drivers/crypto/padlock-aes.c | |||
| @@ -236,7 +236,7 @@ static inline void ecb_crypt(const u8 *in, u8 *out, u32 *key, | |||
| 236 | /* Padlock in ECB mode fetches at least ecb_fetch_bytes of data. | 236 | /* Padlock in ECB mode fetches at least ecb_fetch_bytes of data. |
| 237 | * We could avoid some copying here but it's probably not worth it. | 237 | * We could avoid some copying here but it's probably not worth it. |
| 238 | */ | 238 | */ |
| 239 | if (unlikely(((unsigned long)in & PAGE_SIZE) + ecb_fetch_bytes > PAGE_SIZE)) { | 239 | if (unlikely(((unsigned long)in & ~PAGE_MASK) + ecb_fetch_bytes > PAGE_SIZE)) { |
| 240 | ecb_crypt_copy(in, out, key, cword, count); | 240 | ecb_crypt_copy(in, out, key, cword, count); |
| 241 | return; | 241 | return; |
| 242 | } | 242 | } |
| @@ -248,7 +248,7 @@ static inline u8 *cbc_crypt(const u8 *in, u8 *out, u32 *key, | |||
| 248 | u8 *iv, struct cword *cword, int count) | 248 | u8 *iv, struct cword *cword, int count) |
| 249 | { | 249 | { |
| 250 | /* Padlock in CBC mode fetches at least cbc_fetch_bytes of data. */ | 250 | /* Padlock in CBC mode fetches at least cbc_fetch_bytes of data. */ |
| 251 | if (unlikely(((unsigned long)in & PAGE_SIZE) + cbc_fetch_bytes > PAGE_SIZE)) | 251 | if (unlikely(((unsigned long)in & ~PAGE_MASK) + cbc_fetch_bytes > PAGE_SIZE)) |
| 252 | return cbc_crypt_copy(in, out, key, iv, cword, count); | 252 | return cbc_crypt_copy(in, out, key, iv, cword, count); |
| 253 | 253 | ||
| 254 | return rep_xcrypt_cbc(in, out, key, iv, cword, count); | 254 | return rep_xcrypt_cbc(in, out, key, iv, cword, count); |
diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig index 5903a88351bf..b401dadad4a8 100644 --- a/drivers/dma/Kconfig +++ b/drivers/dma/Kconfig | |||
| @@ -26,6 +26,8 @@ config INTEL_IOATDMA | |||
| 26 | select DMA_ENGINE | 26 | select DMA_ENGINE |
| 27 | select DCA | 27 | select DCA |
| 28 | select ASYNC_TX_DISABLE_CHANNEL_SWITCH | 28 | select ASYNC_TX_DISABLE_CHANNEL_SWITCH |
| 29 | select ASYNC_TX_DISABLE_PQ_VAL_DMA | ||
| 30 | select ASYNC_TX_DISABLE_XOR_VAL_DMA | ||
| 29 | help | 31 | help |
| 30 | Enable support for the Intel(R) I/OAT DMA engine present | 32 | Enable support for the Intel(R) I/OAT DMA engine present |
| 31 | in recent Intel Xeon chipsets. | 33 | in recent Intel Xeon chipsets. |
diff --git a/drivers/dma/dmaengine.c b/drivers/dma/dmaengine.c index bd0b248de2cf..8f99354082ce 100644 --- a/drivers/dma/dmaengine.c +++ b/drivers/dma/dmaengine.c | |||
| @@ -632,11 +632,21 @@ static bool device_has_all_tx_types(struct dma_device *device) | |||
| 632 | #if defined(CONFIG_ASYNC_XOR) || defined(CONFIG_ASYNC_XOR_MODULE) | 632 | #if defined(CONFIG_ASYNC_XOR) || defined(CONFIG_ASYNC_XOR_MODULE) |
| 633 | if (!dma_has_cap(DMA_XOR, device->cap_mask)) | 633 | if (!dma_has_cap(DMA_XOR, device->cap_mask)) |
| 634 | return false; | 634 | return false; |
| 635 | |||
| 636 | #ifndef CONFIG_ASYNC_TX_DISABLE_XOR_VAL_DMA | ||
| 637 | if (!dma_has_cap(DMA_XOR_VAL, device->cap_mask)) | ||
| 638 | return false; | ||
| 639 | #endif | ||
| 635 | #endif | 640 | #endif |
| 636 | 641 | ||
| 637 | #if defined(CONFIG_ASYNC_PQ) || defined(CONFIG_ASYNC_PQ_MODULE) | 642 | #if defined(CONFIG_ASYNC_PQ) || defined(CONFIG_ASYNC_PQ_MODULE) |
| 638 | if (!dma_has_cap(DMA_PQ, device->cap_mask)) | 643 | if (!dma_has_cap(DMA_PQ, device->cap_mask)) |
| 639 | return false; | 644 | return false; |
| 645 | |||
| 646 | #ifndef CONFIG_ASYNC_TX_DISABLE_PQ_VAL_DMA | ||
| 647 | if (!dma_has_cap(DMA_PQ_VAL, device->cap_mask)) | ||
| 648 | return false; | ||
| 649 | #endif | ||
| 640 | #endif | 650 | #endif |
| 641 | 651 | ||
| 642 | return true; | 652 | return true; |
diff --git a/drivers/dma/ioat/dca.c b/drivers/dma/ioat/dca.c index 69d02615c4d6..abd9038e06b1 100644 --- a/drivers/dma/ioat/dca.c +++ b/drivers/dma/ioat/dca.c | |||
| @@ -98,17 +98,17 @@ static int dca_enabled_in_bios(struct pci_dev *pdev) | |||
| 98 | cpuid_level_9 = cpuid_eax(9); | 98 | cpuid_level_9 = cpuid_eax(9); |
| 99 | res = test_bit(0, &cpuid_level_9); | 99 | res = test_bit(0, &cpuid_level_9); |
| 100 | if (!res) | 100 | if (!res) |
| 101 | dev_err(&pdev->dev, "DCA is disabled in BIOS\n"); | 101 | dev_dbg(&pdev->dev, "DCA is disabled in BIOS\n"); |
| 102 | 102 | ||
| 103 | return res; | 103 | return res; |
| 104 | } | 104 | } |
| 105 | 105 | ||
| 106 | static int system_has_dca_enabled(struct pci_dev *pdev) | 106 | int system_has_dca_enabled(struct pci_dev *pdev) |
| 107 | { | 107 | { |
| 108 | if (boot_cpu_has(X86_FEATURE_DCA)) | 108 | if (boot_cpu_has(X86_FEATURE_DCA)) |
| 109 | return dca_enabled_in_bios(pdev); | 109 | return dca_enabled_in_bios(pdev); |
| 110 | 110 | ||
| 111 | dev_err(&pdev->dev, "boot cpu doesn't have X86_FEATURE_DCA\n"); | 111 | dev_dbg(&pdev->dev, "boot cpu doesn't have X86_FEATURE_DCA\n"); |
| 112 | return 0; | 112 | return 0; |
| 113 | } | 113 | } |
| 114 | 114 | ||
diff --git a/drivers/dma/ioat/dma.h b/drivers/dma/ioat/dma.h index c14fdfeb7f33..45edde996480 100644 --- a/drivers/dma/ioat/dma.h +++ b/drivers/dma/ioat/dma.h | |||
| @@ -297,9 +297,7 @@ static inline bool is_ioat_suspended(unsigned long status) | |||
| 297 | /* channel was fatally programmed */ | 297 | /* channel was fatally programmed */ |
| 298 | static inline bool is_ioat_bug(unsigned long err) | 298 | static inline bool is_ioat_bug(unsigned long err) |
| 299 | { | 299 | { |
| 300 | return !!(err & (IOAT_CHANERR_SRC_ADDR_ERR|IOAT_CHANERR_DEST_ADDR_ERR| | 300 | return !!err; |
| 301 | IOAT_CHANERR_NEXT_ADDR_ERR|IOAT_CHANERR_CONTROL_ERR| | ||
| 302 | IOAT_CHANERR_LENGTH_ERR)); | ||
| 303 | } | 301 | } |
| 304 | 302 | ||
| 305 | static inline void ioat_unmap(struct pci_dev *pdev, dma_addr_t addr, size_t len, | 303 | static inline void ioat_unmap(struct pci_dev *pdev, dma_addr_t addr, size_t len, |
diff --git a/drivers/dma/ioat/dma_v2.c b/drivers/dma/ioat/dma_v2.c index 96ffab7d37a7..8f1f7f05deaa 100644 --- a/drivers/dma/ioat/dma_v2.c +++ b/drivers/dma/ioat/dma_v2.c | |||
| @@ -279,6 +279,8 @@ void ioat2_timer_event(unsigned long data) | |||
| 279 | u32 chanerr; | 279 | u32 chanerr; |
| 280 | 280 | ||
| 281 | chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET); | 281 | chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET); |
| 282 | dev_err(to_dev(chan), "%s: Channel halted (%x)\n", | ||
| 283 | __func__, chanerr); | ||
| 282 | BUG_ON(is_ioat_bug(chanerr)); | 284 | BUG_ON(is_ioat_bug(chanerr)); |
| 283 | } | 285 | } |
| 284 | 286 | ||
diff --git a/drivers/dma/ioat/dma_v3.c b/drivers/dma/ioat/dma_v3.c index 35d1e33afd5b..42f6f10fb0cc 100644 --- a/drivers/dma/ioat/dma_v3.c +++ b/drivers/dma/ioat/dma_v3.c | |||
| @@ -378,6 +378,8 @@ static void ioat3_timer_event(unsigned long data) | |||
| 378 | u32 chanerr; | 378 | u32 chanerr; |
| 379 | 379 | ||
| 380 | chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET); | 380 | chanerr = readl(chan->reg_base + IOAT_CHANERR_OFFSET); |
| 381 | dev_err(to_dev(chan), "%s: Channel halted (%x)\n", | ||
| 382 | __func__, chanerr); | ||
| 381 | BUG_ON(is_ioat_bug(chanerr)); | 383 | BUG_ON(is_ioat_bug(chanerr)); |
| 382 | } | 384 | } |
| 383 | 385 | ||
| @@ -569,7 +571,7 @@ __ioat3_prep_xor_lock(struct dma_chan *c, enum sum_check_flags *result, | |||
| 569 | dump_desc_dbg(ioat, compl_desc); | 571 | dump_desc_dbg(ioat, compl_desc); |
| 570 | 572 | ||
| 571 | /* we leave the channel locked to ensure in order submission */ | 573 | /* we leave the channel locked to ensure in order submission */ |
| 572 | return &desc->txd; | 574 | return &compl_desc->txd; |
| 573 | } | 575 | } |
| 574 | 576 | ||
| 575 | static struct dma_async_tx_descriptor * | 577 | static struct dma_async_tx_descriptor * |
| @@ -728,7 +730,7 @@ __ioat3_prep_pq_lock(struct dma_chan *c, enum sum_check_flags *result, | |||
| 728 | dump_desc_dbg(ioat, compl_desc); | 730 | dump_desc_dbg(ioat, compl_desc); |
| 729 | 731 | ||
| 730 | /* we leave the channel locked to ensure in order submission */ | 732 | /* we leave the channel locked to ensure in order submission */ |
| 731 | return &desc->txd; | 733 | return &compl_desc->txd; |
| 732 | } | 734 | } |
| 733 | 735 | ||
| 734 | static struct dma_async_tx_descriptor * | 736 | static struct dma_async_tx_descriptor * |
| @@ -736,10 +738,16 @@ ioat3_prep_pq(struct dma_chan *chan, dma_addr_t *dst, dma_addr_t *src, | |||
| 736 | unsigned int src_cnt, const unsigned char *scf, size_t len, | 738 | unsigned int src_cnt, const unsigned char *scf, size_t len, |
| 737 | unsigned long flags) | 739 | unsigned long flags) |
| 738 | { | 740 | { |
| 741 | /* specify valid address for disabled result */ | ||
| 742 | if (flags & DMA_PREP_PQ_DISABLE_P) | ||
| 743 | dst[0] = dst[1]; | ||
| 744 | if (flags & DMA_PREP_PQ_DISABLE_Q) | ||
| 745 | dst[1] = dst[0]; | ||
| 746 | |||
| 739 | /* handle the single source multiply case from the raid6 | 747 | /* handle the single source multiply case from the raid6 |
| 740 | * recovery path | 748 | * recovery path |
| 741 | */ | 749 | */ |
| 742 | if (unlikely((flags & DMA_PREP_PQ_DISABLE_P) && src_cnt == 1)) { | 750 | if ((flags & DMA_PREP_PQ_DISABLE_P) && src_cnt == 1) { |
| 743 | dma_addr_t single_source[2]; | 751 | dma_addr_t single_source[2]; |
| 744 | unsigned char single_source_coef[2]; | 752 | unsigned char single_source_coef[2]; |
| 745 | 753 | ||
| @@ -761,6 +769,12 @@ ioat3_prep_pq_val(struct dma_chan *chan, dma_addr_t *pq, dma_addr_t *src, | |||
| 761 | unsigned int src_cnt, const unsigned char *scf, size_t len, | 769 | unsigned int src_cnt, const unsigned char *scf, size_t len, |
| 762 | enum sum_check_flags *pqres, unsigned long flags) | 770 | enum sum_check_flags *pqres, unsigned long flags) |
| 763 | { | 771 | { |
| 772 | /* specify valid address for disabled result */ | ||
| 773 | if (flags & DMA_PREP_PQ_DISABLE_P) | ||
| 774 | pq[0] = pq[1]; | ||
| 775 | if (flags & DMA_PREP_PQ_DISABLE_Q) | ||
| 776 | pq[1] = pq[0]; | ||
| 777 | |||
| 764 | /* the cleanup routine only sets bits on validate failure, it | 778 | /* the cleanup routine only sets bits on validate failure, it |
| 765 | * does not clear bits on validate success... so clear it here | 779 | * does not clear bits on validate success... so clear it here |
| 766 | */ | 780 | */ |
| @@ -778,9 +792,9 @@ ioat3_prep_pqxor(struct dma_chan *chan, dma_addr_t dst, dma_addr_t *src, | |||
| 778 | dma_addr_t pq[2]; | 792 | dma_addr_t pq[2]; |
| 779 | 793 | ||
| 780 | memset(scf, 0, src_cnt); | 794 | memset(scf, 0, src_cnt); |
| 781 | flags |= DMA_PREP_PQ_DISABLE_Q; | ||
| 782 | pq[0] = dst; | 795 | pq[0] = dst; |
| 783 | pq[1] = ~0; | 796 | flags |= DMA_PREP_PQ_DISABLE_Q; |
| 797 | pq[1] = dst; /* specify valid address for disabled result */ | ||
| 784 | 798 | ||
| 785 | return __ioat3_prep_pq_lock(chan, NULL, pq, src, src_cnt, scf, len, | 799 | return __ioat3_prep_pq_lock(chan, NULL, pq, src, src_cnt, scf, len, |
| 786 | flags); | 800 | flags); |
| @@ -800,9 +814,9 @@ ioat3_prep_pqxor_val(struct dma_chan *chan, dma_addr_t *src, | |||
| 800 | *result = 0; | 814 | *result = 0; |
| 801 | 815 | ||
| 802 | memset(scf, 0, src_cnt); | 816 | memset(scf, 0, src_cnt); |
| 803 | flags |= DMA_PREP_PQ_DISABLE_Q; | ||
| 804 | pq[0] = src[0]; | 817 | pq[0] = src[0]; |
| 805 | pq[1] = ~0; | 818 | flags |= DMA_PREP_PQ_DISABLE_Q; |
| 819 | pq[1] = pq[0]; /* specify valid address for disabled result */ | ||
| 806 | 820 | ||
| 807 | return __ioat3_prep_pq_lock(chan, result, pq, &src[1], src_cnt - 1, scf, | 821 | return __ioat3_prep_pq_lock(chan, result, pq, &src[1], src_cnt - 1, scf, |
| 808 | len, flags); | 822 | len, flags); |
| @@ -1117,6 +1131,7 @@ static int __devinit ioat3_dma_self_test(struct ioatdma_device *device) | |||
| 1117 | int __devinit ioat3_dma_probe(struct ioatdma_device *device, int dca) | 1131 | int __devinit ioat3_dma_probe(struct ioatdma_device *device, int dca) |
| 1118 | { | 1132 | { |
| 1119 | struct pci_dev *pdev = device->pdev; | 1133 | struct pci_dev *pdev = device->pdev; |
| 1134 | int dca_en = system_has_dca_enabled(pdev); | ||
| 1120 | struct dma_device *dma; | 1135 | struct dma_device *dma; |
| 1121 | struct dma_chan *c; | 1136 | struct dma_chan *c; |
| 1122 | struct ioat_chan_common *chan; | 1137 | struct ioat_chan_common *chan; |
| @@ -1137,6 +1152,11 @@ int __devinit ioat3_dma_probe(struct ioatdma_device *device, int dca) | |||
| 1137 | dma->device_prep_dma_interrupt = ioat3_prep_interrupt_lock; | 1152 | dma->device_prep_dma_interrupt = ioat3_prep_interrupt_lock; |
| 1138 | 1153 | ||
| 1139 | cap = readl(device->reg_base + IOAT_DMA_CAP_OFFSET); | 1154 | cap = readl(device->reg_base + IOAT_DMA_CAP_OFFSET); |
| 1155 | |||
| 1156 | /* dca is incompatible with raid operations */ | ||
| 1157 | if (dca_en && (cap & (IOAT_CAP_XOR|IOAT_CAP_PQ))) | ||
| 1158 | cap &= ~(IOAT_CAP_XOR|IOAT_CAP_PQ); | ||
| 1159 | |||
| 1140 | if (cap & IOAT_CAP_XOR) { | 1160 | if (cap & IOAT_CAP_XOR) { |
| 1141 | is_raid_device = true; | 1161 | is_raid_device = true; |
| 1142 | dma->max_xor = 8; | 1162 | dma->max_xor = 8; |
| @@ -1186,6 +1206,16 @@ int __devinit ioat3_dma_probe(struct ioatdma_device *device, int dca) | |||
| 1186 | device->timer_fn = ioat2_timer_event; | 1206 | device->timer_fn = ioat2_timer_event; |
| 1187 | } | 1207 | } |
| 1188 | 1208 | ||
| 1209 | #ifdef CONFIG_ASYNC_TX_DISABLE_PQ_VAL_DMA | ||
| 1210 | dma_cap_clear(DMA_PQ_VAL, dma->cap_mask); | ||
| 1211 | dma->device_prep_dma_pq_val = NULL; | ||
| 1212 | #endif | ||
| 1213 | |||
| 1214 | #ifdef CONFIG_ASYNC_TX_DISABLE_XOR_VAL_DMA | ||
| 1215 | dma_cap_clear(DMA_XOR_VAL, dma->cap_mask); | ||
| 1216 | dma->device_prep_dma_xor_val = NULL; | ||
| 1217 | #endif | ||
| 1218 | |||
| 1189 | /* -= IOAT ver.3 workarounds =- */ | 1219 | /* -= IOAT ver.3 workarounds =- */ |
| 1190 | /* Write CHANERRMSK_INT with 3E07h to mask out the errors | 1220 | /* Write CHANERRMSK_INT with 3E07h to mask out the errors |
| 1191 | * that can cause stability issues for IOAT ver.3 | 1221 | * that can cause stability issues for IOAT ver.3 |
diff --git a/drivers/dma/ioat/hw.h b/drivers/dma/ioat/hw.h index 99afb12bd409..60e675455b6a 100644 --- a/drivers/dma/ioat/hw.h +++ b/drivers/dma/ioat/hw.h | |||
| @@ -39,6 +39,8 @@ | |||
| 39 | #define IOAT_VER_3_0 0x30 /* Version 3.0 */ | 39 | #define IOAT_VER_3_0 0x30 /* Version 3.0 */ |
| 40 | #define IOAT_VER_3_2 0x32 /* Version 3.2 */ | 40 | #define IOAT_VER_3_2 0x32 /* Version 3.2 */ |
| 41 | 41 | ||
| 42 | int system_has_dca_enabled(struct pci_dev *pdev); | ||
| 43 | |||
| 42 | struct ioat_dma_descriptor { | 44 | struct ioat_dma_descriptor { |
| 43 | uint32_t size; | 45 | uint32_t size; |
| 44 | union { | 46 | union { |
diff --git a/drivers/dma/ioat/registers.h b/drivers/dma/ioat/registers.h index 63038e18ab03..f015ec196700 100644 --- a/drivers/dma/ioat/registers.h +++ b/drivers/dma/ioat/registers.h | |||
| @@ -92,9 +92,7 @@ | |||
| 92 | #define IOAT_CHANCTRL_ERR_COMPLETION_EN 0x0004 | 92 | #define IOAT_CHANCTRL_ERR_COMPLETION_EN 0x0004 |
| 93 | #define IOAT_CHANCTRL_INT_REARM 0x0001 | 93 | #define IOAT_CHANCTRL_INT_REARM 0x0001 |
| 94 | #define IOAT_CHANCTRL_RUN (IOAT_CHANCTRL_INT_REARM |\ | 94 | #define IOAT_CHANCTRL_RUN (IOAT_CHANCTRL_INT_REARM |\ |
| 95 | IOAT_CHANCTRL_ERR_COMPLETION_EN |\ | 95 | IOAT_CHANCTRL_ANY_ERR_ABORT_EN) |
| 96 | IOAT_CHANCTRL_ANY_ERR_ABORT_EN |\ | ||
| 97 | IOAT_CHANCTRL_ERR_INT_EN) | ||
| 98 | 96 | ||
| 99 | #define IOAT_DMA_COMP_OFFSET 0x02 /* 16-bit DMA channel compatibility */ | 97 | #define IOAT_DMA_COMP_OFFSET 0x02 /* 16-bit DMA channel compatibility */ |
| 100 | #define IOAT_DMA_COMP_V1 0x0001 /* Compatibility with DMA version 1 */ | 98 | #define IOAT_DMA_COMP_V1 0x0001 /* Compatibility with DMA version 1 */ |
diff --git a/drivers/dma/shdma.c b/drivers/dma/shdma.c index b3b065c4e5c1..034ecf0ace03 100644 --- a/drivers/dma/shdma.c +++ b/drivers/dma/shdma.c | |||
| @@ -640,17 +640,16 @@ static int __init sh_dmae_probe(struct platform_device *pdev) | |||
| 640 | #endif | 640 | #endif |
| 641 | struct sh_dmae_device *shdev; | 641 | struct sh_dmae_device *shdev; |
| 642 | 642 | ||
| 643 | /* get platform data */ | ||
| 644 | if (!pdev->dev.platform_data) | ||
| 645 | return -ENODEV; | ||
| 646 | |||
| 643 | shdev = kzalloc(sizeof(struct sh_dmae_device), GFP_KERNEL); | 647 | shdev = kzalloc(sizeof(struct sh_dmae_device), GFP_KERNEL); |
| 644 | if (!shdev) { | 648 | if (!shdev) { |
| 645 | dev_err(&pdev->dev, "No enough memory\n"); | 649 | dev_err(&pdev->dev, "No enough memory\n"); |
| 646 | err = -ENOMEM; | 650 | return -ENOMEM; |
| 647 | goto shdev_err; | ||
| 648 | } | 651 | } |
| 649 | 652 | ||
| 650 | /* get platform data */ | ||
| 651 | if (!pdev->dev.platform_data) | ||
| 652 | goto shdev_err; | ||
| 653 | |||
| 654 | /* platform data */ | 653 | /* platform data */ |
| 655 | memcpy(&shdev->pdata, pdev->dev.platform_data, | 654 | memcpy(&shdev->pdata, pdev->dev.platform_data, |
| 656 | sizeof(struct sh_dmae_pdata)); | 655 | sizeof(struct sh_dmae_pdata)); |
| @@ -722,7 +721,6 @@ eirq_err: | |||
| 722 | rst_err: | 721 | rst_err: |
| 723 | kfree(shdev); | 722 | kfree(shdev); |
| 724 | 723 | ||
| 725 | shdev_err: | ||
| 726 | return err; | 724 | return err; |
| 727 | } | 725 | } |
| 728 | 726 | ||
diff --git a/drivers/firewire/ohci.c b/drivers/firewire/ohci.c index 5d524254499e..94260aa76aa3 100644 --- a/drivers/firewire/ohci.c +++ b/drivers/firewire/ohci.c | |||
| @@ -275,7 +275,7 @@ static void log_irqs(u32 evt) | |||
| 275 | !(evt & OHCI1394_busReset)) | 275 | !(evt & OHCI1394_busReset)) |
| 276 | return; | 276 | return; |
| 277 | 277 | ||
| 278 | fw_notify("IRQ %08x%s%s%s%s%s%s%s%s%s%s%s%s%s\n", evt, | 278 | fw_notify("IRQ %08x%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n", evt, |
| 279 | evt & OHCI1394_selfIDComplete ? " selfID" : "", | 279 | evt & OHCI1394_selfIDComplete ? " selfID" : "", |
| 280 | evt & OHCI1394_RQPkt ? " AR_req" : "", | 280 | evt & OHCI1394_RQPkt ? " AR_req" : "", |
| 281 | evt & OHCI1394_RSPkt ? " AR_resp" : "", | 281 | evt & OHCI1394_RSPkt ? " AR_resp" : "", |
| @@ -286,6 +286,7 @@ static void log_irqs(u32 evt) | |||
| 286 | evt & OHCI1394_postedWriteErr ? " postedWriteErr" : "", | 286 | evt & OHCI1394_postedWriteErr ? " postedWriteErr" : "", |
| 287 | evt & OHCI1394_cycleTooLong ? " cycleTooLong" : "", | 287 | evt & OHCI1394_cycleTooLong ? " cycleTooLong" : "", |
| 288 | evt & OHCI1394_cycle64Seconds ? " cycle64Seconds" : "", | 288 | evt & OHCI1394_cycle64Seconds ? " cycle64Seconds" : "", |
| 289 | evt & OHCI1394_cycleInconsistent ? " cycleInconsistent" : "", | ||
| 289 | evt & OHCI1394_regAccessFail ? " regAccessFail" : "", | 290 | evt & OHCI1394_regAccessFail ? " regAccessFail" : "", |
| 290 | evt & OHCI1394_busReset ? " busReset" : "", | 291 | evt & OHCI1394_busReset ? " busReset" : "", |
| 291 | evt & ~(OHCI1394_selfIDComplete | OHCI1394_RQPkt | | 292 | evt & ~(OHCI1394_selfIDComplete | OHCI1394_RQPkt | |
| @@ -293,6 +294,7 @@ static void log_irqs(u32 evt) | |||
| 293 | OHCI1394_respTxComplete | OHCI1394_isochRx | | 294 | OHCI1394_respTxComplete | OHCI1394_isochRx | |
| 294 | OHCI1394_isochTx | OHCI1394_postedWriteErr | | 295 | OHCI1394_isochTx | OHCI1394_postedWriteErr | |
| 295 | OHCI1394_cycleTooLong | OHCI1394_cycle64Seconds | | 296 | OHCI1394_cycleTooLong | OHCI1394_cycle64Seconds | |
| 297 | OHCI1394_cycleInconsistent | | ||
| 296 | OHCI1394_regAccessFail | OHCI1394_busReset) | 298 | OHCI1394_regAccessFail | OHCI1394_busReset) |
| 297 | ? " ?" : ""); | 299 | ? " ?" : ""); |
| 298 | } | 300 | } |
| @@ -1439,6 +1441,17 @@ static irqreturn_t irq_handler(int irq, void *data) | |||
| 1439 | OHCI1394_LinkControl_cycleMaster); | 1441 | OHCI1394_LinkControl_cycleMaster); |
| 1440 | } | 1442 | } |
| 1441 | 1443 | ||
| 1444 | if (unlikely(event & OHCI1394_cycleInconsistent)) { | ||
| 1445 | /* | ||
| 1446 | * We need to clear this event bit in order to make | ||
| 1447 | * cycleMatch isochronous I/O work. In theory we should | ||
| 1448 | * stop active cycleMatch iso contexts now and restart | ||
| 1449 | * them at least two cycles later. (FIXME?) | ||
| 1450 | */ | ||
| 1451 | if (printk_ratelimit()) | ||
| 1452 | fw_notify("isochronous cycle inconsistent\n"); | ||
| 1453 | } | ||
| 1454 | |||
| 1442 | if (event & OHCI1394_cycle64Seconds) { | 1455 | if (event & OHCI1394_cycle64Seconds) { |
| 1443 | cycle_time = reg_read(ohci, OHCI1394_IsochronousCycleTimer); | 1456 | cycle_time = reg_read(ohci, OHCI1394_IsochronousCycleTimer); |
| 1444 | if ((cycle_time & 0x80000000) == 0) | 1457 | if ((cycle_time & 0x80000000) == 0) |
| @@ -1528,6 +1541,7 @@ static int ohci_enable(struct fw_card *card, u32 *config_rom, size_t length) | |||
| 1528 | OHCI1394_reqTxComplete | OHCI1394_respTxComplete | | 1541 | OHCI1394_reqTxComplete | OHCI1394_respTxComplete | |
| 1529 | OHCI1394_isochRx | OHCI1394_isochTx | | 1542 | OHCI1394_isochRx | OHCI1394_isochTx | |
| 1530 | OHCI1394_postedWriteErr | OHCI1394_cycleTooLong | | 1543 | OHCI1394_postedWriteErr | OHCI1394_cycleTooLong | |
| 1544 | OHCI1394_cycleInconsistent | | ||
| 1531 | OHCI1394_cycle64Seconds | OHCI1394_regAccessFail | | 1545 | OHCI1394_cycle64Seconds | OHCI1394_regAccessFail | |
| 1532 | OHCI1394_masterIntEnable); | 1546 | OHCI1394_masterIntEnable); |
| 1533 | if (param_debug & OHCI_PARAM_DEBUG_BUSRESETS) | 1547 | if (param_debug & OHCI_PARAM_DEBUG_BUSRESETS) |
| @@ -1890,15 +1904,30 @@ static int handle_it_packet(struct context *context, | |||
| 1890 | { | 1904 | { |
| 1891 | struct iso_context *ctx = | 1905 | struct iso_context *ctx = |
| 1892 | container_of(context, struct iso_context, context); | 1906 | container_of(context, struct iso_context, context); |
| 1907 | int i; | ||
| 1908 | struct descriptor *pd; | ||
| 1893 | 1909 | ||
| 1894 | if (last->transfer_status == 0) | 1910 | for (pd = d; pd <= last; pd++) |
| 1895 | /* This descriptor isn't done yet, stop iteration. */ | 1911 | if (pd->transfer_status) |
| 1912 | break; | ||
| 1913 | if (pd > last) | ||
| 1914 | /* Descriptor(s) not done yet, stop iteration */ | ||
| 1896 | return 0; | 1915 | return 0; |
| 1897 | 1916 | ||
| 1898 | if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS) | 1917 | i = ctx->header_length; |
| 1918 | if (i + 4 < PAGE_SIZE) { | ||
| 1919 | /* Present this value as big-endian to match the receive code */ | ||
| 1920 | *(__be32 *)(ctx->header + i) = cpu_to_be32( | ||
| 1921 | ((u32)le16_to_cpu(pd->transfer_status) << 16) | | ||
| 1922 | le16_to_cpu(pd->res_count)); | ||
| 1923 | ctx->header_length += 4; | ||
| 1924 | } | ||
| 1925 | if (le16_to_cpu(last->control) & DESCRIPTOR_IRQ_ALWAYS) { | ||
| 1899 | ctx->base.callback(&ctx->base, le16_to_cpu(last->res_count), | 1926 | ctx->base.callback(&ctx->base, le16_to_cpu(last->res_count), |
| 1900 | 0, NULL, ctx->base.callback_data); | 1927 | ctx->header_length, ctx->header, |
| 1901 | 1928 | ctx->base.callback_data); | |
| 1929 | ctx->header_length = 0; | ||
| 1930 | } | ||
| 1902 | return 1; | 1931 | return 1; |
| 1903 | } | 1932 | } |
| 1904 | 1933 | ||
diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c index 662ed923d9eb..50de0f5750d8 100644 --- a/drivers/gpio/gpiolib.c +++ b/drivers/gpio/gpiolib.c | |||
| @@ -661,7 +661,7 @@ int gpio_export(unsigned gpio, bool direction_may_change) | |||
| 661 | 661 | ||
| 662 | dev = device_create(&gpio_class, desc->chip->dev, MKDEV(0, 0), | 662 | dev = device_create(&gpio_class, desc->chip->dev, MKDEV(0, 0), |
| 663 | desc, ioname ? ioname : "gpio%d", gpio); | 663 | desc, ioname ? ioname : "gpio%d", gpio); |
| 664 | if (dev) { | 664 | if (!IS_ERR(dev)) { |
| 665 | if (direction_may_change) | 665 | if (direction_may_change) |
| 666 | status = sysfs_create_group(&dev->kobj, | 666 | status = sysfs_create_group(&dev->kobj, |
| 667 | &gpio_attr_group); | 667 | &gpio_attr_group); |
| @@ -679,7 +679,7 @@ int gpio_export(unsigned gpio, bool direction_may_change) | |||
| 679 | if (status != 0) | 679 | if (status != 0) |
| 680 | device_unregister(dev); | 680 | device_unregister(dev); |
| 681 | } else | 681 | } else |
| 682 | status = -ENODEV; | 682 | status = PTR_ERR(dev); |
| 683 | if (status == 0) | 683 | if (status == 0) |
| 684 | set_bit(FLAG_EXPORT, &desc->flags); | 684 | set_bit(FLAG_EXPORT, &desc->flags); |
| 685 | } | 685 | } |
| @@ -800,11 +800,11 @@ static int gpiochip_export(struct gpio_chip *chip) | |||
| 800 | mutex_lock(&sysfs_lock); | 800 | mutex_lock(&sysfs_lock); |
| 801 | dev = device_create(&gpio_class, chip->dev, MKDEV(0, 0), chip, | 801 | dev = device_create(&gpio_class, chip->dev, MKDEV(0, 0), chip, |
| 802 | "gpiochip%d", chip->base); | 802 | "gpiochip%d", chip->base); |
| 803 | if (dev) { | 803 | if (!IS_ERR(dev)) { |
| 804 | status = sysfs_create_group(&dev->kobj, | 804 | status = sysfs_create_group(&dev->kobj, |
| 805 | &gpiochip_attr_group); | 805 | &gpiochip_attr_group); |
| 806 | } else | 806 | } else |
| 807 | status = -ENODEV; | 807 | status = PTR_ERR(dev); |
| 808 | chip->exported = (status == 0); | 808 | chip->exported = (status == 0); |
| 809 | mutex_unlock(&sysfs_lock); | 809 | mutex_unlock(&sysfs_lock); |
| 810 | 810 | ||
diff --git a/drivers/gpio/langwell_gpio.c b/drivers/gpio/langwell_gpio.c index 5711ce5353c6..4baf3d7d0f8e 100644 --- a/drivers/gpio/langwell_gpio.c +++ b/drivers/gpio/langwell_gpio.c | |||
| @@ -144,13 +144,6 @@ static int lnw_irq_type(unsigned irq, unsigned type) | |||
| 144 | 144 | ||
| 145 | static void lnw_irq_unmask(unsigned irq) | 145 | static void lnw_irq_unmask(unsigned irq) |
| 146 | { | 146 | { |
| 147 | struct lnw_gpio *lnw = get_irq_chip_data(irq); | ||
| 148 | u32 gpio = irq - lnw->irq_base; | ||
| 149 | u8 reg = gpio / 32; | ||
| 150 | void __iomem *gedr; | ||
| 151 | |||
| 152 | gedr = (void __iomem *)(&lnw->reg_base->GEDR[reg]); | ||
| 153 | writel(BIT(gpio % 32), gedr); | ||
| 154 | }; | 147 | }; |
| 155 | 148 | ||
| 156 | static void lnw_irq_mask(unsigned irq) | 149 | static void lnw_irq_mask(unsigned irq) |
| @@ -183,13 +176,11 @@ static void lnw_irq_handler(unsigned irq, struct irq_desc *desc) | |||
| 183 | gedr_v = readl(gedr); | 176 | gedr_v = readl(gedr); |
| 184 | if (!gedr_v) | 177 | if (!gedr_v) |
| 185 | continue; | 178 | continue; |
| 186 | for (gpio = reg*32; gpio < reg*32+32; gpio++) { | 179 | for (gpio = reg*32; gpio < reg*32+32; gpio++) |
| 187 | gedr_v = readl(gedr); | ||
| 188 | if (gedr_v & BIT(gpio % 32)) { | 180 | if (gedr_v & BIT(gpio % 32)) { |
| 189 | pr_debug("pin %d triggered\n", gpio); | 181 | pr_debug("pin %d triggered\n", gpio); |
| 190 | generic_handle_irq(lnw->irq_base + gpio); | 182 | generic_handle_irq(lnw->irq_base + gpio); |
| 191 | } | 183 | } |
| 192 | } | ||
| 193 | /* clear the edge detect status bit */ | 184 | /* clear the edge detect status bit */ |
| 194 | writel(gedr_v, gedr); | 185 | writel(gedr_v, gedr); |
| 195 | } | 186 | } |
diff --git a/drivers/gpu/drm/Kconfig b/drivers/gpu/drm/Kconfig index f831ea159291..96eddd17e050 100644 --- a/drivers/gpu/drm/Kconfig +++ b/drivers/gpu/drm/Kconfig | |||
| @@ -92,6 +92,7 @@ config DRM_I830 | |||
| 92 | config DRM_I915 | 92 | config DRM_I915 |
| 93 | tristate "i915 driver" | 93 | tristate "i915 driver" |
| 94 | depends on AGP_INTEL | 94 | depends on AGP_INTEL |
| 95 | select SHMEM | ||
| 95 | select DRM_KMS_HELPER | 96 | select DRM_KMS_HELPER |
| 96 | select FB_CFB_FILLRECT | 97 | select FB_CFB_FILLRECT |
| 97 | select FB_CFB_COPYAREA | 98 | select FB_CFB_COPYAREA |
diff --git a/drivers/gpu/drm/drm_crtc_helper.c b/drivers/gpu/drm/drm_crtc_helper.c index c5bd50ce78e2..3963b3c1081a 100644 --- a/drivers/gpu/drm/drm_crtc_helper.c +++ b/drivers/gpu/drm/drm_crtc_helper.c | |||
| @@ -331,6 +331,7 @@ create_mode: | |||
| 331 | cmdline_mode->refresh_specified ? cmdline_mode->refresh : 60, | 331 | cmdline_mode->refresh_specified ? cmdline_mode->refresh : 60, |
| 332 | cmdline_mode->rb, cmdline_mode->interlace, | 332 | cmdline_mode->rb, cmdline_mode->interlace, |
| 333 | cmdline_mode->margins); | 333 | cmdline_mode->margins); |
| 334 | drm_mode_set_crtcinfo(mode, CRTC_INTERLACE_HALVE_V); | ||
| 334 | list_add(&mode->head, &connector->modes); | 335 | list_add(&mode->head, &connector->modes); |
| 335 | return mode; | 336 | return mode; |
| 336 | } | 337 | } |
diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c index 30af8f3e6427..c39b26f1abed 100644 --- a/drivers/gpu/drm/drm_edid.c +++ b/drivers/gpu/drm/drm_edid.c | |||
| @@ -673,6 +673,12 @@ static struct drm_display_mode *drm_mode_detailed(struct drm_device *dev, | |||
| 673 | return NULL; | 673 | return NULL; |
| 674 | } | 674 | } |
| 675 | 675 | ||
| 676 | /* Some EDIDs have bogus h/vtotal values */ | ||
| 677 | if (mode->hsync_end > mode->htotal) | ||
| 678 | mode->htotal = mode->hsync_end + 1; | ||
| 679 | if (mode->vsync_end > mode->vtotal) | ||
| 680 | mode->vtotal = mode->vsync_end + 1; | ||
| 681 | |||
| 676 | drm_mode_set_name(mode); | 682 | drm_mode_set_name(mode); |
| 677 | 683 | ||
| 678 | if (pt->misc & DRM_EDID_PT_INTERLACED) | 684 | if (pt->misc & DRM_EDID_PT_INTERLACED) |
diff --git a/drivers/gpu/drm/drm_fb_helper.c b/drivers/gpu/drm/drm_fb_helper.c index 9a0aac0f7b79..1b49fa055f4f 100644 --- a/drivers/gpu/drm/drm_fb_helper.c +++ b/drivers/gpu/drm/drm_fb_helper.c | |||
| @@ -710,7 +710,7 @@ int drm_fb_helper_set_par(struct fb_info *info) | |||
| 710 | 710 | ||
| 711 | if (crtc->fb == fb_helper->crtc_info[i].mode_set.fb) { | 711 | if (crtc->fb == fb_helper->crtc_info[i].mode_set.fb) { |
| 712 | mutex_lock(&dev->mode_config.mutex); | 712 | mutex_lock(&dev->mode_config.mutex); |
| 713 | ret = crtc->funcs->set_config(&fb_helper->crtc_info->mode_set); | 713 | ret = crtc->funcs->set_config(&fb_helper->crtc_info[i].mode_set); |
| 714 | mutex_unlock(&dev->mode_config.mutex); | 714 | mutex_unlock(&dev->mode_config.mutex); |
| 715 | if (ret) | 715 | if (ret) |
| 716 | return ret; | 716 | return ret; |
diff --git a/drivers/gpu/drm/drm_gem.c b/drivers/gpu/drm/drm_gem.c index 80391995bdec..e9dbb481c469 100644 --- a/drivers/gpu/drm/drm_gem.c +++ b/drivers/gpu/drm/drm_gem.c | |||
| @@ -552,7 +552,7 @@ int drm_gem_mmap(struct file *filp, struct vm_area_struct *vma) | |||
| 552 | vma->vm_flags |= VM_RESERVED | VM_IO | VM_PFNMAP | VM_DONTEXPAND; | 552 | vma->vm_flags |= VM_RESERVED | VM_IO | VM_PFNMAP | VM_DONTEXPAND; |
| 553 | vma->vm_ops = obj->dev->driver->gem_vm_ops; | 553 | vma->vm_ops = obj->dev->driver->gem_vm_ops; |
| 554 | vma->vm_private_data = map->handle; | 554 | vma->vm_private_data = map->handle; |
| 555 | vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot); | 555 | vma->vm_page_prot = pgprot_writecombine(vm_get_page_prot(vma->vm_flags)); |
| 556 | 556 | ||
| 557 | /* Take a ref for this mapping of the object, so that the fault | 557 | /* Take a ref for this mapping of the object, so that the fault |
| 558 | * handler can dereference the mmap offset's pointer to the object. | 558 | * handler can dereference the mmap offset's pointer to the object. |
diff --git a/drivers/gpu/drm/drm_mm.c b/drivers/gpu/drm/drm_mm.c index 59cebd7d3fc2..1f0d717dbad6 100644 --- a/drivers/gpu/drm/drm_mm.c +++ b/drivers/gpu/drm/drm_mm.c | |||
| @@ -103,6 +103,11 @@ static struct drm_mm_node *drm_mm_kmalloc(struct drm_mm *mm, int atomic) | |||
| 103 | return child; | 103 | return child; |
| 104 | } | 104 | } |
| 105 | 105 | ||
| 106 | /* drm_mm_pre_get() - pre allocate drm_mm_node structure | ||
| 107 | * drm_mm: memory manager struct we are pre-allocating for | ||
| 108 | * | ||
| 109 | * Returns 0 on success or -ENOMEM if allocation fails. | ||
| 110 | */ | ||
| 106 | int drm_mm_pre_get(struct drm_mm *mm) | 111 | int drm_mm_pre_get(struct drm_mm *mm) |
| 107 | { | 112 | { |
| 108 | struct drm_mm_node *node; | 113 | struct drm_mm_node *node; |
| @@ -253,12 +258,14 @@ void drm_mm_put_block(struct drm_mm_node *cur) | |||
| 253 | prev_node->size += next_node->size; | 258 | prev_node->size += next_node->size; |
| 254 | list_del(&next_node->ml_entry); | 259 | list_del(&next_node->ml_entry); |
| 255 | list_del(&next_node->fl_entry); | 260 | list_del(&next_node->fl_entry); |
| 261 | spin_lock(&mm->unused_lock); | ||
| 256 | if (mm->num_unused < MM_UNUSED_TARGET) { | 262 | if (mm->num_unused < MM_UNUSED_TARGET) { |
| 257 | list_add(&next_node->fl_entry, | 263 | list_add(&next_node->fl_entry, |
| 258 | &mm->unused_nodes); | 264 | &mm->unused_nodes); |
| 259 | ++mm->num_unused; | 265 | ++mm->num_unused; |
| 260 | } else | 266 | } else |
| 261 | kfree(next_node); | 267 | kfree(next_node); |
| 268 | spin_unlock(&mm->unused_lock); | ||
| 262 | } else { | 269 | } else { |
| 263 | next_node->size += cur->size; | 270 | next_node->size += cur->size; |
| 264 | next_node->start = cur->start; | 271 | next_node->start = cur->start; |
| @@ -271,11 +278,13 @@ void drm_mm_put_block(struct drm_mm_node *cur) | |||
| 271 | list_add(&cur->fl_entry, &mm->fl_entry); | 278 | list_add(&cur->fl_entry, &mm->fl_entry); |
| 272 | } else { | 279 | } else { |
| 273 | list_del(&cur->ml_entry); | 280 | list_del(&cur->ml_entry); |
| 281 | spin_lock(&mm->unused_lock); | ||
| 274 | if (mm->num_unused < MM_UNUSED_TARGET) { | 282 | if (mm->num_unused < MM_UNUSED_TARGET) { |
| 275 | list_add(&cur->fl_entry, &mm->unused_nodes); | 283 | list_add(&cur->fl_entry, &mm->unused_nodes); |
| 276 | ++mm->num_unused; | 284 | ++mm->num_unused; |
| 277 | } else | 285 | } else |
| 278 | kfree(cur); | 286 | kfree(cur); |
| 287 | spin_unlock(&mm->unused_lock); | ||
| 279 | } | 288 | } |
| 280 | } | 289 | } |
| 281 | 290 | ||
diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c index f8ce9a3a420d..26bf0552b3cb 100644 --- a/drivers/gpu/drm/i915/i915_debugfs.c +++ b/drivers/gpu/drm/i915/i915_debugfs.c | |||
| @@ -267,10 +267,10 @@ static void i915_dump_pages(struct seq_file *m, struct page **pages, int page_co | |||
| 267 | uint32_t *mem; | 267 | uint32_t *mem; |
| 268 | 268 | ||
| 269 | for (page = 0; page < page_count; page++) { | 269 | for (page = 0; page < page_count; page++) { |
| 270 | mem = kmap(pages[page]); | 270 | mem = kmap_atomic(pages[page], KM_USER0); |
| 271 | for (i = 0; i < PAGE_SIZE; i += 4) | 271 | for (i = 0; i < PAGE_SIZE; i += 4) |
| 272 | seq_printf(m, "%08x : %08x\n", i, mem[i / 4]); | 272 | seq_printf(m, "%08x : %08x\n", i, mem[i / 4]); |
| 273 | kunmap(pages[page]); | 273 | kunmap_atomic(pages[page], KM_USER0); |
| 274 | } | 274 | } |
| 275 | } | 275 | } |
| 276 | 276 | ||
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index 57204e298975..a725f6591192 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h | |||
| @@ -296,6 +296,7 @@ typedef struct drm_i915_private { | |||
| 296 | u32 saveVBLANK_A; | 296 | u32 saveVBLANK_A; |
| 297 | u32 saveVSYNC_A; | 297 | u32 saveVSYNC_A; |
| 298 | u32 saveBCLRPAT_A; | 298 | u32 saveBCLRPAT_A; |
| 299 | u32 saveTRANSACONF; | ||
| 299 | u32 saveTRANS_HTOTAL_A; | 300 | u32 saveTRANS_HTOTAL_A; |
| 300 | u32 saveTRANS_HBLANK_A; | 301 | u32 saveTRANS_HBLANK_A; |
| 301 | u32 saveTRANS_HSYNC_A; | 302 | u32 saveTRANS_HSYNC_A; |
| @@ -326,6 +327,7 @@ typedef struct drm_i915_private { | |||
| 326 | u32 saveVBLANK_B; | 327 | u32 saveVBLANK_B; |
| 327 | u32 saveVSYNC_B; | 328 | u32 saveVSYNC_B; |
| 328 | u32 saveBCLRPAT_B; | 329 | u32 saveBCLRPAT_B; |
| 330 | u32 saveTRANSBCONF; | ||
| 329 | u32 saveTRANS_HTOTAL_B; | 331 | u32 saveTRANS_HTOTAL_B; |
| 330 | u32 saveTRANS_HBLANK_B; | 332 | u32 saveTRANS_HBLANK_B; |
| 331 | u32 saveTRANS_HSYNC_B; | 333 | u32 saveTRANS_HSYNC_B; |
| @@ -414,6 +416,16 @@ typedef struct drm_i915_private { | |||
| 414 | u32 savePFB_WIN_SZ; | 416 | u32 savePFB_WIN_SZ; |
| 415 | u32 savePFA_WIN_POS; | 417 | u32 savePFA_WIN_POS; |
| 416 | u32 savePFB_WIN_POS; | 418 | u32 savePFB_WIN_POS; |
| 419 | u32 savePCH_DREF_CONTROL; | ||
| 420 | u32 saveDISP_ARB_CTL; | ||
| 421 | u32 savePIPEA_DATA_M1; | ||
| 422 | u32 savePIPEA_DATA_N1; | ||
| 423 | u32 savePIPEA_LINK_M1; | ||
| 424 | u32 savePIPEA_LINK_N1; | ||
| 425 | u32 savePIPEB_DATA_M1; | ||
| 426 | u32 savePIPEB_DATA_N1; | ||
| 427 | u32 savePIPEB_LINK_M1; | ||
| 428 | u32 savePIPEB_LINK_N1; | ||
| 417 | 429 | ||
| 418 | struct { | 430 | struct { |
| 419 | struct drm_mm gtt_space; | 431 | struct drm_mm gtt_space; |
diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c index c3ceffa46ea0..aa7fd82aa6eb 100644 --- a/drivers/gpu/drm/i915/i915_irq.c +++ b/drivers/gpu/drm/i915/i915_irq.c | |||
| @@ -254,10 +254,15 @@ irqreturn_t igdng_irq_handler(struct drm_device *dev) | |||
| 254 | { | 254 | { |
| 255 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; | 255 | drm_i915_private_t *dev_priv = (drm_i915_private_t *) dev->dev_private; |
| 256 | int ret = IRQ_NONE; | 256 | int ret = IRQ_NONE; |
| 257 | u32 de_iir, gt_iir; | 257 | u32 de_iir, gt_iir, de_ier; |
| 258 | u32 new_de_iir, new_gt_iir; | 258 | u32 new_de_iir, new_gt_iir; |
| 259 | struct drm_i915_master_private *master_priv; | 259 | struct drm_i915_master_private *master_priv; |
| 260 | 260 | ||
| 261 | /* disable master interrupt before clearing iir */ | ||
| 262 | de_ier = I915_READ(DEIER); | ||
| 263 | I915_WRITE(DEIER, de_ier & ~DE_MASTER_IRQ_CONTROL); | ||
| 264 | (void)I915_READ(DEIER); | ||
| 265 | |||
| 261 | de_iir = I915_READ(DEIIR); | 266 | de_iir = I915_READ(DEIIR); |
| 262 | gt_iir = I915_READ(GTIIR); | 267 | gt_iir = I915_READ(GTIIR); |
| 263 | 268 | ||
| @@ -290,6 +295,9 @@ irqreturn_t igdng_irq_handler(struct drm_device *dev) | |||
| 290 | gt_iir = new_gt_iir; | 295 | gt_iir = new_gt_iir; |
| 291 | } | 296 | } |
| 292 | 297 | ||
| 298 | I915_WRITE(DEIER, de_ier); | ||
| 299 | (void)I915_READ(DEIER); | ||
| 300 | |||
| 293 | return ret; | 301 | return ret; |
| 294 | } | 302 | } |
| 295 | 303 | ||
diff --git a/drivers/gpu/drm/i915/i915_suspend.c b/drivers/gpu/drm/i915/i915_suspend.c index 992d5617e798..6eec8171a44e 100644 --- a/drivers/gpu/drm/i915/i915_suspend.c +++ b/drivers/gpu/drm/i915/i915_suspend.c | |||
| @@ -239,6 +239,11 @@ static void i915_save_modeset_reg(struct drm_device *dev) | |||
| 239 | if (drm_core_check_feature(dev, DRIVER_MODESET)) | 239 | if (drm_core_check_feature(dev, DRIVER_MODESET)) |
| 240 | return; | 240 | return; |
| 241 | 241 | ||
| 242 | if (IS_IGDNG(dev)) { | ||
| 243 | dev_priv->savePCH_DREF_CONTROL = I915_READ(PCH_DREF_CONTROL); | ||
| 244 | dev_priv->saveDISP_ARB_CTL = I915_READ(DISP_ARB_CTL); | ||
| 245 | } | ||
| 246 | |||
| 242 | /* Pipe & plane A info */ | 247 | /* Pipe & plane A info */ |
| 243 | dev_priv->savePIPEACONF = I915_READ(PIPEACONF); | 248 | dev_priv->savePIPEACONF = I915_READ(PIPEACONF); |
| 244 | dev_priv->savePIPEASRC = I915_READ(PIPEASRC); | 249 | dev_priv->savePIPEASRC = I915_READ(PIPEASRC); |
| @@ -263,6 +268,11 @@ static void i915_save_modeset_reg(struct drm_device *dev) | |||
| 263 | dev_priv->saveBCLRPAT_A = I915_READ(BCLRPAT_A); | 268 | dev_priv->saveBCLRPAT_A = I915_READ(BCLRPAT_A); |
| 264 | 269 | ||
| 265 | if (IS_IGDNG(dev)) { | 270 | if (IS_IGDNG(dev)) { |
| 271 | dev_priv->savePIPEA_DATA_M1 = I915_READ(PIPEA_DATA_M1); | ||
| 272 | dev_priv->savePIPEA_DATA_N1 = I915_READ(PIPEA_DATA_N1); | ||
| 273 | dev_priv->savePIPEA_LINK_M1 = I915_READ(PIPEA_LINK_M1); | ||
| 274 | dev_priv->savePIPEA_LINK_N1 = I915_READ(PIPEA_LINK_N1); | ||
| 275 | |||
| 266 | dev_priv->saveFDI_TXA_CTL = I915_READ(FDI_TXA_CTL); | 276 | dev_priv->saveFDI_TXA_CTL = I915_READ(FDI_TXA_CTL); |
| 267 | dev_priv->saveFDI_RXA_CTL = I915_READ(FDI_RXA_CTL); | 277 | dev_priv->saveFDI_RXA_CTL = I915_READ(FDI_RXA_CTL); |
| 268 | 278 | ||
| @@ -270,6 +280,7 @@ static void i915_save_modeset_reg(struct drm_device *dev) | |||
| 270 | dev_priv->savePFA_WIN_SZ = I915_READ(PFA_WIN_SZ); | 280 | dev_priv->savePFA_WIN_SZ = I915_READ(PFA_WIN_SZ); |
| 271 | dev_priv->savePFA_WIN_POS = I915_READ(PFA_WIN_POS); | 281 | dev_priv->savePFA_WIN_POS = I915_READ(PFA_WIN_POS); |
| 272 | 282 | ||
| 283 | dev_priv->saveTRANSACONF = I915_READ(TRANSACONF); | ||
| 273 | dev_priv->saveTRANS_HTOTAL_A = I915_READ(TRANS_HTOTAL_A); | 284 | dev_priv->saveTRANS_HTOTAL_A = I915_READ(TRANS_HTOTAL_A); |
| 274 | dev_priv->saveTRANS_HBLANK_A = I915_READ(TRANS_HBLANK_A); | 285 | dev_priv->saveTRANS_HBLANK_A = I915_READ(TRANS_HBLANK_A); |
| 275 | dev_priv->saveTRANS_HSYNC_A = I915_READ(TRANS_HSYNC_A); | 286 | dev_priv->saveTRANS_HSYNC_A = I915_READ(TRANS_HSYNC_A); |
| @@ -314,6 +325,11 @@ static void i915_save_modeset_reg(struct drm_device *dev) | |||
| 314 | dev_priv->saveBCLRPAT_B = I915_READ(BCLRPAT_B); | 325 | dev_priv->saveBCLRPAT_B = I915_READ(BCLRPAT_B); |
| 315 | 326 | ||
| 316 | if (IS_IGDNG(dev)) { | 327 | if (IS_IGDNG(dev)) { |
| 328 | dev_priv->savePIPEB_DATA_M1 = I915_READ(PIPEB_DATA_M1); | ||
| 329 | dev_priv->savePIPEB_DATA_N1 = I915_READ(PIPEB_DATA_N1); | ||
| 330 | dev_priv->savePIPEB_LINK_M1 = I915_READ(PIPEB_LINK_M1); | ||
| 331 | dev_priv->savePIPEB_LINK_N1 = I915_READ(PIPEB_LINK_N1); | ||
| 332 | |||
| 317 | dev_priv->saveFDI_TXB_CTL = I915_READ(FDI_TXB_CTL); | 333 | dev_priv->saveFDI_TXB_CTL = I915_READ(FDI_TXB_CTL); |
| 318 | dev_priv->saveFDI_RXB_CTL = I915_READ(FDI_RXB_CTL); | 334 | dev_priv->saveFDI_RXB_CTL = I915_READ(FDI_RXB_CTL); |
| 319 | 335 | ||
| @@ -321,6 +337,7 @@ static void i915_save_modeset_reg(struct drm_device *dev) | |||
| 321 | dev_priv->savePFB_WIN_SZ = I915_READ(PFB_WIN_SZ); | 337 | dev_priv->savePFB_WIN_SZ = I915_READ(PFB_WIN_SZ); |
| 322 | dev_priv->savePFB_WIN_POS = I915_READ(PFB_WIN_POS); | 338 | dev_priv->savePFB_WIN_POS = I915_READ(PFB_WIN_POS); |
| 323 | 339 | ||
| 340 | dev_priv->saveTRANSBCONF = I915_READ(TRANSBCONF); | ||
| 324 | dev_priv->saveTRANS_HTOTAL_B = I915_READ(TRANS_HTOTAL_B); | 341 | dev_priv->saveTRANS_HTOTAL_B = I915_READ(TRANS_HTOTAL_B); |
| 325 | dev_priv->saveTRANS_HBLANK_B = I915_READ(TRANS_HBLANK_B); | 342 | dev_priv->saveTRANS_HBLANK_B = I915_READ(TRANS_HBLANK_B); |
| 326 | dev_priv->saveTRANS_HSYNC_B = I915_READ(TRANS_HSYNC_B); | 343 | dev_priv->saveTRANS_HSYNC_B = I915_READ(TRANS_HSYNC_B); |
| @@ -368,6 +385,11 @@ static void i915_restore_modeset_reg(struct drm_device *dev) | |||
| 368 | fpb1_reg = FPB1; | 385 | fpb1_reg = FPB1; |
| 369 | } | 386 | } |
| 370 | 387 | ||
| 388 | if (IS_IGDNG(dev)) { | ||
| 389 | I915_WRITE(PCH_DREF_CONTROL, dev_priv->savePCH_DREF_CONTROL); | ||
| 390 | I915_WRITE(DISP_ARB_CTL, dev_priv->saveDISP_ARB_CTL); | ||
| 391 | } | ||
| 392 | |||
| 371 | /* Pipe & plane A info */ | 393 | /* Pipe & plane A info */ |
| 372 | /* Prime the clock */ | 394 | /* Prime the clock */ |
| 373 | if (dev_priv->saveDPLL_A & DPLL_VCO_ENABLE) { | 395 | if (dev_priv->saveDPLL_A & DPLL_VCO_ENABLE) { |
| @@ -395,6 +417,11 @@ static void i915_restore_modeset_reg(struct drm_device *dev) | |||
| 395 | I915_WRITE(BCLRPAT_A, dev_priv->saveBCLRPAT_A); | 417 | I915_WRITE(BCLRPAT_A, dev_priv->saveBCLRPAT_A); |
| 396 | 418 | ||
| 397 | if (IS_IGDNG(dev)) { | 419 | if (IS_IGDNG(dev)) { |
| 420 | I915_WRITE(PIPEA_DATA_M1, dev_priv->savePIPEA_DATA_M1); | ||
| 421 | I915_WRITE(PIPEA_DATA_N1, dev_priv->savePIPEA_DATA_N1); | ||
| 422 | I915_WRITE(PIPEA_LINK_M1, dev_priv->savePIPEA_LINK_M1); | ||
| 423 | I915_WRITE(PIPEA_LINK_N1, dev_priv->savePIPEA_LINK_N1); | ||
| 424 | |||
| 398 | I915_WRITE(FDI_RXA_CTL, dev_priv->saveFDI_RXA_CTL); | 425 | I915_WRITE(FDI_RXA_CTL, dev_priv->saveFDI_RXA_CTL); |
| 399 | I915_WRITE(FDI_TXA_CTL, dev_priv->saveFDI_TXA_CTL); | 426 | I915_WRITE(FDI_TXA_CTL, dev_priv->saveFDI_TXA_CTL); |
| 400 | 427 | ||
| @@ -402,6 +429,7 @@ static void i915_restore_modeset_reg(struct drm_device *dev) | |||
| 402 | I915_WRITE(PFA_WIN_SZ, dev_priv->savePFA_WIN_SZ); | 429 | I915_WRITE(PFA_WIN_SZ, dev_priv->savePFA_WIN_SZ); |
| 403 | I915_WRITE(PFA_WIN_POS, dev_priv->savePFA_WIN_POS); | 430 | I915_WRITE(PFA_WIN_POS, dev_priv->savePFA_WIN_POS); |
| 404 | 431 | ||
| 432 | I915_WRITE(TRANSACONF, dev_priv->saveTRANSACONF); | ||
| 405 | I915_WRITE(TRANS_HTOTAL_A, dev_priv->saveTRANS_HTOTAL_A); | 433 | I915_WRITE(TRANS_HTOTAL_A, dev_priv->saveTRANS_HTOTAL_A); |
| 406 | I915_WRITE(TRANS_HBLANK_A, dev_priv->saveTRANS_HBLANK_A); | 434 | I915_WRITE(TRANS_HBLANK_A, dev_priv->saveTRANS_HBLANK_A); |
| 407 | I915_WRITE(TRANS_HSYNC_A, dev_priv->saveTRANS_HSYNC_A); | 435 | I915_WRITE(TRANS_HSYNC_A, dev_priv->saveTRANS_HSYNC_A); |
| @@ -439,7 +467,7 @@ static void i915_restore_modeset_reg(struct drm_device *dev) | |||
| 439 | /* Actually enable it */ | 467 | /* Actually enable it */ |
| 440 | I915_WRITE(dpll_b_reg, dev_priv->saveDPLL_B); | 468 | I915_WRITE(dpll_b_reg, dev_priv->saveDPLL_B); |
| 441 | DRM_UDELAY(150); | 469 | DRM_UDELAY(150); |
| 442 | if (IS_I965G(dev)) | 470 | if (IS_I965G(dev) && !IS_IGDNG(dev)) |
| 443 | I915_WRITE(DPLL_B_MD, dev_priv->saveDPLL_B_MD); | 471 | I915_WRITE(DPLL_B_MD, dev_priv->saveDPLL_B_MD); |
| 444 | DRM_UDELAY(150); | 472 | DRM_UDELAY(150); |
| 445 | 473 | ||
| @@ -454,6 +482,11 @@ static void i915_restore_modeset_reg(struct drm_device *dev) | |||
| 454 | I915_WRITE(BCLRPAT_B, dev_priv->saveBCLRPAT_B); | 482 | I915_WRITE(BCLRPAT_B, dev_priv->saveBCLRPAT_B); |
| 455 | 483 | ||
| 456 | if (IS_IGDNG(dev)) { | 484 | if (IS_IGDNG(dev)) { |
| 485 | I915_WRITE(PIPEB_DATA_M1, dev_priv->savePIPEB_DATA_M1); | ||
| 486 | I915_WRITE(PIPEB_DATA_N1, dev_priv->savePIPEB_DATA_N1); | ||
| 487 | I915_WRITE(PIPEB_LINK_M1, dev_priv->savePIPEB_LINK_M1); | ||
| 488 | I915_WRITE(PIPEB_LINK_N1, dev_priv->savePIPEB_LINK_N1); | ||
| 489 | |||
| 457 | I915_WRITE(FDI_RXB_CTL, dev_priv->saveFDI_RXB_CTL); | 490 | I915_WRITE(FDI_RXB_CTL, dev_priv->saveFDI_RXB_CTL); |
| 458 | I915_WRITE(FDI_TXB_CTL, dev_priv->saveFDI_TXB_CTL); | 491 | I915_WRITE(FDI_TXB_CTL, dev_priv->saveFDI_TXB_CTL); |
| 459 | 492 | ||
| @@ -461,6 +494,7 @@ static void i915_restore_modeset_reg(struct drm_device *dev) | |||
| 461 | I915_WRITE(PFB_WIN_SZ, dev_priv->savePFB_WIN_SZ); | 494 | I915_WRITE(PFB_WIN_SZ, dev_priv->savePFB_WIN_SZ); |
| 462 | I915_WRITE(PFB_WIN_POS, dev_priv->savePFB_WIN_POS); | 495 | I915_WRITE(PFB_WIN_POS, dev_priv->savePFB_WIN_POS); |
| 463 | 496 | ||
| 497 | I915_WRITE(TRANSBCONF, dev_priv->saveTRANSBCONF); | ||
| 464 | I915_WRITE(TRANS_HTOTAL_B, dev_priv->saveTRANS_HTOTAL_B); | 498 | I915_WRITE(TRANS_HTOTAL_B, dev_priv->saveTRANS_HTOTAL_B); |
| 465 | I915_WRITE(TRANS_HBLANK_B, dev_priv->saveTRANS_HBLANK_B); | 499 | I915_WRITE(TRANS_HBLANK_B, dev_priv->saveTRANS_HBLANK_B); |
| 466 | I915_WRITE(TRANS_HSYNC_B, dev_priv->saveTRANS_HSYNC_B); | 500 | I915_WRITE(TRANS_HSYNC_B, dev_priv->saveTRANS_HSYNC_B); |
diff --git a/drivers/gpu/drm/i915/intel_crt.c b/drivers/gpu/drm/i915/intel_crt.c index 212e22740fc1..e5051446c48e 100644 --- a/drivers/gpu/drm/i915/intel_crt.c +++ b/drivers/gpu/drm/i915/intel_crt.c | |||
| @@ -262,8 +262,8 @@ static bool intel_crt_detect_hotplug(struct drm_connector *connector) | |||
| 262 | } while (time_after(timeout, jiffies)); | 262 | } while (time_after(timeout, jiffies)); |
| 263 | } | 263 | } |
| 264 | 264 | ||
| 265 | if ((I915_READ(PORT_HOTPLUG_STAT) & CRT_HOTPLUG_MONITOR_MASK) == | 265 | if ((I915_READ(PORT_HOTPLUG_STAT) & CRT_HOTPLUG_MONITOR_MASK) != |
| 266 | CRT_HOTPLUG_MONITOR_COLOR) | 266 | CRT_HOTPLUG_MONITOR_NONE) |
| 267 | return true; | 267 | return true; |
| 268 | 268 | ||
| 269 | return false; | 269 | return false; |
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c index ccd180dce4cc..897230832c8c 100644 --- a/drivers/gpu/drm/i915/intel_display.c +++ b/drivers/gpu/drm/i915/intel_display.c | |||
| @@ -863,10 +863,8 @@ intel_igdng_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, | |||
| 863 | struct drm_device *dev = crtc->dev; | 863 | struct drm_device *dev = crtc->dev; |
| 864 | struct drm_i915_private *dev_priv = dev->dev_private; | 864 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 865 | intel_clock_t clock; | 865 | intel_clock_t clock; |
| 866 | int max_n; | ||
| 867 | bool found; | ||
| 868 | int err_most = 47; | 866 | int err_most = 47; |
| 869 | found = false; | 867 | int err_min = 10000; |
| 870 | 868 | ||
| 871 | /* eDP has only 2 clock choice, no n/m/p setting */ | 869 | /* eDP has only 2 clock choice, no n/m/p setting */ |
| 872 | if (HAS_eDP) | 870 | if (HAS_eDP) |
| @@ -890,10 +888,9 @@ intel_igdng_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, | |||
| 890 | } | 888 | } |
| 891 | 889 | ||
| 892 | memset(best_clock, 0, sizeof(*best_clock)); | 890 | memset(best_clock, 0, sizeof(*best_clock)); |
| 893 | max_n = limit->n.max; | ||
| 894 | for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) { | 891 | for (clock.p1 = limit->p1.max; clock.p1 >= limit->p1.min; clock.p1--) { |
| 895 | /* based on hardware requriment prefer smaller n to precision */ | 892 | /* based on hardware requriment prefer smaller n to precision */ |
| 896 | for (clock.n = limit->n.min; clock.n <= max_n; clock.n++) { | 893 | for (clock.n = limit->n.min; clock.n <= limit->n.max; clock.n++) { |
| 897 | /* based on hardware requirment prefere larger m1,m2 */ | 894 | /* based on hardware requirment prefere larger m1,m2 */ |
| 898 | for (clock.m1 = limit->m1.max; | 895 | for (clock.m1 = limit->m1.max; |
| 899 | clock.m1 >= limit->m1.min; clock.m1--) { | 896 | clock.m1 >= limit->m1.min; clock.m1--) { |
| @@ -907,18 +904,18 @@ intel_igdng_find_best_PLL(const intel_limit_t *limit, struct drm_crtc *crtc, | |||
| 907 | this_err = abs((10000 - (target*10000/clock.dot))); | 904 | this_err = abs((10000 - (target*10000/clock.dot))); |
| 908 | if (this_err < err_most) { | 905 | if (this_err < err_most) { |
| 909 | *best_clock = clock; | 906 | *best_clock = clock; |
| 910 | err_most = this_err; | ||
| 911 | max_n = clock.n; | ||
| 912 | found = true; | ||
| 913 | /* found on first matching */ | 907 | /* found on first matching */ |
| 914 | goto out; | 908 | goto out; |
| 909 | } else if (this_err < err_min) { | ||
| 910 | *best_clock = clock; | ||
| 911 | err_min = this_err; | ||
| 915 | } | 912 | } |
| 916 | } | 913 | } |
| 917 | } | 914 | } |
| 918 | } | 915 | } |
| 919 | } | 916 | } |
| 920 | out: | 917 | out: |
| 921 | return found; | 918 | return true; |
| 922 | } | 919 | } |
| 923 | 920 | ||
| 924 | /* DisplayPort has only two frequencies, 162MHz and 270MHz */ | 921 | /* DisplayPort has only two frequencies, 162MHz and 270MHz */ |
diff --git a/drivers/gpu/drm/i915/intel_hdmi.c b/drivers/gpu/drm/i915/intel_hdmi.c index 663ab6de0b58..c33451aec1bd 100644 --- a/drivers/gpu/drm/i915/intel_hdmi.c +++ b/drivers/gpu/drm/i915/intel_hdmi.c | |||
| @@ -77,14 +77,32 @@ static void intel_hdmi_dpms(struct drm_encoder *encoder, int mode) | |||
| 77 | struct intel_hdmi_priv *hdmi_priv = intel_output->dev_priv; | 77 | struct intel_hdmi_priv *hdmi_priv = intel_output->dev_priv; |
| 78 | u32 temp; | 78 | u32 temp; |
| 79 | 79 | ||
| 80 | if (mode != DRM_MODE_DPMS_ON) { | 80 | temp = I915_READ(hdmi_priv->sdvox_reg); |
| 81 | temp = I915_READ(hdmi_priv->sdvox_reg); | 81 | |
| 82 | /* HW workaround, need to toggle enable bit off and on for 12bpc, but | ||
| 83 | * we do this anyway which shows more stable in testing. | ||
| 84 | */ | ||
| 85 | if (IS_IGDNG(dev)) { | ||
| 82 | I915_WRITE(hdmi_priv->sdvox_reg, temp & ~SDVO_ENABLE); | 86 | I915_WRITE(hdmi_priv->sdvox_reg, temp & ~SDVO_ENABLE); |
| 87 | POSTING_READ(hdmi_priv->sdvox_reg); | ||
| 88 | } | ||
| 89 | |||
| 90 | if (mode != DRM_MODE_DPMS_ON) { | ||
| 91 | temp &= ~SDVO_ENABLE; | ||
| 83 | } else { | 92 | } else { |
| 84 | temp = I915_READ(hdmi_priv->sdvox_reg); | 93 | temp |= SDVO_ENABLE; |
| 85 | I915_WRITE(hdmi_priv->sdvox_reg, temp | SDVO_ENABLE); | ||
| 86 | } | 94 | } |
| 95 | |||
| 96 | I915_WRITE(hdmi_priv->sdvox_reg, temp); | ||
| 87 | POSTING_READ(hdmi_priv->sdvox_reg); | 97 | POSTING_READ(hdmi_priv->sdvox_reg); |
| 98 | |||
| 99 | /* HW workaround, need to write this twice for issue that may result | ||
| 100 | * in first write getting masked. | ||
| 101 | */ | ||
| 102 | if (IS_IGDNG(dev)) { | ||
| 103 | I915_WRITE(hdmi_priv->sdvox_reg, temp); | ||
| 104 | POSTING_READ(hdmi_priv->sdvox_reg); | ||
| 105 | } | ||
| 88 | } | 106 | } |
| 89 | 107 | ||
| 90 | static void intel_hdmi_save(struct drm_connector *connector) | 108 | static void intel_hdmi_save(struct drm_connector *connector) |
diff --git a/drivers/gpu/drm/radeon/Makefile b/drivers/gpu/drm/radeon/Makefile index 09a28923f46e..b5713eedd6e1 100644 --- a/drivers/gpu/drm/radeon/Makefile +++ b/drivers/gpu/drm/radeon/Makefile | |||
| @@ -49,7 +49,7 @@ radeon-y += radeon_device.o radeon_kms.o \ | |||
| 49 | radeon_cs.o radeon_bios.o radeon_benchmark.o r100.o r300.o r420.o \ | 49 | radeon_cs.o radeon_bios.o radeon_benchmark.o r100.o r300.o r420.o \ |
| 50 | rs400.o rs600.o rs690.o rv515.o r520.o r600.o rv770.o radeon_test.o \ | 50 | rs400.o rs600.o rs690.o rv515.o r520.o r600.o rv770.o radeon_test.o \ |
| 51 | r200.o radeon_legacy_tv.o r600_cs.o r600_blit.o r600_blit_shaders.o \ | 51 | r200.o radeon_legacy_tv.o r600_cs.o r600_blit.o r600_blit_shaders.o \ |
| 52 | r600_blit_kms.o | 52 | r600_blit_kms.o radeon_pm.o |
| 53 | 53 | ||
| 54 | radeon-$(CONFIG_COMPAT) += radeon_ioc32.o | 54 | radeon-$(CONFIG_COMPAT) += radeon_ioc32.o |
| 55 | 55 | ||
diff --git a/drivers/gpu/drm/radeon/atom.c b/drivers/gpu/drm/radeon/atom.c index 901befe03da2..d67c42555ab9 100644 --- a/drivers/gpu/drm/radeon/atom.c +++ b/drivers/gpu/drm/radeon/atom.c | |||
| @@ -107,6 +107,7 @@ static uint32_t atom_iio_execute(struct atom_context *ctx, int base, | |||
| 107 | base += 3; | 107 | base += 3; |
| 108 | break; | 108 | break; |
| 109 | case ATOM_IIO_WRITE: | 109 | case ATOM_IIO_WRITE: |
| 110 | (void)ctx->card->reg_read(ctx->card, CU16(base + 1)); | ||
| 110 | ctx->card->reg_write(ctx->card, CU16(base + 1), temp); | 111 | ctx->card->reg_write(ctx->card, CU16(base + 1), temp); |
| 111 | base += 3; | 112 | base += 3; |
| 112 | break; | 113 | break; |
diff --git a/drivers/gpu/drm/radeon/atombios.h b/drivers/gpu/drm/radeon/atombios.h index 5d402086bc47..c11ddddfb3b6 100644 --- a/drivers/gpu/drm/radeon/atombios.h +++ b/drivers/gpu/drm/radeon/atombios.h | |||
| @@ -2314,7 +2314,7 @@ typedef struct _ATOM_SPREAD_SPECTRUM_ASSIGNMENT { | |||
| 2314 | UCHAR ucSS_Step; | 2314 | UCHAR ucSS_Step; |
| 2315 | UCHAR ucSS_Delay; | 2315 | UCHAR ucSS_Delay; |
| 2316 | UCHAR ucSS_Id; | 2316 | UCHAR ucSS_Id; |
| 2317 | UCHAR ucRecommandedRef_Div; | 2317 | UCHAR ucRecommendedRef_Div; |
| 2318 | UCHAR ucSS_Range; /* it was reserved for V11 */ | 2318 | UCHAR ucSS_Range; /* it was reserved for V11 */ |
| 2319 | } ATOM_SPREAD_SPECTRUM_ASSIGNMENT; | 2319 | } ATOM_SPREAD_SPECTRUM_ASSIGNMENT; |
| 2320 | 2320 | ||
diff --git a/drivers/gpu/drm/radeon/atombios_crtc.c b/drivers/gpu/drm/radeon/atombios_crtc.c index 14fa9701aeb3..c15287a590ff 100644 --- a/drivers/gpu/drm/radeon/atombios_crtc.c +++ b/drivers/gpu/drm/radeon/atombios_crtc.c | |||
| @@ -31,10 +31,6 @@ | |||
| 31 | #include "atom.h" | 31 | #include "atom.h" |
| 32 | #include "atom-bits.h" | 32 | #include "atom-bits.h" |
| 33 | 33 | ||
| 34 | /* evil but including atombios.h is much worse */ | ||
| 35 | bool radeon_atom_get_tv_timings(struct radeon_device *rdev, int index, | ||
| 36 | SET_CRTC_TIMING_PARAMETERS_PS_ALLOCATION *crtc_timing, | ||
| 37 | int32_t *pixel_clock); | ||
| 38 | static void atombios_overscan_setup(struct drm_crtc *crtc, | 34 | static void atombios_overscan_setup(struct drm_crtc *crtc, |
| 39 | struct drm_display_mode *mode, | 35 | struct drm_display_mode *mode, |
| 40 | struct drm_display_mode *adjusted_mode) | 36 | struct drm_display_mode *adjusted_mode) |
| @@ -248,18 +244,18 @@ void atombios_crtc_dpms(struct drm_crtc *crtc, int mode) | |||
| 248 | 244 | ||
| 249 | switch (mode) { | 245 | switch (mode) { |
| 250 | case DRM_MODE_DPMS_ON: | 246 | case DRM_MODE_DPMS_ON: |
| 247 | atombios_enable_crtc(crtc, 1); | ||
| 251 | if (ASIC_IS_DCE3(rdev)) | 248 | if (ASIC_IS_DCE3(rdev)) |
| 252 | atombios_enable_crtc_memreq(crtc, 1); | 249 | atombios_enable_crtc_memreq(crtc, 1); |
| 253 | atombios_enable_crtc(crtc, 1); | ||
| 254 | atombios_blank_crtc(crtc, 0); | 250 | atombios_blank_crtc(crtc, 0); |
| 255 | break; | 251 | break; |
| 256 | case DRM_MODE_DPMS_STANDBY: | 252 | case DRM_MODE_DPMS_STANDBY: |
| 257 | case DRM_MODE_DPMS_SUSPEND: | 253 | case DRM_MODE_DPMS_SUSPEND: |
| 258 | case DRM_MODE_DPMS_OFF: | 254 | case DRM_MODE_DPMS_OFF: |
| 259 | atombios_blank_crtc(crtc, 1); | 255 | atombios_blank_crtc(crtc, 1); |
| 260 | atombios_enable_crtc(crtc, 0); | ||
| 261 | if (ASIC_IS_DCE3(rdev)) | 256 | if (ASIC_IS_DCE3(rdev)) |
| 262 | atombios_enable_crtc_memreq(crtc, 0); | 257 | atombios_enable_crtc_memreq(crtc, 0); |
| 258 | atombios_enable_crtc(crtc, 0); | ||
| 263 | break; | 259 | break; |
| 264 | } | 260 | } |
| 265 | 261 | ||
| @@ -270,59 +266,147 @@ void atombios_crtc_dpms(struct drm_crtc *crtc, int mode) | |||
| 270 | 266 | ||
| 271 | static void | 267 | static void |
| 272 | atombios_set_crtc_dtd_timing(struct drm_crtc *crtc, | 268 | atombios_set_crtc_dtd_timing(struct drm_crtc *crtc, |
| 273 | SET_CRTC_USING_DTD_TIMING_PARAMETERS * crtc_param) | 269 | struct drm_display_mode *mode) |
| 274 | { | 270 | { |
| 271 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); | ||
| 275 | struct drm_device *dev = crtc->dev; | 272 | struct drm_device *dev = crtc->dev; |
| 276 | struct radeon_device *rdev = dev->dev_private; | 273 | struct radeon_device *rdev = dev->dev_private; |
| 277 | SET_CRTC_USING_DTD_TIMING_PARAMETERS conv_param; | 274 | SET_CRTC_USING_DTD_TIMING_PARAMETERS args; |
| 278 | int index = GetIndexIntoMasterTable(COMMAND, SetCRTC_UsingDTDTiming); | 275 | int index = GetIndexIntoMasterTable(COMMAND, SetCRTC_UsingDTDTiming); |
| 276 | u16 misc = 0; | ||
| 279 | 277 | ||
| 280 | conv_param.usH_Size = cpu_to_le16(crtc_param->usH_Size); | 278 | memset(&args, 0, sizeof(args)); |
| 281 | conv_param.usH_Blanking_Time = | 279 | args.usH_Size = cpu_to_le16(mode->crtc_hdisplay); |
| 282 | cpu_to_le16(crtc_param->usH_Blanking_Time); | 280 | args.usH_Blanking_Time = |
| 283 | conv_param.usV_Size = cpu_to_le16(crtc_param->usV_Size); | 281 | cpu_to_le16(mode->crtc_hblank_end - mode->crtc_hdisplay); |
| 284 | conv_param.usV_Blanking_Time = | 282 | args.usV_Size = cpu_to_le16(mode->crtc_vdisplay); |
| 285 | cpu_to_le16(crtc_param->usV_Blanking_Time); | 283 | args.usV_Blanking_Time = |
| 286 | conv_param.usH_SyncOffset = cpu_to_le16(crtc_param->usH_SyncOffset); | 284 | cpu_to_le16(mode->crtc_vblank_end - mode->crtc_vdisplay); |
| 287 | conv_param.usH_SyncWidth = cpu_to_le16(crtc_param->usH_SyncWidth); | 285 | args.usH_SyncOffset = |
| 288 | conv_param.usV_SyncOffset = cpu_to_le16(crtc_param->usV_SyncOffset); | 286 | cpu_to_le16(mode->crtc_hsync_start - mode->crtc_hdisplay); |
| 289 | conv_param.usV_SyncWidth = cpu_to_le16(crtc_param->usV_SyncWidth); | 287 | args.usH_SyncWidth = |
| 290 | conv_param.susModeMiscInfo.usAccess = | 288 | cpu_to_le16(mode->crtc_hsync_end - mode->crtc_hsync_start); |
| 291 | cpu_to_le16(crtc_param->susModeMiscInfo.usAccess); | 289 | args.usV_SyncOffset = |
| 292 | conv_param.ucCRTC = crtc_param->ucCRTC; | 290 | cpu_to_le16(mode->crtc_vsync_start - mode->crtc_vdisplay); |
| 291 | args.usV_SyncWidth = | ||
| 292 | cpu_to_le16(mode->crtc_vsync_end - mode->crtc_vsync_start); | ||
| 293 | /*args.ucH_Border = mode->hborder;*/ | ||
| 294 | /*args.ucV_Border = mode->vborder;*/ | ||
| 295 | |||
| 296 | if (mode->flags & DRM_MODE_FLAG_NVSYNC) | ||
| 297 | misc |= ATOM_VSYNC_POLARITY; | ||
| 298 | if (mode->flags & DRM_MODE_FLAG_NHSYNC) | ||
| 299 | misc |= ATOM_HSYNC_POLARITY; | ||
| 300 | if (mode->flags & DRM_MODE_FLAG_CSYNC) | ||
| 301 | misc |= ATOM_COMPOSITESYNC; | ||
| 302 | if (mode->flags & DRM_MODE_FLAG_INTERLACE) | ||
| 303 | misc |= ATOM_INTERLACE; | ||
| 304 | if (mode->flags & DRM_MODE_FLAG_DBLSCAN) | ||
| 305 | misc |= ATOM_DOUBLE_CLOCK_MODE; | ||
| 306 | |||
| 307 | args.susModeMiscInfo.usAccess = cpu_to_le16(misc); | ||
| 308 | args.ucCRTC = radeon_crtc->crtc_id; | ||
| 293 | 309 | ||
| 294 | printk("executing set crtc dtd timing\n"); | 310 | printk("executing set crtc dtd timing\n"); |
| 295 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&conv_param); | 311 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 296 | } | 312 | } |
| 297 | 313 | ||
| 298 | void atombios_crtc_set_timing(struct drm_crtc *crtc, | 314 | static void atombios_crtc_set_timing(struct drm_crtc *crtc, |
| 299 | SET_CRTC_TIMING_PARAMETERS_PS_ALLOCATION * | 315 | struct drm_display_mode *mode) |
| 300 | crtc_param) | ||
| 301 | { | 316 | { |
| 317 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); | ||
| 302 | struct drm_device *dev = crtc->dev; | 318 | struct drm_device *dev = crtc->dev; |
| 303 | struct radeon_device *rdev = dev->dev_private; | 319 | struct radeon_device *rdev = dev->dev_private; |
| 304 | SET_CRTC_TIMING_PARAMETERS_PS_ALLOCATION conv_param; | 320 | SET_CRTC_TIMING_PARAMETERS_PS_ALLOCATION args; |
| 305 | int index = GetIndexIntoMasterTable(COMMAND, SetCRTC_Timing); | 321 | int index = GetIndexIntoMasterTable(COMMAND, SetCRTC_Timing); |
| 322 | u16 misc = 0; | ||
| 306 | 323 | ||
| 307 | conv_param.usH_Total = cpu_to_le16(crtc_param->usH_Total); | 324 | memset(&args, 0, sizeof(args)); |
| 308 | conv_param.usH_Disp = cpu_to_le16(crtc_param->usH_Disp); | 325 | args.usH_Total = cpu_to_le16(mode->crtc_htotal); |
| 309 | conv_param.usH_SyncStart = cpu_to_le16(crtc_param->usH_SyncStart); | 326 | args.usH_Disp = cpu_to_le16(mode->crtc_hdisplay); |
| 310 | conv_param.usH_SyncWidth = cpu_to_le16(crtc_param->usH_SyncWidth); | 327 | args.usH_SyncStart = cpu_to_le16(mode->crtc_hsync_start); |
| 311 | conv_param.usV_Total = cpu_to_le16(crtc_param->usV_Total); | 328 | args.usH_SyncWidth = |
| 312 | conv_param.usV_Disp = cpu_to_le16(crtc_param->usV_Disp); | 329 | cpu_to_le16(mode->crtc_hsync_end - mode->crtc_hsync_start); |
| 313 | conv_param.usV_SyncStart = cpu_to_le16(crtc_param->usV_SyncStart); | 330 | args.usV_Total = cpu_to_le16(mode->crtc_vtotal); |
| 314 | conv_param.usV_SyncWidth = cpu_to_le16(crtc_param->usV_SyncWidth); | 331 | args.usV_Disp = cpu_to_le16(mode->crtc_vdisplay); |
| 315 | conv_param.susModeMiscInfo.usAccess = | 332 | args.usV_SyncStart = cpu_to_le16(mode->crtc_vsync_start); |
| 316 | cpu_to_le16(crtc_param->susModeMiscInfo.usAccess); | 333 | args.usV_SyncWidth = |
| 317 | conv_param.ucCRTC = crtc_param->ucCRTC; | 334 | cpu_to_le16(mode->crtc_vsync_end - mode->crtc_vsync_start); |
| 318 | conv_param.ucOverscanRight = crtc_param->ucOverscanRight; | 335 | |
| 319 | conv_param.ucOverscanLeft = crtc_param->ucOverscanLeft; | 336 | if (mode->flags & DRM_MODE_FLAG_NVSYNC) |
| 320 | conv_param.ucOverscanBottom = crtc_param->ucOverscanBottom; | 337 | misc |= ATOM_VSYNC_POLARITY; |
| 321 | conv_param.ucOverscanTop = crtc_param->ucOverscanTop; | 338 | if (mode->flags & DRM_MODE_FLAG_NHSYNC) |
| 322 | conv_param.ucReserved = crtc_param->ucReserved; | 339 | misc |= ATOM_HSYNC_POLARITY; |
| 340 | if (mode->flags & DRM_MODE_FLAG_CSYNC) | ||
| 341 | misc |= ATOM_COMPOSITESYNC; | ||
| 342 | if (mode->flags & DRM_MODE_FLAG_INTERLACE) | ||
| 343 | misc |= ATOM_INTERLACE; | ||
| 344 | if (mode->flags & DRM_MODE_FLAG_DBLSCAN) | ||
| 345 | misc |= ATOM_DOUBLE_CLOCK_MODE; | ||
| 346 | |||
| 347 | args.susModeMiscInfo.usAccess = cpu_to_le16(misc); | ||
| 348 | args.ucCRTC = radeon_crtc->crtc_id; | ||
| 323 | 349 | ||
| 324 | printk("executing set crtc timing\n"); | 350 | printk("executing set crtc timing\n"); |
| 325 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&conv_param); | 351 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 352 | } | ||
| 353 | |||
| 354 | static void atombios_set_ss(struct drm_crtc *crtc, int enable) | ||
| 355 | { | ||
| 356 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); | ||
| 357 | struct drm_device *dev = crtc->dev; | ||
| 358 | struct radeon_device *rdev = dev->dev_private; | ||
| 359 | struct drm_encoder *encoder = NULL; | ||
| 360 | struct radeon_encoder *radeon_encoder = NULL; | ||
| 361 | struct radeon_encoder_atom_dig *dig = NULL; | ||
| 362 | int index = GetIndexIntoMasterTable(COMMAND, EnableSpreadSpectrumOnPPLL); | ||
| 363 | ENABLE_SPREAD_SPECTRUM_ON_PPLL_PS_ALLOCATION args; | ||
| 364 | ENABLE_LVDS_SS_PARAMETERS legacy_args; | ||
| 365 | uint16_t percentage = 0; | ||
| 366 | uint8_t type = 0, step = 0, delay = 0, range = 0; | ||
| 367 | |||
| 368 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { | ||
| 369 | if (encoder->crtc == crtc) { | ||
| 370 | radeon_encoder = to_radeon_encoder(encoder); | ||
| 371 | /* only enable spread spectrum on LVDS */ | ||
| 372 | if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) { | ||
| 373 | dig = radeon_encoder->enc_priv; | ||
| 374 | if (dig && dig->ss) { | ||
| 375 | percentage = dig->ss->percentage; | ||
| 376 | type = dig->ss->type; | ||
| 377 | step = dig->ss->step; | ||
| 378 | delay = dig->ss->delay; | ||
| 379 | range = dig->ss->range; | ||
| 380 | } else if (enable) | ||
| 381 | return; | ||
| 382 | } else if (enable) | ||
| 383 | return; | ||
| 384 | break; | ||
| 385 | } | ||
| 386 | } | ||
| 387 | |||
| 388 | if (!radeon_encoder) | ||
| 389 | return; | ||
| 390 | |||
| 391 | if (ASIC_IS_AVIVO(rdev)) { | ||
| 392 | memset(&args, 0, sizeof(args)); | ||
| 393 | args.usSpreadSpectrumPercentage = cpu_to_le16(percentage); | ||
| 394 | args.ucSpreadSpectrumType = type; | ||
| 395 | args.ucSpreadSpectrumStep = step; | ||
| 396 | args.ucSpreadSpectrumDelay = delay; | ||
| 397 | args.ucSpreadSpectrumRange = range; | ||
| 398 | args.ucPpll = radeon_crtc->crtc_id ? ATOM_PPLL2 : ATOM_PPLL1; | ||
| 399 | args.ucEnable = enable; | ||
| 400 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); | ||
| 401 | } else { | ||
| 402 | memset(&legacy_args, 0, sizeof(legacy_args)); | ||
| 403 | legacy_args.usSpreadSpectrumPercentage = cpu_to_le16(percentage); | ||
| 404 | legacy_args.ucSpreadSpectrumType = type; | ||
| 405 | legacy_args.ucSpreadSpectrumStepSize_Delay = (step & 3) << 2; | ||
| 406 | legacy_args.ucSpreadSpectrumStepSize_Delay |= (delay & 7) << 4; | ||
| 407 | legacy_args.ucEnable = enable; | ||
| 408 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&legacy_args); | ||
| 409 | } | ||
| 326 | } | 410 | } |
| 327 | 411 | ||
| 328 | void atombios_crtc_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode) | 412 | void atombios_crtc_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode) |
| @@ -333,12 +417,13 @@ void atombios_crtc_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode) | |||
| 333 | struct drm_encoder *encoder = NULL; | 417 | struct drm_encoder *encoder = NULL; |
| 334 | struct radeon_encoder *radeon_encoder = NULL; | 418 | struct radeon_encoder *radeon_encoder = NULL; |
| 335 | uint8_t frev, crev; | 419 | uint8_t frev, crev; |
| 336 | int index = GetIndexIntoMasterTable(COMMAND, SetPixelClock); | 420 | int index; |
| 337 | SET_PIXEL_CLOCK_PS_ALLOCATION args; | 421 | SET_PIXEL_CLOCK_PS_ALLOCATION args; |
| 338 | PIXEL_CLOCK_PARAMETERS *spc1_ptr; | 422 | PIXEL_CLOCK_PARAMETERS *spc1_ptr; |
| 339 | PIXEL_CLOCK_PARAMETERS_V2 *spc2_ptr; | 423 | PIXEL_CLOCK_PARAMETERS_V2 *spc2_ptr; |
| 340 | PIXEL_CLOCK_PARAMETERS_V3 *spc3_ptr; | 424 | PIXEL_CLOCK_PARAMETERS_V3 *spc3_ptr; |
| 341 | uint32_t sclock = mode->clock; | 425 | uint32_t pll_clock = mode->clock; |
| 426 | uint32_t adjusted_clock; | ||
| 342 | uint32_t ref_div = 0, fb_div = 0, frac_fb_div = 0, post_div = 0; | 427 | uint32_t ref_div = 0, fb_div = 0, frac_fb_div = 0, post_div = 0; |
| 343 | struct radeon_pll *pll; | 428 | struct radeon_pll *pll; |
| 344 | int pll_flags = 0; | 429 | int pll_flags = 0; |
| @@ -346,8 +431,6 @@ void atombios_crtc_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode) | |||
| 346 | memset(&args, 0, sizeof(args)); | 431 | memset(&args, 0, sizeof(args)); |
| 347 | 432 | ||
| 348 | if (ASIC_IS_AVIVO(rdev)) { | 433 | if (ASIC_IS_AVIVO(rdev)) { |
| 349 | uint32_t ss_cntl; | ||
| 350 | |||
| 351 | if ((rdev->family == CHIP_RS600) || | 434 | if ((rdev->family == CHIP_RS600) || |
| 352 | (rdev->family == CHIP_RS690) || | 435 | (rdev->family == CHIP_RS690) || |
| 353 | (rdev->family == CHIP_RS740)) | 436 | (rdev->family == CHIP_RS740)) |
| @@ -358,15 +441,6 @@ void atombios_crtc_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode) | |||
| 358 | pll_flags |= RADEON_PLL_PREFER_HIGH_FB_DIV; | 441 | pll_flags |= RADEON_PLL_PREFER_HIGH_FB_DIV; |
| 359 | else | 442 | else |
| 360 | pll_flags |= RADEON_PLL_PREFER_LOW_REF_DIV; | 443 | pll_flags |= RADEON_PLL_PREFER_LOW_REF_DIV; |
| 361 | |||
| 362 | /* disable spread spectrum clocking for now -- thanks Hedy Lamarr */ | ||
| 363 | if (radeon_crtc->crtc_id == 0) { | ||
| 364 | ss_cntl = RREG32(AVIVO_P1PLL_INT_SS_CNTL); | ||
| 365 | WREG32(AVIVO_P1PLL_INT_SS_CNTL, ss_cntl & ~1); | ||
| 366 | } else { | ||
| 367 | ss_cntl = RREG32(AVIVO_P2PLL_INT_SS_CNTL); | ||
| 368 | WREG32(AVIVO_P2PLL_INT_SS_CNTL, ss_cntl & ~1); | ||
| 369 | } | ||
| 370 | } else { | 444 | } else { |
| 371 | pll_flags |= RADEON_PLL_LEGACY; | 445 | pll_flags |= RADEON_PLL_LEGACY; |
| 372 | 446 | ||
| @@ -393,14 +467,43 @@ void atombios_crtc_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode) | |||
| 393 | } | 467 | } |
| 394 | } | 468 | } |
| 395 | 469 | ||
| 470 | /* DCE3+ has an AdjustDisplayPll that will adjust the pixel clock | ||
| 471 | * accordingly based on the encoder/transmitter to work around | ||
| 472 | * special hw requirements. | ||
| 473 | */ | ||
| 474 | if (ASIC_IS_DCE3(rdev)) { | ||
| 475 | ADJUST_DISPLAY_PLL_PS_ALLOCATION adjust_pll_args; | ||
| 476 | |||
| 477 | if (!encoder) | ||
| 478 | return; | ||
| 479 | |||
| 480 | memset(&adjust_pll_args, 0, sizeof(adjust_pll_args)); | ||
| 481 | adjust_pll_args.usPixelClock = cpu_to_le16(mode->clock / 10); | ||
| 482 | adjust_pll_args.ucTransmitterID = radeon_encoder->encoder_id; | ||
| 483 | adjust_pll_args.ucEncodeMode = atombios_get_encoder_mode(encoder); | ||
| 484 | |||
| 485 | index = GetIndexIntoMasterTable(COMMAND, AdjustDisplayPll); | ||
| 486 | atom_execute_table(rdev->mode_info.atom_context, | ||
| 487 | index, (uint32_t *)&adjust_pll_args); | ||
| 488 | adjusted_clock = le16_to_cpu(adjust_pll_args.usPixelClock) * 10; | ||
| 489 | } else { | ||
| 490 | /* DVO wants 2x pixel clock if the DVO chip is in 12 bit mode */ | ||
| 491 | if (ASIC_IS_AVIVO(rdev) && | ||
| 492 | (radeon_encoder->encoder_id == ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DVO1)) | ||
| 493 | adjusted_clock = mode->clock * 2; | ||
| 494 | else | ||
| 495 | adjusted_clock = mode->clock; | ||
| 496 | } | ||
| 497 | |||
| 396 | if (radeon_crtc->crtc_id == 0) | 498 | if (radeon_crtc->crtc_id == 0) |
| 397 | pll = &rdev->clock.p1pll; | 499 | pll = &rdev->clock.p1pll; |
| 398 | else | 500 | else |
| 399 | pll = &rdev->clock.p2pll; | 501 | pll = &rdev->clock.p2pll; |
| 400 | 502 | ||
| 401 | radeon_compute_pll(pll, mode->clock, &sclock, &fb_div, &frac_fb_div, | 503 | radeon_compute_pll(pll, adjusted_clock, &pll_clock, &fb_div, &frac_fb_div, |
| 402 | &ref_div, &post_div, pll_flags); | 504 | &ref_div, &post_div, pll_flags); |
| 403 | 505 | ||
| 506 | index = GetIndexIntoMasterTable(COMMAND, SetPixelClock); | ||
| 404 | atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, | 507 | atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, |
| 405 | &crev); | 508 | &crev); |
| 406 | 509 | ||
| @@ -409,7 +512,7 @@ void atombios_crtc_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode) | |||
| 409 | switch (crev) { | 512 | switch (crev) { |
| 410 | case 1: | 513 | case 1: |
| 411 | spc1_ptr = (PIXEL_CLOCK_PARAMETERS *) & args.sPCLKInput; | 514 | spc1_ptr = (PIXEL_CLOCK_PARAMETERS *) & args.sPCLKInput; |
| 412 | spc1_ptr->usPixelClock = cpu_to_le16(sclock); | 515 | spc1_ptr->usPixelClock = cpu_to_le16(mode->clock / 10); |
| 413 | spc1_ptr->usRefDiv = cpu_to_le16(ref_div); | 516 | spc1_ptr->usRefDiv = cpu_to_le16(ref_div); |
| 414 | spc1_ptr->usFbDiv = cpu_to_le16(fb_div); | 517 | spc1_ptr->usFbDiv = cpu_to_le16(fb_div); |
| 415 | spc1_ptr->ucFracFbDiv = frac_fb_div; | 518 | spc1_ptr->ucFracFbDiv = frac_fb_div; |
| @@ -422,7 +525,7 @@ void atombios_crtc_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode) | |||
| 422 | case 2: | 525 | case 2: |
| 423 | spc2_ptr = | 526 | spc2_ptr = |
| 424 | (PIXEL_CLOCK_PARAMETERS_V2 *) & args.sPCLKInput; | 527 | (PIXEL_CLOCK_PARAMETERS_V2 *) & args.sPCLKInput; |
| 425 | spc2_ptr->usPixelClock = cpu_to_le16(sclock); | 528 | spc2_ptr->usPixelClock = cpu_to_le16(mode->clock / 10); |
| 426 | spc2_ptr->usRefDiv = cpu_to_le16(ref_div); | 529 | spc2_ptr->usRefDiv = cpu_to_le16(ref_div); |
| 427 | spc2_ptr->usFbDiv = cpu_to_le16(fb_div); | 530 | spc2_ptr->usFbDiv = cpu_to_le16(fb_div); |
| 428 | spc2_ptr->ucFracFbDiv = frac_fb_div; | 531 | spc2_ptr->ucFracFbDiv = frac_fb_div; |
| @@ -437,7 +540,7 @@ void atombios_crtc_set_pll(struct drm_crtc *crtc, struct drm_display_mode *mode) | |||
| 437 | return; | 540 | return; |
| 438 | spc3_ptr = | 541 | spc3_ptr = |
| 439 | (PIXEL_CLOCK_PARAMETERS_V3 *) & args.sPCLKInput; | 542 | (PIXEL_CLOCK_PARAMETERS_V3 *) & args.sPCLKInput; |
| 440 | spc3_ptr->usPixelClock = cpu_to_le16(sclock); | 543 | spc3_ptr->usPixelClock = cpu_to_le16(mode->clock / 10); |
| 441 | spc3_ptr->usRefDiv = cpu_to_le16(ref_div); | 544 | spc3_ptr->usRefDiv = cpu_to_le16(ref_div); |
| 442 | spc3_ptr->usFbDiv = cpu_to_le16(fb_div); | 545 | spc3_ptr->usFbDiv = cpu_to_le16(fb_div); |
| 443 | spc3_ptr->ucFracFbDiv = frac_fb_div; | 546 | spc3_ptr->ucFracFbDiv = frac_fb_div; |
| @@ -527,6 +630,16 @@ int atombios_crtc_set_base(struct drm_crtc *crtc, int x, int y, | |||
| 527 | WREG32(AVIVO_D1VGA_CONTROL, 0); | 630 | WREG32(AVIVO_D1VGA_CONTROL, 0); |
| 528 | else | 631 | else |
| 529 | WREG32(AVIVO_D2VGA_CONTROL, 0); | 632 | WREG32(AVIVO_D2VGA_CONTROL, 0); |
| 633 | |||
| 634 | if (rdev->family >= CHIP_RV770) { | ||
| 635 | if (radeon_crtc->crtc_id) { | ||
| 636 | WREG32(R700_D2GRPH_PRIMARY_SURFACE_ADDRESS_HIGH, 0); | ||
| 637 | WREG32(R700_D2GRPH_SECONDARY_SURFACE_ADDRESS_HIGH, 0); | ||
| 638 | } else { | ||
| 639 | WREG32(R700_D1GRPH_PRIMARY_SURFACE_ADDRESS_HIGH, 0); | ||
| 640 | WREG32(R700_D1GRPH_SECONDARY_SURFACE_ADDRESS_HIGH, 0); | ||
| 641 | } | ||
| 642 | } | ||
| 530 | WREG32(AVIVO_D1GRPH_PRIMARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset, | 643 | WREG32(AVIVO_D1GRPH_PRIMARY_SURFACE_ADDRESS + radeon_crtc->crtc_offset, |
| 531 | (u32) fb_location); | 644 | (u32) fb_location); |
| 532 | WREG32(AVIVO_D1GRPH_SECONDARY_SURFACE_ADDRESS + | 645 | WREG32(AVIVO_D1GRPH_SECONDARY_SURFACE_ADDRESS + |
| @@ -563,6 +676,10 @@ int atombios_crtc_set_base(struct drm_crtc *crtc, int x, int y, | |||
| 563 | radeon_fb = to_radeon_framebuffer(old_fb); | 676 | radeon_fb = to_radeon_framebuffer(old_fb); |
| 564 | radeon_gem_object_unpin(radeon_fb->obj); | 677 | radeon_gem_object_unpin(radeon_fb->obj); |
| 565 | } | 678 | } |
| 679 | |||
| 680 | /* Bytes per pixel may have changed */ | ||
| 681 | radeon_bandwidth_update(rdev); | ||
| 682 | |||
| 566 | return 0; | 683 | return 0; |
| 567 | } | 684 | } |
| 568 | 685 | ||
| @@ -574,134 +691,24 @@ int atombios_crtc_mode_set(struct drm_crtc *crtc, | |||
| 574 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); | 691 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 575 | struct drm_device *dev = crtc->dev; | 692 | struct drm_device *dev = crtc->dev; |
| 576 | struct radeon_device *rdev = dev->dev_private; | 693 | struct radeon_device *rdev = dev->dev_private; |
| 577 | struct drm_encoder *encoder; | ||
| 578 | SET_CRTC_TIMING_PARAMETERS_PS_ALLOCATION crtc_timing; | ||
| 579 | int need_tv_timings = 0; | ||
| 580 | bool ret; | ||
| 581 | 694 | ||
| 582 | /* TODO color tiling */ | 695 | /* TODO color tiling */ |
| 583 | memset(&crtc_timing, 0, sizeof(crtc_timing)); | ||
| 584 | |||
| 585 | list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) { | ||
| 586 | /* find tv std */ | ||
| 587 | if (encoder->crtc == crtc) { | ||
| 588 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); | ||
| 589 | |||
| 590 | if (radeon_encoder->active_device & ATOM_DEVICE_TV_SUPPORT) { | ||
| 591 | struct radeon_encoder_atom_dac *tv_dac = radeon_encoder->enc_priv; | ||
| 592 | if (tv_dac) { | ||
| 593 | if (tv_dac->tv_std == TV_STD_NTSC || | ||
| 594 | tv_dac->tv_std == TV_STD_NTSC_J || | ||
| 595 | tv_dac->tv_std == TV_STD_PAL_M) | ||
| 596 | need_tv_timings = 1; | ||
| 597 | else | ||
| 598 | need_tv_timings = 2; | ||
| 599 | break; | ||
| 600 | } | ||
| 601 | } | ||
| 602 | } | ||
| 603 | } | ||
| 604 | |||
| 605 | crtc_timing.ucCRTC = radeon_crtc->crtc_id; | ||
| 606 | if (need_tv_timings) { | ||
| 607 | ret = radeon_atom_get_tv_timings(rdev, need_tv_timings - 1, | ||
| 608 | &crtc_timing, &adjusted_mode->clock); | ||
| 609 | if (ret == false) | ||
| 610 | need_tv_timings = 0; | ||
| 611 | } | ||
| 612 | |||
| 613 | if (!need_tv_timings) { | ||
| 614 | crtc_timing.usH_Total = adjusted_mode->crtc_htotal; | ||
| 615 | crtc_timing.usH_Disp = adjusted_mode->crtc_hdisplay; | ||
| 616 | crtc_timing.usH_SyncStart = adjusted_mode->crtc_hsync_start; | ||
| 617 | crtc_timing.usH_SyncWidth = | ||
| 618 | adjusted_mode->crtc_hsync_end - adjusted_mode->crtc_hsync_start; | ||
| 619 | |||
| 620 | crtc_timing.usV_Total = adjusted_mode->crtc_vtotal; | ||
| 621 | crtc_timing.usV_Disp = adjusted_mode->crtc_vdisplay; | ||
| 622 | crtc_timing.usV_SyncStart = adjusted_mode->crtc_vsync_start; | ||
| 623 | crtc_timing.usV_SyncWidth = | ||
| 624 | adjusted_mode->crtc_vsync_end - adjusted_mode->crtc_vsync_start; | ||
| 625 | |||
| 626 | if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC) | ||
| 627 | crtc_timing.susModeMiscInfo.usAccess |= ATOM_VSYNC_POLARITY; | ||
| 628 | |||
| 629 | if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC) | ||
| 630 | crtc_timing.susModeMiscInfo.usAccess |= ATOM_HSYNC_POLARITY; | ||
| 631 | |||
| 632 | if (adjusted_mode->flags & DRM_MODE_FLAG_CSYNC) | ||
| 633 | crtc_timing.susModeMiscInfo.usAccess |= ATOM_COMPOSITESYNC; | ||
| 634 | |||
| 635 | if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) | ||
| 636 | crtc_timing.susModeMiscInfo.usAccess |= ATOM_INTERLACE; | ||
| 637 | |||
| 638 | if (adjusted_mode->flags & DRM_MODE_FLAG_DBLSCAN) | ||
| 639 | crtc_timing.susModeMiscInfo.usAccess |= ATOM_DOUBLE_CLOCK_MODE; | ||
| 640 | } | ||
| 641 | 696 | ||
| 697 | atombios_set_ss(crtc, 0); | ||
| 642 | atombios_crtc_set_pll(crtc, adjusted_mode); | 698 | atombios_crtc_set_pll(crtc, adjusted_mode); |
| 643 | atombios_crtc_set_timing(crtc, &crtc_timing); | 699 | atombios_set_ss(crtc, 1); |
| 700 | atombios_crtc_set_timing(crtc, adjusted_mode); | ||
| 644 | 701 | ||
| 645 | if (ASIC_IS_AVIVO(rdev)) | 702 | if (ASIC_IS_AVIVO(rdev)) |
| 646 | atombios_crtc_set_base(crtc, x, y, old_fb); | 703 | atombios_crtc_set_base(crtc, x, y, old_fb); |
| 647 | else { | 704 | else { |
| 648 | if (radeon_crtc->crtc_id == 0) { | 705 | if (radeon_crtc->crtc_id == 0) |
| 649 | SET_CRTC_USING_DTD_TIMING_PARAMETERS crtc_dtd_timing; | 706 | atombios_set_crtc_dtd_timing(crtc, adjusted_mode); |
| 650 | memset(&crtc_dtd_timing, 0, sizeof(crtc_dtd_timing)); | ||
| 651 | |||
| 652 | /* setup FP shadow regs on R4xx */ | ||
| 653 | crtc_dtd_timing.ucCRTC = radeon_crtc->crtc_id; | ||
| 654 | crtc_dtd_timing.usH_Size = adjusted_mode->crtc_hdisplay; | ||
| 655 | crtc_dtd_timing.usV_Size = adjusted_mode->crtc_vdisplay; | ||
| 656 | crtc_dtd_timing.usH_Blanking_Time = | ||
| 657 | adjusted_mode->crtc_hblank_end - | ||
| 658 | adjusted_mode->crtc_hdisplay; | ||
| 659 | crtc_dtd_timing.usV_Blanking_Time = | ||
| 660 | adjusted_mode->crtc_vblank_end - | ||
| 661 | adjusted_mode->crtc_vdisplay; | ||
| 662 | crtc_dtd_timing.usH_SyncOffset = | ||
| 663 | adjusted_mode->crtc_hsync_start - | ||
| 664 | adjusted_mode->crtc_hdisplay; | ||
| 665 | crtc_dtd_timing.usV_SyncOffset = | ||
| 666 | adjusted_mode->crtc_vsync_start - | ||
| 667 | adjusted_mode->crtc_vdisplay; | ||
| 668 | crtc_dtd_timing.usH_SyncWidth = | ||
| 669 | adjusted_mode->crtc_hsync_end - | ||
| 670 | adjusted_mode->crtc_hsync_start; | ||
| 671 | crtc_dtd_timing.usV_SyncWidth = | ||
| 672 | adjusted_mode->crtc_vsync_end - | ||
| 673 | adjusted_mode->crtc_vsync_start; | ||
| 674 | /* crtc_dtd_timing.ucH_Border = adjusted_mode->crtc_hborder; */ | ||
| 675 | /* crtc_dtd_timing.ucV_Border = adjusted_mode->crtc_vborder; */ | ||
| 676 | |||
| 677 | if (adjusted_mode->flags & DRM_MODE_FLAG_NVSYNC) | ||
| 678 | crtc_dtd_timing.susModeMiscInfo.usAccess |= | ||
| 679 | ATOM_VSYNC_POLARITY; | ||
| 680 | |||
| 681 | if (adjusted_mode->flags & DRM_MODE_FLAG_NHSYNC) | ||
| 682 | crtc_dtd_timing.susModeMiscInfo.usAccess |= | ||
| 683 | ATOM_HSYNC_POLARITY; | ||
| 684 | |||
| 685 | if (adjusted_mode->flags & DRM_MODE_FLAG_CSYNC) | ||
| 686 | crtc_dtd_timing.susModeMiscInfo.usAccess |= | ||
| 687 | ATOM_COMPOSITESYNC; | ||
| 688 | |||
| 689 | if (adjusted_mode->flags & DRM_MODE_FLAG_INTERLACE) | ||
| 690 | crtc_dtd_timing.susModeMiscInfo.usAccess |= | ||
| 691 | ATOM_INTERLACE; | ||
| 692 | |||
| 693 | if (adjusted_mode->flags & DRM_MODE_FLAG_DBLSCAN) | ||
| 694 | crtc_dtd_timing.susModeMiscInfo.usAccess |= | ||
| 695 | ATOM_DOUBLE_CLOCK_MODE; | ||
| 696 | |||
| 697 | atombios_set_crtc_dtd_timing(crtc, &crtc_dtd_timing); | ||
| 698 | } | ||
| 699 | radeon_crtc_set_base(crtc, x, y, old_fb); | 707 | radeon_crtc_set_base(crtc, x, y, old_fb); |
| 700 | radeon_legacy_atom_set_surface(crtc); | 708 | radeon_legacy_atom_set_surface(crtc); |
| 701 | } | 709 | } |
| 702 | atombios_overscan_setup(crtc, mode, adjusted_mode); | 710 | atombios_overscan_setup(crtc, mode, adjusted_mode); |
| 703 | atombios_scaler_setup(crtc); | 711 | atombios_scaler_setup(crtc); |
| 704 | radeon_bandwidth_update(rdev); | ||
| 705 | return 0; | 712 | return 0; |
| 706 | } | 713 | } |
| 707 | 714 | ||
diff --git a/drivers/gpu/drm/radeon/mkregtable.c b/drivers/gpu/drm/radeon/mkregtable.c index fb211e585dea..0d79577c1576 100644 --- a/drivers/gpu/drm/radeon/mkregtable.c +++ b/drivers/gpu/drm/radeon/mkregtable.c | |||
| @@ -561,7 +561,7 @@ struct table { | |||
| 561 | char *gpu_prefix; | 561 | char *gpu_prefix; |
| 562 | }; | 562 | }; |
| 563 | 563 | ||
| 564 | struct offset *offset_new(unsigned o) | 564 | static struct offset *offset_new(unsigned o) |
| 565 | { | 565 | { |
| 566 | struct offset *offset; | 566 | struct offset *offset; |
| 567 | 567 | ||
| @@ -573,12 +573,12 @@ struct offset *offset_new(unsigned o) | |||
| 573 | return offset; | 573 | return offset; |
| 574 | } | 574 | } |
| 575 | 575 | ||
| 576 | void table_offset_add(struct table *t, struct offset *offset) | 576 | static void table_offset_add(struct table *t, struct offset *offset) |
| 577 | { | 577 | { |
| 578 | list_add_tail(&offset->list, &t->offsets); | 578 | list_add_tail(&offset->list, &t->offsets); |
| 579 | } | 579 | } |
| 580 | 580 | ||
| 581 | void table_init(struct table *t) | 581 | static void table_init(struct table *t) |
| 582 | { | 582 | { |
| 583 | INIT_LIST_HEAD(&t->offsets); | 583 | INIT_LIST_HEAD(&t->offsets); |
| 584 | t->offset_max = 0; | 584 | t->offset_max = 0; |
| @@ -586,7 +586,7 @@ void table_init(struct table *t) | |||
| 586 | t->table = NULL; | 586 | t->table = NULL; |
| 587 | } | 587 | } |
| 588 | 588 | ||
| 589 | void table_print(struct table *t) | 589 | static void table_print(struct table *t) |
| 590 | { | 590 | { |
| 591 | unsigned nlloop, i, j, n, c, id; | 591 | unsigned nlloop, i, j, n, c, id; |
| 592 | 592 | ||
| @@ -611,7 +611,7 @@ void table_print(struct table *t) | |||
| 611 | printf("};\n"); | 611 | printf("};\n"); |
| 612 | } | 612 | } |
| 613 | 613 | ||
| 614 | int table_build(struct table *t) | 614 | static int table_build(struct table *t) |
| 615 | { | 615 | { |
| 616 | struct offset *offset; | 616 | struct offset *offset; |
| 617 | unsigned i, m; | 617 | unsigned i, m; |
| @@ -631,7 +631,7 @@ int table_build(struct table *t) | |||
| 631 | } | 631 | } |
| 632 | 632 | ||
| 633 | static char gpu_name[10]; | 633 | static char gpu_name[10]; |
| 634 | int parser_auth(struct table *t, const char *filename) | 634 | static int parser_auth(struct table *t, const char *filename) |
| 635 | { | 635 | { |
| 636 | FILE *file; | 636 | FILE *file; |
| 637 | regex_t mask_rex; | 637 | regex_t mask_rex; |
diff --git a/drivers/gpu/drm/radeon/r100.c b/drivers/gpu/drm/radeon/r100.c index 161094c07d94..c9e93eabcf16 100644 --- a/drivers/gpu/drm/radeon/r100.c +++ b/drivers/gpu/drm/radeon/r100.c | |||
| @@ -186,7 +186,7 @@ static inline uint32_t r100_irq_ack(struct radeon_device *rdev) | |||
| 186 | 186 | ||
| 187 | int r100_irq_process(struct radeon_device *rdev) | 187 | int r100_irq_process(struct radeon_device *rdev) |
| 188 | { | 188 | { |
| 189 | uint32_t status; | 189 | uint32_t status, msi_rearm; |
| 190 | 190 | ||
| 191 | status = r100_irq_ack(rdev); | 191 | status = r100_irq_ack(rdev); |
| 192 | if (!status) { | 192 | if (!status) { |
| @@ -209,6 +209,21 @@ int r100_irq_process(struct radeon_device *rdev) | |||
| 209 | } | 209 | } |
| 210 | status = r100_irq_ack(rdev); | 210 | status = r100_irq_ack(rdev); |
| 211 | } | 211 | } |
| 212 | if (rdev->msi_enabled) { | ||
| 213 | switch (rdev->family) { | ||
| 214 | case CHIP_RS400: | ||
| 215 | case CHIP_RS480: | ||
| 216 | msi_rearm = RREG32(RADEON_AIC_CNTL) & ~RS400_MSI_REARM; | ||
| 217 | WREG32(RADEON_AIC_CNTL, msi_rearm); | ||
| 218 | WREG32(RADEON_AIC_CNTL, msi_rearm | RS400_MSI_REARM); | ||
| 219 | break; | ||
| 220 | default: | ||
| 221 | msi_rearm = RREG32(RADEON_MSI_REARM_EN) & ~RV370_MSI_REARM_EN; | ||
| 222 | WREG32(RADEON_MSI_REARM_EN, msi_rearm); | ||
| 223 | WREG32(RADEON_MSI_REARM_EN, msi_rearm | RV370_MSI_REARM_EN); | ||
| 224 | break; | ||
| 225 | } | ||
| 226 | } | ||
| 212 | return IRQ_HANDLED; | 227 | return IRQ_HANDLED; |
| 213 | } | 228 | } |
| 214 | 229 | ||
| @@ -240,7 +255,7 @@ int r100_wb_init(struct radeon_device *rdev) | |||
| 240 | int r; | 255 | int r; |
| 241 | 256 | ||
| 242 | if (rdev->wb.wb_obj == NULL) { | 257 | if (rdev->wb.wb_obj == NULL) { |
| 243 | r = radeon_object_create(rdev, NULL, 4096, | 258 | r = radeon_object_create(rdev, NULL, RADEON_GPU_PAGE_SIZE, |
| 244 | true, | 259 | true, |
| 245 | RADEON_GEM_DOMAIN_GTT, | 260 | RADEON_GEM_DOMAIN_GTT, |
| 246 | false, &rdev->wb.wb_obj); | 261 | false, &rdev->wb.wb_obj); |
| @@ -563,19 +578,19 @@ int r100_cp_init(struct radeon_device *rdev, unsigned ring_size) | |||
| 563 | indirect1_start = 16; | 578 | indirect1_start = 16; |
| 564 | /* cp setup */ | 579 | /* cp setup */ |
| 565 | WREG32(0x718, pre_write_timer | (pre_write_limit << 28)); | 580 | WREG32(0x718, pre_write_timer | (pre_write_limit << 28)); |
| 566 | WREG32(RADEON_CP_RB_CNTL, | 581 | tmp = (REG_SET(RADEON_RB_BUFSZ, rb_bufsz) | |
| 567 | #ifdef __BIG_ENDIAN | ||
| 568 | RADEON_BUF_SWAP_32BIT | | ||
| 569 | #endif | ||
| 570 | REG_SET(RADEON_RB_BUFSZ, rb_bufsz) | | ||
| 571 | REG_SET(RADEON_RB_BLKSZ, rb_blksz) | | 582 | REG_SET(RADEON_RB_BLKSZ, rb_blksz) | |
| 572 | REG_SET(RADEON_MAX_FETCH, max_fetch) | | 583 | REG_SET(RADEON_MAX_FETCH, max_fetch) | |
| 573 | RADEON_RB_NO_UPDATE); | 584 | RADEON_RB_NO_UPDATE); |
| 585 | #ifdef __BIG_ENDIAN | ||
| 586 | tmp |= RADEON_BUF_SWAP_32BIT; | ||
| 587 | #endif | ||
| 588 | WREG32(RADEON_CP_RB_CNTL, tmp); | ||
| 589 | |||
| 574 | /* Set ring address */ | 590 | /* Set ring address */ |
| 575 | DRM_INFO("radeon: ring at 0x%016lX\n", (unsigned long)rdev->cp.gpu_addr); | 591 | DRM_INFO("radeon: ring at 0x%016lX\n", (unsigned long)rdev->cp.gpu_addr); |
| 576 | WREG32(RADEON_CP_RB_BASE, rdev->cp.gpu_addr); | 592 | WREG32(RADEON_CP_RB_BASE, rdev->cp.gpu_addr); |
| 577 | /* Force read & write ptr to 0 */ | 593 | /* Force read & write ptr to 0 */ |
| 578 | tmp = RREG32(RADEON_CP_RB_CNTL); | ||
| 579 | WREG32(RADEON_CP_RB_CNTL, tmp | RADEON_RB_RPTR_WR_ENA); | 594 | WREG32(RADEON_CP_RB_CNTL, tmp | RADEON_RB_RPTR_WR_ENA); |
| 580 | WREG32(RADEON_CP_RB_RPTR_WR, 0); | 595 | WREG32(RADEON_CP_RB_RPTR_WR, 0); |
| 581 | WREG32(RADEON_CP_RB_WPTR, 0); | 596 | WREG32(RADEON_CP_RB_WPTR, 0); |
| @@ -2364,7 +2379,7 @@ void r100_bandwidth_update(struct radeon_device *rdev) | |||
| 2364 | /* | 2379 | /* |
| 2365 | Find the total latency for the display data. | 2380 | Find the total latency for the display data. |
| 2366 | */ | 2381 | */ |
| 2367 | disp_latency_overhead.full = rfixed_const(80); | 2382 | disp_latency_overhead.full = rfixed_const(8); |
| 2368 | disp_latency_overhead.full = rfixed_div(disp_latency_overhead, sclk_ff); | 2383 | disp_latency_overhead.full = rfixed_div(disp_latency_overhead, sclk_ff); |
| 2369 | mc_latency_mclk.full += disp_latency_overhead.full + cur_latency_mclk.full; | 2384 | mc_latency_mclk.full += disp_latency_overhead.full + cur_latency_mclk.full; |
| 2370 | mc_latency_sclk.full += disp_latency_overhead.full + cur_latency_sclk.full; | 2385 | mc_latency_sclk.full += disp_latency_overhead.full + cur_latency_sclk.full; |
| @@ -2562,8 +2577,11 @@ void r100_bandwidth_update(struct radeon_device *rdev) | |||
| 2562 | static inline void r100_cs_track_texture_print(struct r100_cs_track_texture *t) | 2577 | static inline void r100_cs_track_texture_print(struct r100_cs_track_texture *t) |
| 2563 | { | 2578 | { |
| 2564 | DRM_ERROR("pitch %d\n", t->pitch); | 2579 | DRM_ERROR("pitch %d\n", t->pitch); |
| 2580 | DRM_ERROR("use_pitch %d\n", t->use_pitch); | ||
| 2565 | DRM_ERROR("width %d\n", t->width); | 2581 | DRM_ERROR("width %d\n", t->width); |
| 2582 | DRM_ERROR("width_11 %d\n", t->width_11); | ||
| 2566 | DRM_ERROR("height %d\n", t->height); | 2583 | DRM_ERROR("height %d\n", t->height); |
| 2584 | DRM_ERROR("height_11 %d\n", t->height_11); | ||
| 2567 | DRM_ERROR("num levels %d\n", t->num_levels); | 2585 | DRM_ERROR("num levels %d\n", t->num_levels); |
| 2568 | DRM_ERROR("depth %d\n", t->txdepth); | 2586 | DRM_ERROR("depth %d\n", t->txdepth); |
| 2569 | DRM_ERROR("bpp %d\n", t->cpp); | 2587 | DRM_ERROR("bpp %d\n", t->cpp); |
| @@ -2623,15 +2641,17 @@ static int r100_cs_track_texture_check(struct radeon_device *rdev, | |||
| 2623 | else | 2641 | else |
| 2624 | w = track->textures[u].pitch / (1 << i); | 2642 | w = track->textures[u].pitch / (1 << i); |
| 2625 | } else { | 2643 | } else { |
| 2626 | w = track->textures[u].width / (1 << i); | 2644 | w = track->textures[u].width; |
| 2627 | if (rdev->family >= CHIP_RV515) | 2645 | if (rdev->family >= CHIP_RV515) |
| 2628 | w |= track->textures[u].width_11; | 2646 | w |= track->textures[u].width_11; |
| 2647 | w = w / (1 << i); | ||
| 2629 | if (track->textures[u].roundup_w) | 2648 | if (track->textures[u].roundup_w) |
| 2630 | w = roundup_pow_of_two(w); | 2649 | w = roundup_pow_of_two(w); |
| 2631 | } | 2650 | } |
| 2632 | h = track->textures[u].height / (1 << i); | 2651 | h = track->textures[u].height; |
| 2633 | if (rdev->family >= CHIP_RV515) | 2652 | if (rdev->family >= CHIP_RV515) |
| 2634 | h |= track->textures[u].height_11; | 2653 | h |= track->textures[u].height_11; |
| 2654 | h = h / (1 << i); | ||
| 2635 | if (track->textures[u].roundup_h) | 2655 | if (track->textures[u].roundup_h) |
| 2636 | h = roundup_pow_of_two(h); | 2656 | h = roundup_pow_of_two(h); |
| 2637 | size += w * h; | 2657 | size += w * h; |
diff --git a/drivers/gpu/drm/radeon/r300.c b/drivers/gpu/drm/radeon/r300.c index e08c4a8974ca..2f43ee8e4048 100644 --- a/drivers/gpu/drm/radeon/r300.c +++ b/drivers/gpu/drm/radeon/r300.c | |||
| @@ -113,7 +113,7 @@ int rv370_pcie_gart_enable(struct radeon_device *rdev) | |||
| 113 | tmp = RADEON_PCIE_TX_GART_UNMAPPED_ACCESS_DISCARD; | 113 | tmp = RADEON_PCIE_TX_GART_UNMAPPED_ACCESS_DISCARD; |
| 114 | WREG32_PCIE(RADEON_PCIE_TX_GART_CNTL, tmp); | 114 | WREG32_PCIE(RADEON_PCIE_TX_GART_CNTL, tmp); |
| 115 | WREG32_PCIE(RADEON_PCIE_TX_GART_START_LO, rdev->mc.gtt_location); | 115 | WREG32_PCIE(RADEON_PCIE_TX_GART_START_LO, rdev->mc.gtt_location); |
| 116 | tmp = rdev->mc.gtt_location + rdev->mc.gtt_size - 4096; | 116 | tmp = rdev->mc.gtt_location + rdev->mc.gtt_size - RADEON_GPU_PAGE_SIZE; |
| 117 | WREG32_PCIE(RADEON_PCIE_TX_GART_END_LO, tmp); | 117 | WREG32_PCIE(RADEON_PCIE_TX_GART_END_LO, tmp); |
| 118 | WREG32_PCIE(RADEON_PCIE_TX_GART_START_HI, 0); | 118 | WREG32_PCIE(RADEON_PCIE_TX_GART_START_HI, 0); |
| 119 | WREG32_PCIE(RADEON_PCIE_TX_GART_END_HI, 0); | 119 | WREG32_PCIE(RADEON_PCIE_TX_GART_END_HI, 0); |
diff --git a/drivers/gpu/drm/radeon/r420.c b/drivers/gpu/drm/radeon/r420.c index 5c7fe52de30e..1cefdbcc0850 100644 --- a/drivers/gpu/drm/radeon/r420.c +++ b/drivers/gpu/drm/radeon/r420.c | |||
| @@ -311,6 +311,8 @@ int r420_init(struct radeon_device *rdev) | |||
| 311 | } | 311 | } |
| 312 | /* Initialize clocks */ | 312 | /* Initialize clocks */ |
| 313 | radeon_get_clock_info(rdev->ddev); | 313 | radeon_get_clock_info(rdev->ddev); |
| 314 | /* Initialize power management */ | ||
| 315 | radeon_pm_init(rdev); | ||
| 314 | /* Get vram informations */ | 316 | /* Get vram informations */ |
| 315 | r300_vram_info(rdev); | 317 | r300_vram_info(rdev); |
| 316 | /* Initialize memory controller (also test AGP) */ | 318 | /* Initialize memory controller (also test AGP) */ |
diff --git a/drivers/gpu/drm/radeon/r500_reg.h b/drivers/gpu/drm/radeon/r500_reg.h index 868add6e166d..7baa73955563 100644 --- a/drivers/gpu/drm/radeon/r500_reg.h +++ b/drivers/gpu/drm/radeon/r500_reg.h | |||
| @@ -384,9 +384,16 @@ | |||
| 384 | # define AVIVO_D1GRPH_TILED (1 << 20) | 384 | # define AVIVO_D1GRPH_TILED (1 << 20) |
| 385 | # define AVIVO_D1GRPH_MACRO_ADDRESS_MODE (1 << 21) | 385 | # define AVIVO_D1GRPH_MACRO_ADDRESS_MODE (1 << 21) |
| 386 | 386 | ||
| 387 | /* The R7xx *_HIGH surface regs are backwards; the D1 regs are in the D2 | ||
| 388 | * block and vice versa. This applies to GRPH, CUR, etc. | ||
| 389 | */ | ||
| 387 | #define AVIVO_D1GRPH_LUT_SEL 0x6108 | 390 | #define AVIVO_D1GRPH_LUT_SEL 0x6108 |
| 388 | #define AVIVO_D1GRPH_PRIMARY_SURFACE_ADDRESS 0x6110 | 391 | #define AVIVO_D1GRPH_PRIMARY_SURFACE_ADDRESS 0x6110 |
| 392 | #define R700_D1GRPH_PRIMARY_SURFACE_ADDRESS_HIGH 0x6914 | ||
| 393 | #define R700_D2GRPH_PRIMARY_SURFACE_ADDRESS_HIGH 0x6114 | ||
| 389 | #define AVIVO_D1GRPH_SECONDARY_SURFACE_ADDRESS 0x6118 | 394 | #define AVIVO_D1GRPH_SECONDARY_SURFACE_ADDRESS 0x6118 |
| 395 | #define R700_D1GRPH_SECONDARY_SURFACE_ADDRESS_HIGH 0x691c | ||
| 396 | #define R700_D2GRPH_SECONDARY_SURFACE_ADDRESS_HIGH 0x611c | ||
| 390 | #define AVIVO_D1GRPH_PITCH 0x6120 | 397 | #define AVIVO_D1GRPH_PITCH 0x6120 |
| 391 | #define AVIVO_D1GRPH_SURFACE_OFFSET_X 0x6124 | 398 | #define AVIVO_D1GRPH_SURFACE_OFFSET_X 0x6124 |
| 392 | #define AVIVO_D1GRPH_SURFACE_OFFSET_Y 0x6128 | 399 | #define AVIVO_D1GRPH_SURFACE_OFFSET_Y 0x6128 |
| @@ -404,6 +411,8 @@ | |||
| 404 | # define AVIVO_D1CURSOR_MODE_MASK (3 << 8) | 411 | # define AVIVO_D1CURSOR_MODE_MASK (3 << 8) |
| 405 | # define AVIVO_D1CURSOR_MODE_24BPP 2 | 412 | # define AVIVO_D1CURSOR_MODE_24BPP 2 |
| 406 | #define AVIVO_D1CUR_SURFACE_ADDRESS 0x6408 | 413 | #define AVIVO_D1CUR_SURFACE_ADDRESS 0x6408 |
| 414 | #define R700_D1CUR_SURFACE_ADDRESS_HIGH 0x6c0c | ||
| 415 | #define R700_D2CUR_SURFACE_ADDRESS_HIGH 0x640c | ||
| 407 | #define AVIVO_D1CUR_SIZE 0x6410 | 416 | #define AVIVO_D1CUR_SIZE 0x6410 |
| 408 | #define AVIVO_D1CUR_POSITION 0x6414 | 417 | #define AVIVO_D1CUR_POSITION 0x6414 |
| 409 | #define AVIVO_D1CUR_HOT_SPOT 0x6418 | 418 | #define AVIVO_D1CUR_HOT_SPOT 0x6418 |
diff --git a/drivers/gpu/drm/radeon/r520.c b/drivers/gpu/drm/radeon/r520.c index a555b7b19b48..f7435185c0a6 100644 --- a/drivers/gpu/drm/radeon/r520.c +++ b/drivers/gpu/drm/radeon/r520.c | |||
| @@ -260,6 +260,8 @@ int r520_init(struct radeon_device *rdev) | |||
| 260 | } | 260 | } |
| 261 | /* Initialize clocks */ | 261 | /* Initialize clocks */ |
| 262 | radeon_get_clock_info(rdev->ddev); | 262 | radeon_get_clock_info(rdev->ddev); |
| 263 | /* Initialize power management */ | ||
| 264 | radeon_pm_init(rdev); | ||
| 263 | /* Get vram informations */ | 265 | /* Get vram informations */ |
| 264 | r520_vram_info(rdev); | 266 | r520_vram_info(rdev); |
| 265 | /* Initialize memory controller (also test AGP) */ | 267 | /* Initialize memory controller (also test AGP) */ |
diff --git a/drivers/gpu/drm/radeon/r600.c b/drivers/gpu/drm/radeon/r600.c index 609719490ec2..278f646bc18e 100644 --- a/drivers/gpu/drm/radeon/r600.c +++ b/drivers/gpu/drm/radeon/r600.c | |||
| @@ -339,11 +339,10 @@ int r600_mc_init(struct radeon_device *rdev) | |||
| 339 | { | 339 | { |
| 340 | fixed20_12 a; | 340 | fixed20_12 a; |
| 341 | u32 tmp; | 341 | u32 tmp; |
| 342 | int chansize; | 342 | int chansize, numchan; |
| 343 | int r; | 343 | int r; |
| 344 | 344 | ||
| 345 | /* Get VRAM informations */ | 345 | /* Get VRAM informations */ |
| 346 | rdev->mc.vram_width = 128; | ||
| 347 | rdev->mc.vram_is_ddr = true; | 346 | rdev->mc.vram_is_ddr = true; |
| 348 | tmp = RREG32(RAMCFG); | 347 | tmp = RREG32(RAMCFG); |
| 349 | if (tmp & CHANSIZE_OVERRIDE) { | 348 | if (tmp & CHANSIZE_OVERRIDE) { |
| @@ -353,17 +352,23 @@ int r600_mc_init(struct radeon_device *rdev) | |||
| 353 | } else { | 352 | } else { |
| 354 | chansize = 32; | 353 | chansize = 32; |
| 355 | } | 354 | } |
| 356 | if (rdev->family == CHIP_R600) { | 355 | tmp = RREG32(CHMAP); |
| 357 | rdev->mc.vram_width = 8 * chansize; | 356 | switch ((tmp & NOOFCHAN_MASK) >> NOOFCHAN_SHIFT) { |
| 358 | } else if (rdev->family == CHIP_RV670) { | 357 | case 0: |
| 359 | rdev->mc.vram_width = 4 * chansize; | 358 | default: |
| 360 | } else if ((rdev->family == CHIP_RV610) || | 359 | numchan = 1; |
| 361 | (rdev->family == CHIP_RV620)) { | 360 | break; |
| 362 | rdev->mc.vram_width = chansize; | 361 | case 1: |
| 363 | } else if ((rdev->family == CHIP_RV630) || | 362 | numchan = 2; |
| 364 | (rdev->family == CHIP_RV635)) { | 363 | break; |
| 365 | rdev->mc.vram_width = 2 * chansize; | 364 | case 2: |
| 365 | numchan = 4; | ||
| 366 | break; | ||
| 367 | case 3: | ||
| 368 | numchan = 8; | ||
| 369 | break; | ||
| 366 | } | 370 | } |
| 371 | rdev->mc.vram_width = numchan * chansize; | ||
| 367 | /* Could aper size report 0 ? */ | 372 | /* Could aper size report 0 ? */ |
| 368 | rdev->mc.aper_base = drm_get_resource_start(rdev->ddev, 0); | 373 | rdev->mc.aper_base = drm_get_resource_start(rdev->ddev, 0); |
| 369 | rdev->mc.aper_size = drm_get_resource_len(rdev->ddev, 0); | 374 | rdev->mc.aper_size = drm_get_resource_len(rdev->ddev, 0); |
| @@ -404,35 +409,29 @@ int r600_mc_init(struct radeon_device *rdev) | |||
| 404 | rdev->mc.gtt_location = rdev->mc.mc_vram_size; | 409 | rdev->mc.gtt_location = rdev->mc.mc_vram_size; |
| 405 | } | 410 | } |
| 406 | } else { | 411 | } else { |
| 407 | if (rdev->family == CHIP_RS780 || rdev->family == CHIP_RS880) { | 412 | rdev->mc.gtt_size = radeon_gart_size * 1024 * 1024; |
| 408 | rdev->mc.vram_location = (RREG32(MC_VM_FB_LOCATION) & | 413 | rdev->mc.vram_location = (RREG32(MC_VM_FB_LOCATION) & |
| 409 | 0xFFFF) << 24; | 414 | 0xFFFF) << 24; |
| 410 | rdev->mc.gtt_size = radeon_gart_size * 1024 * 1024; | 415 | tmp = rdev->mc.vram_location + rdev->mc.mc_vram_size; |
| 411 | tmp = rdev->mc.vram_location + rdev->mc.mc_vram_size; | 416 | if ((0xFFFFFFFFUL - tmp) >= rdev->mc.gtt_size) { |
| 412 | if ((0xFFFFFFFFUL - tmp) >= rdev->mc.gtt_size) { | 417 | /* Enough place after vram */ |
| 413 | /* Enough place after vram */ | 418 | rdev->mc.gtt_location = tmp; |
| 414 | rdev->mc.gtt_location = tmp; | 419 | } else if (rdev->mc.vram_location >= rdev->mc.gtt_size) { |
| 415 | } else if (rdev->mc.vram_location >= rdev->mc.gtt_size) { | 420 | /* Enough place before vram */ |
| 416 | /* Enough place before vram */ | 421 | rdev->mc.gtt_location = 0; |
| 422 | } else { | ||
| 423 | /* Not enough place after or before shrink | ||
| 424 | * gart size | ||
| 425 | */ | ||
| 426 | if (rdev->mc.vram_location > (0xFFFFFFFFUL - tmp)) { | ||
| 417 | rdev->mc.gtt_location = 0; | 427 | rdev->mc.gtt_location = 0; |
| 428 | rdev->mc.gtt_size = rdev->mc.vram_location; | ||
| 418 | } else { | 429 | } else { |
| 419 | /* Not enough place after or before shrink | 430 | rdev->mc.gtt_location = tmp; |
| 420 | * gart size | 431 | rdev->mc.gtt_size = 0xFFFFFFFFUL - tmp; |
| 421 | */ | ||
| 422 | if (rdev->mc.vram_location > (0xFFFFFFFFUL - tmp)) { | ||
| 423 | rdev->mc.gtt_location = 0; | ||
| 424 | rdev->mc.gtt_size = rdev->mc.vram_location; | ||
| 425 | } else { | ||
| 426 | rdev->mc.gtt_location = tmp; | ||
| 427 | rdev->mc.gtt_size = 0xFFFFFFFFUL - tmp; | ||
| 428 | } | ||
| 429 | } | 432 | } |
| 430 | rdev->mc.gtt_location = rdev->mc.mc_vram_size; | ||
| 431 | } else { | ||
| 432 | rdev->mc.vram_location = 0x00000000UL; | ||
| 433 | rdev->mc.gtt_location = rdev->mc.mc_vram_size; | ||
| 434 | rdev->mc.gtt_size = radeon_gart_size * 1024 * 1024; | ||
| 435 | } | 433 | } |
| 434 | rdev->mc.gtt_location = rdev->mc.mc_vram_size; | ||
| 436 | } | 435 | } |
| 437 | rdev->mc.vram_start = rdev->mc.vram_location; | 436 | rdev->mc.vram_start = rdev->mc.vram_location; |
| 438 | rdev->mc.vram_end = rdev->mc.vram_location + rdev->mc.mc_vram_size - 1; | 437 | rdev->mc.vram_end = rdev->mc.vram_location + rdev->mc.mc_vram_size - 1; |
| @@ -859,7 +858,8 @@ void r600_gpu_init(struct radeon_device *rdev) | |||
| 859 | ((rdev->family) == CHIP_RV630) || | 858 | ((rdev->family) == CHIP_RV630) || |
| 860 | ((rdev->family) == CHIP_RV610) || | 859 | ((rdev->family) == CHIP_RV610) || |
| 861 | ((rdev->family) == CHIP_RV620) || | 860 | ((rdev->family) == CHIP_RV620) || |
| 862 | ((rdev->family) == CHIP_RS780)) { | 861 | ((rdev->family) == CHIP_RS780) || |
| 862 | ((rdev->family) == CHIP_RS880)) { | ||
| 863 | WREG32(DB_DEBUG, PREZ_MUST_WAIT_FOR_POSTZ_DONE); | 863 | WREG32(DB_DEBUG, PREZ_MUST_WAIT_FOR_POSTZ_DONE); |
| 864 | } else { | 864 | } else { |
| 865 | WREG32(DB_DEBUG, 0); | 865 | WREG32(DB_DEBUG, 0); |
| @@ -876,7 +876,8 @@ void r600_gpu_init(struct radeon_device *rdev) | |||
| 876 | tmp = RREG32(SQ_MS_FIFO_SIZES); | 876 | tmp = RREG32(SQ_MS_FIFO_SIZES); |
| 877 | if (((rdev->family) == CHIP_RV610) || | 877 | if (((rdev->family) == CHIP_RV610) || |
| 878 | ((rdev->family) == CHIP_RV620) || | 878 | ((rdev->family) == CHIP_RV620) || |
| 879 | ((rdev->family) == CHIP_RS780)) { | 879 | ((rdev->family) == CHIP_RS780) || |
| 880 | ((rdev->family) == CHIP_RS880)) { | ||
| 880 | tmp = (CACHE_FIFO_SIZE(0xa) | | 881 | tmp = (CACHE_FIFO_SIZE(0xa) | |
| 881 | FETCH_FIFO_HIWATER(0xa) | | 882 | FETCH_FIFO_HIWATER(0xa) | |
| 882 | DONE_FIFO_HIWATER(0xe0) | | 883 | DONE_FIFO_HIWATER(0xe0) | |
| @@ -919,7 +920,8 @@ void r600_gpu_init(struct radeon_device *rdev) | |||
| 919 | NUM_ES_STACK_ENTRIES(0)); | 920 | NUM_ES_STACK_ENTRIES(0)); |
| 920 | } else if (((rdev->family) == CHIP_RV610) || | 921 | } else if (((rdev->family) == CHIP_RV610) || |
| 921 | ((rdev->family) == CHIP_RV620) || | 922 | ((rdev->family) == CHIP_RV620) || |
| 922 | ((rdev->family) == CHIP_RS780)) { | 923 | ((rdev->family) == CHIP_RS780) || |
| 924 | ((rdev->family) == CHIP_RS880)) { | ||
| 923 | /* no vertex cache */ | 925 | /* no vertex cache */ |
| 924 | sq_config &= ~VC_ENABLE; | 926 | sq_config &= ~VC_ENABLE; |
| 925 | 927 | ||
| @@ -976,7 +978,8 @@ void r600_gpu_init(struct radeon_device *rdev) | |||
| 976 | 978 | ||
| 977 | if (((rdev->family) == CHIP_RV610) || | 979 | if (((rdev->family) == CHIP_RV610) || |
| 978 | ((rdev->family) == CHIP_RV620) || | 980 | ((rdev->family) == CHIP_RV620) || |
| 979 | ((rdev->family) == CHIP_RS780)) { | 981 | ((rdev->family) == CHIP_RS780) || |
| 982 | ((rdev->family) == CHIP_RS880)) { | ||
| 980 | WREG32(VGT_CACHE_INVALIDATION, CACHE_INVALIDATION(TC_ONLY)); | 983 | WREG32(VGT_CACHE_INVALIDATION, CACHE_INVALIDATION(TC_ONLY)); |
| 981 | } else { | 984 | } else { |
| 982 | WREG32(VGT_CACHE_INVALIDATION, CACHE_INVALIDATION(VC_AND_TC)); | 985 | WREG32(VGT_CACHE_INVALIDATION, CACHE_INVALIDATION(VC_AND_TC)); |
| @@ -1002,8 +1005,9 @@ void r600_gpu_init(struct radeon_device *rdev) | |||
| 1002 | tmp = rdev->config.r600.max_pipes * 16; | 1005 | tmp = rdev->config.r600.max_pipes * 16; |
| 1003 | switch (rdev->family) { | 1006 | switch (rdev->family) { |
| 1004 | case CHIP_RV610: | 1007 | case CHIP_RV610: |
| 1005 | case CHIP_RS780: | ||
| 1006 | case CHIP_RV620: | 1008 | case CHIP_RV620: |
| 1009 | case CHIP_RS780: | ||
| 1010 | case CHIP_RS880: | ||
| 1007 | tmp += 32; | 1011 | tmp += 32; |
| 1008 | break; | 1012 | break; |
| 1009 | case CHIP_RV670: | 1013 | case CHIP_RV670: |
| @@ -1044,8 +1048,9 @@ void r600_gpu_init(struct radeon_device *rdev) | |||
| 1044 | 1048 | ||
| 1045 | switch (rdev->family) { | 1049 | switch (rdev->family) { |
| 1046 | case CHIP_RV610: | 1050 | case CHIP_RV610: |
| 1047 | case CHIP_RS780: | ||
| 1048 | case CHIP_RV620: | 1051 | case CHIP_RV620: |
| 1052 | case CHIP_RS780: | ||
| 1053 | case CHIP_RS880: | ||
| 1049 | tmp = TC_L2_SIZE(8); | 1054 | tmp = TC_L2_SIZE(8); |
| 1050 | break; | 1055 | break; |
| 1051 | case CHIP_RV630: | 1056 | case CHIP_RV630: |
| @@ -1267,19 +1272,17 @@ int r600_cp_resume(struct radeon_device *rdev) | |||
| 1267 | 1272 | ||
| 1268 | /* Set ring buffer size */ | 1273 | /* Set ring buffer size */ |
| 1269 | rb_bufsz = drm_order(rdev->cp.ring_size / 8); | 1274 | rb_bufsz = drm_order(rdev->cp.ring_size / 8); |
| 1275 | tmp = RB_NO_UPDATE | (drm_order(RADEON_GPU_PAGE_SIZE/8) << 8) | rb_bufsz; | ||
| 1270 | #ifdef __BIG_ENDIAN | 1276 | #ifdef __BIG_ENDIAN |
| 1271 | WREG32(CP_RB_CNTL, BUF_SWAP_32BIT | RB_NO_UPDATE | | 1277 | tmp |= BUF_SWAP_32BIT; |
| 1272 | (drm_order(4096/8) << 8) | rb_bufsz); | ||
| 1273 | #else | ||
| 1274 | WREG32(CP_RB_CNTL, RB_NO_UPDATE | (drm_order(4096/8) << 8) | rb_bufsz); | ||
| 1275 | #endif | 1278 | #endif |
| 1279 | WREG32(CP_RB_CNTL, tmp); | ||
| 1276 | WREG32(CP_SEM_WAIT_TIMER, 0x4); | 1280 | WREG32(CP_SEM_WAIT_TIMER, 0x4); |
| 1277 | 1281 | ||
| 1278 | /* Set the write pointer delay */ | 1282 | /* Set the write pointer delay */ |
| 1279 | WREG32(CP_RB_WPTR_DELAY, 0); | 1283 | WREG32(CP_RB_WPTR_DELAY, 0); |
| 1280 | 1284 | ||
| 1281 | /* Initialize the ring buffer's read and write pointers */ | 1285 | /* Initialize the ring buffer's read and write pointers */ |
| 1282 | tmp = RREG32(CP_RB_CNTL); | ||
| 1283 | WREG32(CP_RB_CNTL, tmp | RB_RPTR_WR_ENA); | 1286 | WREG32(CP_RB_CNTL, tmp | RB_RPTR_WR_ENA); |
| 1284 | WREG32(CP_RB_RPTR_WR, 0); | 1287 | WREG32(CP_RB_RPTR_WR, 0); |
| 1285 | WREG32(CP_RB_WPTR, 0); | 1288 | WREG32(CP_RB_WPTR, 0); |
| @@ -1400,7 +1403,7 @@ int r600_wb_enable(struct radeon_device *rdev) | |||
| 1400 | int r; | 1403 | int r; |
| 1401 | 1404 | ||
| 1402 | if (rdev->wb.wb_obj == NULL) { | 1405 | if (rdev->wb.wb_obj == NULL) { |
| 1403 | r = radeon_object_create(rdev, NULL, 4096, true, | 1406 | r = radeon_object_create(rdev, NULL, RADEON_GPU_PAGE_SIZE, true, |
| 1404 | RADEON_GEM_DOMAIN_GTT, false, &rdev->wb.wb_obj); | 1407 | RADEON_GEM_DOMAIN_GTT, false, &rdev->wb.wb_obj); |
| 1405 | if (r) { | 1408 | if (r) { |
| 1406 | dev_warn(rdev->dev, "failed to create WB buffer (%d).\n", r); | 1409 | dev_warn(rdev->dev, "failed to create WB buffer (%d).\n", r); |
| @@ -1450,8 +1453,8 @@ int r600_copy_blit(struct radeon_device *rdev, | |||
| 1450 | uint64_t src_offset, uint64_t dst_offset, | 1453 | uint64_t src_offset, uint64_t dst_offset, |
| 1451 | unsigned num_pages, struct radeon_fence *fence) | 1454 | unsigned num_pages, struct radeon_fence *fence) |
| 1452 | { | 1455 | { |
| 1453 | r600_blit_prepare_copy(rdev, num_pages * 4096); | 1456 | r600_blit_prepare_copy(rdev, num_pages * RADEON_GPU_PAGE_SIZE); |
| 1454 | r600_kms_blit_copy(rdev, src_offset, dst_offset, num_pages * 4096); | 1457 | r600_kms_blit_copy(rdev, src_offset, dst_offset, num_pages * RADEON_GPU_PAGE_SIZE); |
| 1455 | r600_blit_done_copy(rdev, fence); | 1458 | r600_blit_done_copy(rdev, fence); |
| 1456 | return 0; | 1459 | return 0; |
| 1457 | } | 1460 | } |
| @@ -1632,10 +1635,13 @@ int r600_init(struct radeon_device *rdev) | |||
| 1632 | r600_scratch_init(rdev); | 1635 | r600_scratch_init(rdev); |
| 1633 | /* Initialize surface registers */ | 1636 | /* Initialize surface registers */ |
| 1634 | radeon_surface_init(rdev); | 1637 | radeon_surface_init(rdev); |
| 1638 | /* Initialize clocks */ | ||
| 1635 | radeon_get_clock_info(rdev->ddev); | 1639 | radeon_get_clock_info(rdev->ddev); |
| 1636 | r = radeon_clocks_init(rdev); | 1640 | r = radeon_clocks_init(rdev); |
| 1637 | if (r) | 1641 | if (r) |
| 1638 | return r; | 1642 | return r; |
| 1643 | /* Initialize power management */ | ||
| 1644 | radeon_pm_init(rdev); | ||
| 1639 | /* Fence driver */ | 1645 | /* Fence driver */ |
| 1640 | r = radeon_fence_driver_init(rdev); | 1646 | r = radeon_fence_driver_init(rdev); |
| 1641 | if (r) | 1647 | if (r) |
diff --git a/drivers/gpu/drm/radeon/r600_blit.c b/drivers/gpu/drm/radeon/r600_blit.c index dec501081608..5ea432347589 100644 --- a/drivers/gpu/drm/radeon/r600_blit.c +++ b/drivers/gpu/drm/radeon/r600_blit.c | |||
| @@ -582,6 +582,8 @@ r600_blit_copy(struct drm_device *dev, | |||
| 582 | u64 vb_addr; | 582 | u64 vb_addr; |
| 583 | u32 *vb; | 583 | u32 *vb; |
| 584 | 584 | ||
| 585 | vb = r600_nomm_get_vb_ptr(dev); | ||
| 586 | |||
| 585 | if ((size_bytes & 3) || (src_gpu_addr & 3) || (dst_gpu_addr & 3)) { | 587 | if ((size_bytes & 3) || (src_gpu_addr & 3) || (dst_gpu_addr & 3)) { |
| 586 | max_bytes = 8192; | 588 | max_bytes = 8192; |
| 587 | 589 | ||
| @@ -617,8 +619,8 @@ r600_blit_copy(struct drm_device *dev, | |||
| 617 | if (!dev_priv->blit_vb) | 619 | if (!dev_priv->blit_vb) |
| 618 | return; | 620 | return; |
| 619 | set_shaders(dev); | 621 | set_shaders(dev); |
| 622 | vb = r600_nomm_get_vb_ptr(dev); | ||
| 620 | } | 623 | } |
| 621 | vb = r600_nomm_get_vb_ptr(dev); | ||
| 622 | 624 | ||
| 623 | vb[0] = i2f(dst_x); | 625 | vb[0] = i2f(dst_x); |
| 624 | vb[1] = 0; | 626 | vb[1] = 0; |
| @@ -706,8 +708,8 @@ r600_blit_copy(struct drm_device *dev, | |||
| 706 | return; | 708 | return; |
| 707 | 709 | ||
| 708 | set_shaders(dev); | 710 | set_shaders(dev); |
| 711 | vb = r600_nomm_get_vb_ptr(dev); | ||
| 709 | } | 712 | } |
| 710 | vb = r600_nomm_get_vb_ptr(dev); | ||
| 711 | 713 | ||
| 712 | vb[0] = i2f(dst_x / 4); | 714 | vb[0] = i2f(dst_x / 4); |
| 713 | vb[1] = 0; | 715 | vb[1] = 0; |
| @@ -772,6 +774,7 @@ r600_blit_swap(struct drm_device *dev, | |||
| 772 | { | 774 | { |
| 773 | drm_radeon_private_t *dev_priv = dev->dev_private; | 775 | drm_radeon_private_t *dev_priv = dev->dev_private; |
| 774 | int cb_format, tex_format; | 776 | int cb_format, tex_format; |
| 777 | int sx2, sy2, dx2, dy2; | ||
| 775 | u64 vb_addr; | 778 | u64 vb_addr; |
| 776 | u32 *vb; | 779 | u32 *vb; |
| 777 | 780 | ||
| @@ -786,16 +789,10 @@ r600_blit_swap(struct drm_device *dev, | |||
| 786 | } | 789 | } |
| 787 | vb = r600_nomm_get_vb_ptr(dev); | 790 | vb = r600_nomm_get_vb_ptr(dev); |
| 788 | 791 | ||
| 789 | if (cpp == 4) { | 792 | sx2 = sx + w; |
| 790 | cb_format = COLOR_8_8_8_8; | 793 | sy2 = sy + h; |
| 791 | tex_format = FMT_8_8_8_8; | 794 | dx2 = dx + w; |
| 792 | } else if (cpp == 2) { | 795 | dy2 = dy + h; |
| 793 | cb_format = COLOR_5_6_5; | ||
| 794 | tex_format = FMT_5_6_5; | ||
| 795 | } else { | ||
| 796 | cb_format = COLOR_8; | ||
| 797 | tex_format = FMT_8; | ||
| 798 | } | ||
| 799 | 796 | ||
| 800 | vb[0] = i2f(dx); | 797 | vb[0] = i2f(dx); |
| 801 | vb[1] = i2f(dy); | 798 | vb[1] = i2f(dy); |
| @@ -803,31 +800,46 @@ r600_blit_swap(struct drm_device *dev, | |||
| 803 | vb[3] = i2f(sy); | 800 | vb[3] = i2f(sy); |
| 804 | 801 | ||
| 805 | vb[4] = i2f(dx); | 802 | vb[4] = i2f(dx); |
| 806 | vb[5] = i2f(dy + h); | 803 | vb[5] = i2f(dy2); |
| 807 | vb[6] = i2f(sx); | 804 | vb[6] = i2f(sx); |
| 808 | vb[7] = i2f(sy + h); | 805 | vb[7] = i2f(sy2); |
| 806 | |||
| 807 | vb[8] = i2f(dx2); | ||
| 808 | vb[9] = i2f(dy2); | ||
| 809 | vb[10] = i2f(sx2); | ||
| 810 | vb[11] = i2f(sy2); | ||
| 809 | 811 | ||
| 810 | vb[8] = i2f(dx + w); | 812 | switch(cpp) { |
| 811 | vb[9] = i2f(dy + h); | 813 | case 4: |
| 812 | vb[10] = i2f(sx + w); | 814 | cb_format = COLOR_8_8_8_8; |
| 813 | vb[11] = i2f(sy + h); | 815 | tex_format = FMT_8_8_8_8; |
| 816 | break; | ||
| 817 | case 2: | ||
| 818 | cb_format = COLOR_5_6_5; | ||
| 819 | tex_format = FMT_5_6_5; | ||
| 820 | break; | ||
| 821 | default: | ||
| 822 | cb_format = COLOR_8; | ||
| 823 | tex_format = FMT_8; | ||
| 824 | break; | ||
| 825 | } | ||
| 814 | 826 | ||
| 815 | /* src */ | 827 | /* src */ |
| 816 | set_tex_resource(dev_priv, tex_format, | 828 | set_tex_resource(dev_priv, tex_format, |
| 817 | src_pitch / cpp, | 829 | src_pitch / cpp, |
| 818 | sy + h, src_pitch / cpp, | 830 | sy2, src_pitch / cpp, |
| 819 | src_gpu_addr); | 831 | src_gpu_addr); |
| 820 | 832 | ||
| 821 | cp_set_surface_sync(dev_priv, | 833 | cp_set_surface_sync(dev_priv, |
| 822 | R600_TC_ACTION_ENA, (src_pitch * (sy + h)), src_gpu_addr); | 834 | R600_TC_ACTION_ENA, src_pitch * sy2, src_gpu_addr); |
| 823 | 835 | ||
| 824 | /* dst */ | 836 | /* dst */ |
| 825 | set_render_target(dev_priv, cb_format, | 837 | set_render_target(dev_priv, cb_format, |
| 826 | dst_pitch / cpp, dy + h, | 838 | dst_pitch / cpp, dy2, |
| 827 | dst_gpu_addr); | 839 | dst_gpu_addr); |
| 828 | 840 | ||
| 829 | /* scissors */ | 841 | /* scissors */ |
| 830 | set_scissors(dev_priv, dx, dy, dx + w, dy + h); | 842 | set_scissors(dev_priv, dx, dy, dx2, dy2); |
| 831 | 843 | ||
| 832 | /* Vertex buffer setup */ | 844 | /* Vertex buffer setup */ |
| 833 | vb_addr = dev_priv->gart_buffers_offset + | 845 | vb_addr = dev_priv->gart_buffers_offset + |
| @@ -840,7 +852,7 @@ r600_blit_swap(struct drm_device *dev, | |||
| 840 | 852 | ||
| 841 | cp_set_surface_sync(dev_priv, | 853 | cp_set_surface_sync(dev_priv, |
| 842 | R600_CB_ACTION_ENA | R600_CB0_DEST_BASE_ENA, | 854 | R600_CB_ACTION_ENA | R600_CB0_DEST_BASE_ENA, |
| 843 | dst_pitch * (dy + h), dst_gpu_addr); | 855 | dst_pitch * dy2, dst_gpu_addr); |
| 844 | 856 | ||
| 845 | dev_priv->blit_vb->used += 12 * 4; | 857 | dev_priv->blit_vb->used += 12 * 4; |
| 846 | } | 858 | } |
diff --git a/drivers/gpu/drm/radeon/r600_blit_kms.c b/drivers/gpu/drm/radeon/r600_blit_kms.c index 93108bb31d1d..dbf716e1fbf3 100644 --- a/drivers/gpu/drm/radeon/r600_blit_kms.c +++ b/drivers/gpu/drm/radeon/r600_blit_kms.c | |||
| @@ -368,7 +368,7 @@ set_default_state(struct radeon_device *rdev) | |||
| 368 | if ((rdev->family == CHIP_RV610) || | 368 | if ((rdev->family == CHIP_RV610) || |
| 369 | (rdev->family == CHIP_RV620) || | 369 | (rdev->family == CHIP_RV620) || |
| 370 | (rdev->family == CHIP_RS780) || | 370 | (rdev->family == CHIP_RS780) || |
| 371 | (rdev->family == CHIP_RS780) || | 371 | (rdev->family == CHIP_RS880) || |
| 372 | (rdev->family == CHIP_RV710)) | 372 | (rdev->family == CHIP_RV710)) |
| 373 | sq_config = 0; | 373 | sq_config = 0; |
| 374 | else | 374 | else |
| @@ -610,6 +610,7 @@ void r600_kms_blit_copy(struct radeon_device *rdev, | |||
| 610 | 610 | ||
| 611 | DRM_DEBUG("emitting copy %16llx %16llx %d %d\n", src_gpu_addr, dst_gpu_addr, | 611 | DRM_DEBUG("emitting copy %16llx %16llx %d %d\n", src_gpu_addr, dst_gpu_addr, |
| 612 | size_bytes, rdev->r600_blit.vb_used); | 612 | size_bytes, rdev->r600_blit.vb_used); |
| 613 | vb = (u32 *)(rdev->r600_blit.vb_ib->ptr + rdev->r600_blit.vb_used); | ||
| 613 | if ((size_bytes & 3) || (src_gpu_addr & 3) || (dst_gpu_addr & 3)) { | 614 | if ((size_bytes & 3) || (src_gpu_addr & 3) || (dst_gpu_addr & 3)) { |
| 614 | max_bytes = 8192; | 615 | max_bytes = 8192; |
| 615 | 616 | ||
| @@ -652,7 +653,6 @@ void r600_kms_blit_copy(struct radeon_device *rdev, | |||
| 652 | vb = r600_nomm_get_vb_ptr(dev); | 653 | vb = r600_nomm_get_vb_ptr(dev); |
| 653 | #endif | 654 | #endif |
| 654 | } | 655 | } |
| 655 | vb = (u32 *)(rdev->r600_blit.vb_ib->ptr + rdev->r600_blit.vb_used); | ||
| 656 | 656 | ||
| 657 | vb[0] = i2f(dst_x); | 657 | vb[0] = i2f(dst_x); |
| 658 | vb[1] = 0; | 658 | vb[1] = 0; |
| @@ -747,7 +747,6 @@ void r600_kms_blit_copy(struct radeon_device *rdev, | |||
| 747 | vb = r600_nomm_get_vb_ptr(dev); | 747 | vb = r600_nomm_get_vb_ptr(dev); |
| 748 | } | 748 | } |
| 749 | #endif | 749 | #endif |
| 750 | vb = (u32 *)(rdev->r600_blit.vb_ib->ptr + rdev->r600_blit.vb_used); | ||
| 751 | 750 | ||
| 752 | vb[0] = i2f(dst_x / 4); | 751 | vb[0] = i2f(dst_x / 4); |
| 753 | vb[1] = 0; | 752 | vb[1] = 0; |
diff --git a/drivers/gpu/drm/radeon/r600_cs.c b/drivers/gpu/drm/radeon/r600_cs.c index 17e42195c632..0d820764f340 100644 --- a/drivers/gpu/drm/radeon/r600_cs.c +++ b/drivers/gpu/drm/radeon/r600_cs.c | |||
| @@ -466,6 +466,23 @@ static int r600_packet3_check(struct radeon_cs_parser *p, | |||
| 466 | for (i = 0; i < pkt->count; i++) { | 466 | for (i = 0; i < pkt->count; i++) { |
| 467 | reg = start_reg + (4 * i); | 467 | reg = start_reg + (4 * i); |
| 468 | switch (reg) { | 468 | switch (reg) { |
| 469 | case SQ_ESGS_RING_BASE: | ||
| 470 | case SQ_GSVS_RING_BASE: | ||
| 471 | case SQ_ESTMP_RING_BASE: | ||
| 472 | case SQ_GSTMP_RING_BASE: | ||
| 473 | case SQ_VSTMP_RING_BASE: | ||
| 474 | case SQ_PSTMP_RING_BASE: | ||
| 475 | case SQ_FBUF_RING_BASE: | ||
| 476 | case SQ_REDUC_RING_BASE: | ||
| 477 | case SX_MEMORY_EXPORT_BASE: | ||
| 478 | r = r600_cs_packet_next_reloc(p, &reloc); | ||
| 479 | if (r) { | ||
| 480 | DRM_ERROR("bad SET_CONFIG_REG " | ||
| 481 | "0x%04X\n", reg); | ||
| 482 | return -EINVAL; | ||
| 483 | } | ||
| 484 | ib[idx+1+i] += (u32)((reloc->lobj.gpu_offset >> 8) & 0xffffffff); | ||
| 485 | break; | ||
| 469 | case CP_COHER_BASE: | 486 | case CP_COHER_BASE: |
| 470 | /* use PACKET3_SURFACE_SYNC */ | 487 | /* use PACKET3_SURFACE_SYNC */ |
| 471 | return -EINVAL; | 488 | return -EINVAL; |
| @@ -487,6 +504,7 @@ static int r600_packet3_check(struct radeon_cs_parser *p, | |||
| 487 | reg = start_reg + (4 * i); | 504 | reg = start_reg + (4 * i); |
| 488 | switch (reg) { | 505 | switch (reg) { |
| 489 | case DB_DEPTH_BASE: | 506 | case DB_DEPTH_BASE: |
| 507 | case DB_HTILE_DATA_BASE: | ||
| 490 | case CB_COLOR0_BASE: | 508 | case CB_COLOR0_BASE: |
| 491 | case CB_COLOR1_BASE: | 509 | case CB_COLOR1_BASE: |
| 492 | case CB_COLOR2_BASE: | 510 | case CB_COLOR2_BASE: |
diff --git a/drivers/gpu/drm/radeon/r600d.h b/drivers/gpu/drm/radeon/r600d.h index 9b64d47f1f82..27ab428b149b 100644 --- a/drivers/gpu/drm/radeon/r600d.h +++ b/drivers/gpu/drm/radeon/r600d.h | |||
| @@ -119,6 +119,7 @@ | |||
| 119 | #define DB_DEBUG 0x9830 | 119 | #define DB_DEBUG 0x9830 |
| 120 | #define PREZ_MUST_WAIT_FOR_POSTZ_DONE (1 << 31) | 120 | #define PREZ_MUST_WAIT_FOR_POSTZ_DONE (1 << 31) |
| 121 | #define DB_DEPTH_BASE 0x2800C | 121 | #define DB_DEPTH_BASE 0x2800C |
| 122 | #define DB_HTILE_DATA_BASE 0x28014 | ||
| 122 | #define DB_WATERMARKS 0x9838 | 123 | #define DB_WATERMARKS 0x9838 |
| 123 | #define DEPTH_FREE(x) ((x) << 0) | 124 | #define DEPTH_FREE(x) ((x) << 0) |
| 124 | #define DEPTH_FLUSH(x) ((x) << 5) | 125 | #define DEPTH_FLUSH(x) ((x) << 5) |
| @@ -171,6 +172,14 @@ | |||
| 171 | #define SQ_STACK_RESOURCE_MGMT_2 0x8c14 | 172 | #define SQ_STACK_RESOURCE_MGMT_2 0x8c14 |
| 172 | # define NUM_GS_STACK_ENTRIES(x) ((x) << 0) | 173 | # define NUM_GS_STACK_ENTRIES(x) ((x) << 0) |
| 173 | # define NUM_ES_STACK_ENTRIES(x) ((x) << 16) | 174 | # define NUM_ES_STACK_ENTRIES(x) ((x) << 16) |
| 175 | #define SQ_ESGS_RING_BASE 0x8c40 | ||
| 176 | #define SQ_GSVS_RING_BASE 0x8c48 | ||
| 177 | #define SQ_ESTMP_RING_BASE 0x8c50 | ||
| 178 | #define SQ_GSTMP_RING_BASE 0x8c58 | ||
| 179 | #define SQ_VSTMP_RING_BASE 0x8c60 | ||
| 180 | #define SQ_PSTMP_RING_BASE 0x8c68 | ||
| 181 | #define SQ_FBUF_RING_BASE 0x8c70 | ||
| 182 | #define SQ_REDUC_RING_BASE 0x8c78 | ||
| 174 | 183 | ||
| 175 | #define GRBM_CNTL 0x8000 | 184 | #define GRBM_CNTL 0x8000 |
| 176 | # define GRBM_READ_TIMEOUT(x) ((x) << 0) | 185 | # define GRBM_READ_TIMEOUT(x) ((x) << 0) |
| @@ -271,6 +280,10 @@ | |||
| 271 | #define PCIE_PORT_INDEX 0x0038 | 280 | #define PCIE_PORT_INDEX 0x0038 |
| 272 | #define PCIE_PORT_DATA 0x003C | 281 | #define PCIE_PORT_DATA 0x003C |
| 273 | 282 | ||
| 283 | #define CHMAP 0x2004 | ||
| 284 | #define NOOFCHAN_SHIFT 12 | ||
| 285 | #define NOOFCHAN_MASK 0x00003000 | ||
| 286 | |||
| 274 | #define RAMCFG 0x2408 | 287 | #define RAMCFG 0x2408 |
| 275 | #define NOOFBANK_SHIFT 0 | 288 | #define NOOFBANK_SHIFT 0 |
| 276 | #define NOOFBANK_MASK 0x00000001 | 289 | #define NOOFBANK_MASK 0x00000001 |
| @@ -352,6 +365,7 @@ | |||
| 352 | 365 | ||
| 353 | 366 | ||
| 354 | #define SX_MISC 0x28350 | 367 | #define SX_MISC 0x28350 |
| 368 | #define SX_MEMORY_EXPORT_BASE 0x9010 | ||
| 355 | #define SX_DEBUG_1 0x9054 | 369 | #define SX_DEBUG_1 0x9054 |
| 356 | #define SMX_EVENT_RELEASE (1 << 0) | 370 | #define SMX_EVENT_RELEASE (1 << 0) |
| 357 | #define ENABLE_NEW_SMX_ADDRESS (1 << 16) | 371 | #define ENABLE_NEW_SMX_ADDRESS (1 << 16) |
diff --git a/drivers/gpu/drm/radeon/radeon.h b/drivers/gpu/drm/radeon/radeon.h index 5ab35b81c86b..224506a2f7b1 100644 --- a/drivers/gpu/drm/radeon/radeon.h +++ b/drivers/gpu/drm/radeon/radeon.h | |||
| @@ -139,6 +139,10 @@ struct radeon_clock { | |||
| 139 | uint32_t default_sclk; | 139 | uint32_t default_sclk; |
| 140 | }; | 140 | }; |
| 141 | 141 | ||
| 142 | /* | ||
| 143 | * Power management | ||
| 144 | */ | ||
| 145 | int radeon_pm_init(struct radeon_device *rdev); | ||
| 142 | 146 | ||
| 143 | /* | 147 | /* |
| 144 | * Fences. | 148 | * Fences. |
| @@ -276,6 +280,8 @@ union radeon_gart_table { | |||
| 276 | struct radeon_gart_table_vram vram; | 280 | struct radeon_gart_table_vram vram; |
| 277 | }; | 281 | }; |
| 278 | 282 | ||
| 283 | #define RADEON_GPU_PAGE_SIZE 4096 | ||
| 284 | |||
| 279 | struct radeon_gart { | 285 | struct radeon_gart { |
| 280 | dma_addr_t table_addr; | 286 | dma_addr_t table_addr; |
| 281 | unsigned num_gpu_pages; | 287 | unsigned num_gpu_pages; |
| @@ -513,6 +519,7 @@ typedef int (*radeon_packet3_check_t)(struct radeon_cs_parser *p, | |||
| 513 | * AGP | 519 | * AGP |
| 514 | */ | 520 | */ |
| 515 | int radeon_agp_init(struct radeon_device *rdev); | 521 | int radeon_agp_init(struct radeon_device *rdev); |
| 522 | void radeon_agp_resume(struct radeon_device *rdev); | ||
| 516 | void radeon_agp_fini(struct radeon_device *rdev); | 523 | void radeon_agp_fini(struct radeon_device *rdev); |
| 517 | 524 | ||
| 518 | 525 | ||
| @@ -621,7 +628,9 @@ struct radeon_asic { | |||
| 621 | uint64_t dst_offset, | 628 | uint64_t dst_offset, |
| 622 | unsigned num_pages, | 629 | unsigned num_pages, |
| 623 | struct radeon_fence *fence); | 630 | struct radeon_fence *fence); |
| 631 | uint32_t (*get_engine_clock)(struct radeon_device *rdev); | ||
| 624 | void (*set_engine_clock)(struct radeon_device *rdev, uint32_t eng_clock); | 632 | void (*set_engine_clock)(struct radeon_device *rdev, uint32_t eng_clock); |
| 633 | uint32_t (*get_memory_clock)(struct radeon_device *rdev); | ||
| 625 | void (*set_memory_clock)(struct radeon_device *rdev, uint32_t mem_clock); | 634 | void (*set_memory_clock)(struct radeon_device *rdev, uint32_t mem_clock); |
| 626 | void (*set_pcie_lanes)(struct radeon_device *rdev, int lanes); | 635 | void (*set_pcie_lanes)(struct radeon_device *rdev, int lanes); |
| 627 | void (*set_clock_gating)(struct radeon_device *rdev, int enable); | 636 | void (*set_clock_gating)(struct radeon_device *rdev, int enable); |
| @@ -783,6 +792,7 @@ struct radeon_device { | |||
| 783 | const struct firmware *me_fw; /* all family ME firmware */ | 792 | const struct firmware *me_fw; /* all family ME firmware */ |
| 784 | const struct firmware *pfp_fw; /* r6/700 PFP firmware */ | 793 | const struct firmware *pfp_fw; /* r6/700 PFP firmware */ |
| 785 | struct r600_blit r600_blit; | 794 | struct r600_blit r600_blit; |
| 795 | int msi_enabled; /* msi enabled */ | ||
| 786 | }; | 796 | }; |
| 787 | 797 | ||
| 788 | int radeon_device_init(struct radeon_device *rdev, | 798 | int radeon_device_init(struct radeon_device *rdev, |
| @@ -952,7 +962,9 @@ static inline void radeon_ring_write(struct radeon_device *rdev, uint32_t v) | |||
| 952 | #define radeon_copy_blit(rdev, s, d, np, f) (rdev)->asic->copy_blit((rdev), (s), (d), (np), (f)) | 962 | #define radeon_copy_blit(rdev, s, d, np, f) (rdev)->asic->copy_blit((rdev), (s), (d), (np), (f)) |
| 953 | #define radeon_copy_dma(rdev, s, d, np, f) (rdev)->asic->copy_dma((rdev), (s), (d), (np), (f)) | 963 | #define radeon_copy_dma(rdev, s, d, np, f) (rdev)->asic->copy_dma((rdev), (s), (d), (np), (f)) |
| 954 | #define radeon_copy(rdev, s, d, np, f) (rdev)->asic->copy((rdev), (s), (d), (np), (f)) | 964 | #define radeon_copy(rdev, s, d, np, f) (rdev)->asic->copy((rdev), (s), (d), (np), (f)) |
| 965 | #define radeon_get_engine_clock(rdev) (rdev)->asic->get_engine_clock((rdev)) | ||
| 955 | #define radeon_set_engine_clock(rdev, e) (rdev)->asic->set_engine_clock((rdev), (e)) | 966 | #define radeon_set_engine_clock(rdev, e) (rdev)->asic->set_engine_clock((rdev), (e)) |
| 967 | #define radeon_get_memory_clock(rdev) (rdev)->asic->get_memory_clock((rdev)) | ||
| 956 | #define radeon_set_memory_clock(rdev, e) (rdev)->asic->set_engine_clock((rdev), (e)) | 968 | #define radeon_set_memory_clock(rdev, e) (rdev)->asic->set_engine_clock((rdev), (e)) |
| 957 | #define radeon_set_pcie_lanes(rdev, l) (rdev)->asic->set_pcie_lanes((rdev), (l)) | 969 | #define radeon_set_pcie_lanes(rdev, l) (rdev)->asic->set_pcie_lanes((rdev), (l)) |
| 958 | #define radeon_set_clock_gating(rdev, e) (rdev)->asic->set_clock_gating((rdev), (e)) | 970 | #define radeon_set_clock_gating(rdev, e) (rdev)->asic->set_clock_gating((rdev), (e)) |
diff --git a/drivers/gpu/drm/radeon/radeon_agp.c b/drivers/gpu/drm/radeon/radeon_agp.c index 23ea9955ac59..54bf49a6d676 100644 --- a/drivers/gpu/drm/radeon/radeon_agp.c +++ b/drivers/gpu/drm/radeon/radeon_agp.c | |||
| @@ -237,6 +237,18 @@ int radeon_agp_init(struct radeon_device *rdev) | |||
| 237 | #endif | 237 | #endif |
| 238 | } | 238 | } |
| 239 | 239 | ||
| 240 | void radeon_agp_resume(struct radeon_device *rdev) | ||
| 241 | { | ||
| 242 | #if __OS_HAS_AGP | ||
| 243 | int r; | ||
| 244 | if (rdev->flags & RADEON_IS_AGP) { | ||
| 245 | r = radeon_agp_init(rdev); | ||
| 246 | if (r) | ||
| 247 | dev_warn(rdev->dev, "radeon AGP reinit failed\n"); | ||
| 248 | } | ||
| 249 | #endif | ||
| 250 | } | ||
| 251 | |||
| 240 | void radeon_agp_fini(struct radeon_device *rdev) | 252 | void radeon_agp_fini(struct radeon_device *rdev) |
| 241 | { | 253 | { |
| 242 | #if __OS_HAS_AGP | 254 | #if __OS_HAS_AGP |
diff --git a/drivers/gpu/drm/radeon/radeon_asic.h b/drivers/gpu/drm/radeon/radeon_asic.h index c3532c7a6f3f..c18fbee387d7 100644 --- a/drivers/gpu/drm/radeon/radeon_asic.h +++ b/drivers/gpu/drm/radeon/radeon_asic.h | |||
| @@ -31,10 +31,13 @@ | |||
| 31 | /* | 31 | /* |
| 32 | * common functions | 32 | * common functions |
| 33 | */ | 33 | */ |
| 34 | uint32_t radeon_legacy_get_engine_clock(struct radeon_device *rdev); | ||
| 34 | void radeon_legacy_set_engine_clock(struct radeon_device *rdev, uint32_t eng_clock); | 35 | void radeon_legacy_set_engine_clock(struct radeon_device *rdev, uint32_t eng_clock); |
| 35 | void radeon_legacy_set_clock_gating(struct radeon_device *rdev, int enable); | 36 | void radeon_legacy_set_clock_gating(struct radeon_device *rdev, int enable); |
| 36 | 37 | ||
| 38 | uint32_t radeon_atom_get_engine_clock(struct radeon_device *rdev); | ||
| 37 | void radeon_atom_set_engine_clock(struct radeon_device *rdev, uint32_t eng_clock); | 39 | void radeon_atom_set_engine_clock(struct radeon_device *rdev, uint32_t eng_clock); |
| 40 | uint32_t radeon_atom_get_memory_clock(struct radeon_device *rdev); | ||
| 38 | void radeon_atom_set_memory_clock(struct radeon_device *rdev, uint32_t mem_clock); | 41 | void radeon_atom_set_memory_clock(struct radeon_device *rdev, uint32_t mem_clock); |
| 39 | void radeon_atom_set_clock_gating(struct radeon_device *rdev, int enable); | 42 | void radeon_atom_set_clock_gating(struct radeon_device *rdev, int enable); |
| 40 | 43 | ||
| @@ -95,7 +98,9 @@ static struct radeon_asic r100_asic = { | |||
| 95 | .copy_blit = &r100_copy_blit, | 98 | .copy_blit = &r100_copy_blit, |
| 96 | .copy_dma = NULL, | 99 | .copy_dma = NULL, |
| 97 | .copy = &r100_copy_blit, | 100 | .copy = &r100_copy_blit, |
| 101 | .get_engine_clock = &radeon_legacy_get_engine_clock, | ||
| 98 | .set_engine_clock = &radeon_legacy_set_engine_clock, | 102 | .set_engine_clock = &radeon_legacy_set_engine_clock, |
| 103 | .get_memory_clock = NULL, | ||
| 99 | .set_memory_clock = NULL, | 104 | .set_memory_clock = NULL, |
| 100 | .set_pcie_lanes = NULL, | 105 | .set_pcie_lanes = NULL, |
| 101 | .set_clock_gating = &radeon_legacy_set_clock_gating, | 106 | .set_clock_gating = &radeon_legacy_set_clock_gating, |
| @@ -148,7 +153,9 @@ static struct radeon_asic r300_asic = { | |||
| 148 | .copy_blit = &r100_copy_blit, | 153 | .copy_blit = &r100_copy_blit, |
| 149 | .copy_dma = &r300_copy_dma, | 154 | .copy_dma = &r300_copy_dma, |
| 150 | .copy = &r100_copy_blit, | 155 | .copy = &r100_copy_blit, |
| 156 | .get_engine_clock = &radeon_legacy_get_engine_clock, | ||
| 151 | .set_engine_clock = &radeon_legacy_set_engine_clock, | 157 | .set_engine_clock = &radeon_legacy_set_engine_clock, |
| 158 | .get_memory_clock = NULL, | ||
| 152 | .set_memory_clock = NULL, | 159 | .set_memory_clock = NULL, |
| 153 | .set_pcie_lanes = &rv370_set_pcie_lanes, | 160 | .set_pcie_lanes = &rv370_set_pcie_lanes, |
| 154 | .set_clock_gating = &radeon_legacy_set_clock_gating, | 161 | .set_clock_gating = &radeon_legacy_set_clock_gating, |
| @@ -185,7 +192,9 @@ static struct radeon_asic r420_asic = { | |||
| 185 | .copy_blit = &r100_copy_blit, | 192 | .copy_blit = &r100_copy_blit, |
| 186 | .copy_dma = &r300_copy_dma, | 193 | .copy_dma = &r300_copy_dma, |
| 187 | .copy = &r100_copy_blit, | 194 | .copy = &r100_copy_blit, |
| 195 | .get_engine_clock = &radeon_atom_get_engine_clock, | ||
| 188 | .set_engine_clock = &radeon_atom_set_engine_clock, | 196 | .set_engine_clock = &radeon_atom_set_engine_clock, |
| 197 | .get_memory_clock = &radeon_atom_get_memory_clock, | ||
| 189 | .set_memory_clock = &radeon_atom_set_memory_clock, | 198 | .set_memory_clock = &radeon_atom_set_memory_clock, |
| 190 | .set_pcie_lanes = &rv370_set_pcie_lanes, | 199 | .set_pcie_lanes = &rv370_set_pcie_lanes, |
| 191 | .set_clock_gating = &radeon_atom_set_clock_gating, | 200 | .set_clock_gating = &radeon_atom_set_clock_gating, |
| @@ -227,7 +236,9 @@ static struct radeon_asic rs400_asic = { | |||
| 227 | .copy_blit = &r100_copy_blit, | 236 | .copy_blit = &r100_copy_blit, |
| 228 | .copy_dma = &r300_copy_dma, | 237 | .copy_dma = &r300_copy_dma, |
| 229 | .copy = &r100_copy_blit, | 238 | .copy = &r100_copy_blit, |
| 239 | .get_engine_clock = &radeon_legacy_get_engine_clock, | ||
| 230 | .set_engine_clock = &radeon_legacy_set_engine_clock, | 240 | .set_engine_clock = &radeon_legacy_set_engine_clock, |
| 241 | .get_memory_clock = NULL, | ||
| 231 | .set_memory_clock = NULL, | 242 | .set_memory_clock = NULL, |
| 232 | .set_pcie_lanes = NULL, | 243 | .set_pcie_lanes = NULL, |
| 233 | .set_clock_gating = &radeon_legacy_set_clock_gating, | 244 | .set_clock_gating = &radeon_legacy_set_clock_gating, |
| @@ -273,7 +284,9 @@ static struct radeon_asic rs600_asic = { | |||
| 273 | .copy_blit = &r100_copy_blit, | 284 | .copy_blit = &r100_copy_blit, |
| 274 | .copy_dma = &r300_copy_dma, | 285 | .copy_dma = &r300_copy_dma, |
| 275 | .copy = &r100_copy_blit, | 286 | .copy = &r100_copy_blit, |
| 287 | .get_engine_clock = &radeon_atom_get_engine_clock, | ||
| 276 | .set_engine_clock = &radeon_atom_set_engine_clock, | 288 | .set_engine_clock = &radeon_atom_set_engine_clock, |
| 289 | .get_memory_clock = &radeon_atom_get_memory_clock, | ||
| 277 | .set_memory_clock = &radeon_atom_set_memory_clock, | 290 | .set_memory_clock = &radeon_atom_set_memory_clock, |
| 278 | .set_pcie_lanes = NULL, | 291 | .set_pcie_lanes = NULL, |
| 279 | .set_clock_gating = &radeon_atom_set_clock_gating, | 292 | .set_clock_gating = &radeon_atom_set_clock_gating, |
| @@ -312,7 +325,9 @@ static struct radeon_asic rs690_asic = { | |||
| 312 | .copy_blit = &r100_copy_blit, | 325 | .copy_blit = &r100_copy_blit, |
| 313 | .copy_dma = &r300_copy_dma, | 326 | .copy_dma = &r300_copy_dma, |
| 314 | .copy = &r300_copy_dma, | 327 | .copy = &r300_copy_dma, |
| 328 | .get_engine_clock = &radeon_atom_get_engine_clock, | ||
| 315 | .set_engine_clock = &radeon_atom_set_engine_clock, | 329 | .set_engine_clock = &radeon_atom_set_engine_clock, |
| 330 | .get_memory_clock = &radeon_atom_get_memory_clock, | ||
| 316 | .set_memory_clock = &radeon_atom_set_memory_clock, | 331 | .set_memory_clock = &radeon_atom_set_memory_clock, |
| 317 | .set_pcie_lanes = NULL, | 332 | .set_pcie_lanes = NULL, |
| 318 | .set_clock_gating = &radeon_atom_set_clock_gating, | 333 | .set_clock_gating = &radeon_atom_set_clock_gating, |
| @@ -357,7 +372,9 @@ static struct radeon_asic rv515_asic = { | |||
| 357 | .copy_blit = &r100_copy_blit, | 372 | .copy_blit = &r100_copy_blit, |
| 358 | .copy_dma = &r300_copy_dma, | 373 | .copy_dma = &r300_copy_dma, |
| 359 | .copy = &r100_copy_blit, | 374 | .copy = &r100_copy_blit, |
| 375 | .get_engine_clock = &radeon_atom_get_engine_clock, | ||
| 360 | .set_engine_clock = &radeon_atom_set_engine_clock, | 376 | .set_engine_clock = &radeon_atom_set_engine_clock, |
| 377 | .get_memory_clock = &radeon_atom_get_memory_clock, | ||
| 361 | .set_memory_clock = &radeon_atom_set_memory_clock, | 378 | .set_memory_clock = &radeon_atom_set_memory_clock, |
| 362 | .set_pcie_lanes = &rv370_set_pcie_lanes, | 379 | .set_pcie_lanes = &rv370_set_pcie_lanes, |
| 363 | .set_clock_gating = &radeon_atom_set_clock_gating, | 380 | .set_clock_gating = &radeon_atom_set_clock_gating, |
| @@ -393,7 +410,9 @@ static struct radeon_asic r520_asic = { | |||
| 393 | .copy_blit = &r100_copy_blit, | 410 | .copy_blit = &r100_copy_blit, |
| 394 | .copy_dma = &r300_copy_dma, | 411 | .copy_dma = &r300_copy_dma, |
| 395 | .copy = &r100_copy_blit, | 412 | .copy = &r100_copy_blit, |
| 413 | .get_engine_clock = &radeon_atom_get_engine_clock, | ||
| 396 | .set_engine_clock = &radeon_atom_set_engine_clock, | 414 | .set_engine_clock = &radeon_atom_set_engine_clock, |
| 415 | .get_memory_clock = &radeon_atom_get_memory_clock, | ||
| 397 | .set_memory_clock = &radeon_atom_set_memory_clock, | 416 | .set_memory_clock = &radeon_atom_set_memory_clock, |
| 398 | .set_pcie_lanes = &rv370_set_pcie_lanes, | 417 | .set_pcie_lanes = &rv370_set_pcie_lanes, |
| 399 | .set_clock_gating = &radeon_atom_set_clock_gating, | 418 | .set_clock_gating = &radeon_atom_set_clock_gating, |
| @@ -456,7 +475,9 @@ static struct radeon_asic r600_asic = { | |||
| 456 | .copy_blit = &r600_copy_blit, | 475 | .copy_blit = &r600_copy_blit, |
| 457 | .copy_dma = &r600_copy_blit, | 476 | .copy_dma = &r600_copy_blit, |
| 458 | .copy = &r600_copy_blit, | 477 | .copy = &r600_copy_blit, |
| 478 | .get_engine_clock = &radeon_atom_get_engine_clock, | ||
| 459 | .set_engine_clock = &radeon_atom_set_engine_clock, | 479 | .set_engine_clock = &radeon_atom_set_engine_clock, |
| 480 | .get_memory_clock = &radeon_atom_get_memory_clock, | ||
| 460 | .set_memory_clock = &radeon_atom_set_memory_clock, | 481 | .set_memory_clock = &radeon_atom_set_memory_clock, |
| 461 | .set_pcie_lanes = NULL, | 482 | .set_pcie_lanes = NULL, |
| 462 | .set_clock_gating = &radeon_atom_set_clock_gating, | 483 | .set_clock_gating = &radeon_atom_set_clock_gating, |
| @@ -493,7 +514,9 @@ static struct radeon_asic rv770_asic = { | |||
| 493 | .copy_blit = &r600_copy_blit, | 514 | .copy_blit = &r600_copy_blit, |
| 494 | .copy_dma = &r600_copy_blit, | 515 | .copy_dma = &r600_copy_blit, |
| 495 | .copy = &r600_copy_blit, | 516 | .copy = &r600_copy_blit, |
| 517 | .get_engine_clock = &radeon_atom_get_engine_clock, | ||
| 496 | .set_engine_clock = &radeon_atom_set_engine_clock, | 518 | .set_engine_clock = &radeon_atom_set_engine_clock, |
| 519 | .get_memory_clock = &radeon_atom_get_memory_clock, | ||
| 497 | .set_memory_clock = &radeon_atom_set_memory_clock, | 520 | .set_memory_clock = &radeon_atom_set_memory_clock, |
| 498 | .set_pcie_lanes = NULL, | 521 | .set_pcie_lanes = NULL, |
| 499 | .set_clock_gating = &radeon_atom_set_clock_gating, | 522 | .set_clock_gating = &radeon_atom_set_clock_gating, |
diff --git a/drivers/gpu/drm/radeon/radeon_atombios.c b/drivers/gpu/drm/radeon/radeon_atombios.c index 5b6c08cee40e..2ed88a820935 100644 --- a/drivers/gpu/drm/radeon/radeon_atombios.c +++ b/drivers/gpu/drm/radeon/radeon_atombios.c | |||
| @@ -46,7 +46,8 @@ radeon_add_atom_connector(struct drm_device *dev, | |||
| 46 | uint32_t supported_device, | 46 | uint32_t supported_device, |
| 47 | int connector_type, | 47 | int connector_type, |
| 48 | struct radeon_i2c_bus_rec *i2c_bus, | 48 | struct radeon_i2c_bus_rec *i2c_bus, |
| 49 | bool linkb, uint32_t igp_lane_info); | 49 | bool linkb, uint32_t igp_lane_info, |
| 50 | uint16_t connector_object_id); | ||
| 50 | 51 | ||
| 51 | /* from radeon_legacy_encoder.c */ | 52 | /* from radeon_legacy_encoder.c */ |
| 52 | extern void | 53 | extern void |
| @@ -193,6 +194,23 @@ const int supported_devices_connector_convert[] = { | |||
| 193 | DRM_MODE_CONNECTOR_DisplayPort | 194 | DRM_MODE_CONNECTOR_DisplayPort |
| 194 | }; | 195 | }; |
| 195 | 196 | ||
| 197 | const uint16_t supported_devices_connector_object_id_convert[] = { | ||
| 198 | CONNECTOR_OBJECT_ID_NONE, | ||
| 199 | CONNECTOR_OBJECT_ID_VGA, | ||
| 200 | CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I, /* not all boards support DL */ | ||
| 201 | CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D, /* not all boards support DL */ | ||
| 202 | CONNECTOR_OBJECT_ID_VGA, /* technically DVI-A */ | ||
| 203 | CONNECTOR_OBJECT_ID_COMPOSITE, | ||
| 204 | CONNECTOR_OBJECT_ID_SVIDEO, | ||
| 205 | CONNECTOR_OBJECT_ID_LVDS, | ||
| 206 | CONNECTOR_OBJECT_ID_9PIN_DIN, | ||
| 207 | CONNECTOR_OBJECT_ID_9PIN_DIN, | ||
| 208 | CONNECTOR_OBJECT_ID_DISPLAYPORT, | ||
| 209 | CONNECTOR_OBJECT_ID_HDMI_TYPE_A, | ||
| 210 | CONNECTOR_OBJECT_ID_HDMI_TYPE_B, | ||
| 211 | CONNECTOR_OBJECT_ID_SVIDEO | ||
| 212 | }; | ||
| 213 | |||
| 196 | const int object_connector_convert[] = { | 214 | const int object_connector_convert[] = { |
| 197 | DRM_MODE_CONNECTOR_Unknown, | 215 | DRM_MODE_CONNECTOR_Unknown, |
| 198 | DRM_MODE_CONNECTOR_DVII, | 216 | DRM_MODE_CONNECTOR_DVII, |
| @@ -229,7 +247,7 @@ bool radeon_get_atom_connector_info_from_object_table(struct drm_device *dev) | |||
| 229 | ATOM_OBJECT_HEADER *obj_header; | 247 | ATOM_OBJECT_HEADER *obj_header; |
| 230 | int i, j, path_size, device_support; | 248 | int i, j, path_size, device_support; |
| 231 | int connector_type; | 249 | int connector_type; |
| 232 | uint16_t igp_lane_info, conn_id; | 250 | uint16_t igp_lane_info, conn_id, connector_object_id; |
| 233 | bool linkb; | 251 | bool linkb; |
| 234 | struct radeon_i2c_bus_rec ddc_bus; | 252 | struct radeon_i2c_bus_rec ddc_bus; |
| 235 | 253 | ||
| @@ -277,7 +295,8 @@ bool radeon_get_atom_connector_info_from_object_table(struct drm_device *dev) | |||
| 277 | ATOM_DEVICE_CV_SUPPORT) | 295 | ATOM_DEVICE_CV_SUPPORT) |
| 278 | continue; | 296 | continue; |
| 279 | 297 | ||
| 280 | if ((rdev->family == CHIP_RS780) && | 298 | /* IGP chips */ |
| 299 | if ((rdev->flags & RADEON_IS_IGP) && | ||
| 281 | (con_obj_id == | 300 | (con_obj_id == |
| 282 | CONNECTOR_OBJECT_ID_PCIE_CONNECTOR)) { | 301 | CONNECTOR_OBJECT_ID_PCIE_CONNECTOR)) { |
| 283 | uint16_t igp_offset = 0; | 302 | uint16_t igp_offset = 0; |
| @@ -311,6 +330,7 @@ bool radeon_get_atom_connector_info_from_object_table(struct drm_device *dev) | |||
| 311 | connector_type = | 330 | connector_type = |
| 312 | object_connector_convert | 331 | object_connector_convert |
| 313 | [ct]; | 332 | [ct]; |
| 333 | connector_object_id = ct; | ||
| 314 | igp_lane_info = | 334 | igp_lane_info = |
| 315 | slot_config & 0xffff; | 335 | slot_config & 0xffff; |
| 316 | } else | 336 | } else |
| @@ -321,6 +341,7 @@ bool radeon_get_atom_connector_info_from_object_table(struct drm_device *dev) | |||
| 321 | igp_lane_info = 0; | 341 | igp_lane_info = 0; |
| 322 | connector_type = | 342 | connector_type = |
| 323 | object_connector_convert[con_obj_id]; | 343 | object_connector_convert[con_obj_id]; |
| 344 | connector_object_id = con_obj_id; | ||
| 324 | } | 345 | } |
| 325 | 346 | ||
| 326 | if (connector_type == DRM_MODE_CONNECTOR_Unknown) | 347 | if (connector_type == DRM_MODE_CONNECTOR_Unknown) |
| @@ -425,7 +446,8 @@ bool radeon_get_atom_connector_info_from_object_table(struct drm_device *dev) | |||
| 425 | le16_to_cpu(path-> | 446 | le16_to_cpu(path-> |
| 426 | usDeviceTag), | 447 | usDeviceTag), |
| 427 | connector_type, &ddc_bus, | 448 | connector_type, &ddc_bus, |
| 428 | linkb, igp_lane_info); | 449 | linkb, igp_lane_info, |
| 450 | connector_object_id); | ||
| 429 | 451 | ||
| 430 | } | 452 | } |
| 431 | } | 453 | } |
| @@ -435,6 +457,45 @@ bool radeon_get_atom_connector_info_from_object_table(struct drm_device *dev) | |||
| 435 | return true; | 457 | return true; |
| 436 | } | 458 | } |
| 437 | 459 | ||
| 460 | static uint16_t atombios_get_connector_object_id(struct drm_device *dev, | ||
| 461 | int connector_type, | ||
| 462 | uint16_t devices) | ||
| 463 | { | ||
| 464 | struct radeon_device *rdev = dev->dev_private; | ||
| 465 | |||
| 466 | if (rdev->flags & RADEON_IS_IGP) { | ||
| 467 | return supported_devices_connector_object_id_convert | ||
| 468 | [connector_type]; | ||
| 469 | } else if (((connector_type == DRM_MODE_CONNECTOR_DVII) || | ||
| 470 | (connector_type == DRM_MODE_CONNECTOR_DVID)) && | ||
| 471 | (devices & ATOM_DEVICE_DFP2_SUPPORT)) { | ||
| 472 | struct radeon_mode_info *mode_info = &rdev->mode_info; | ||
| 473 | struct atom_context *ctx = mode_info->atom_context; | ||
| 474 | int index = GetIndexIntoMasterTable(DATA, XTMDS_Info); | ||
| 475 | uint16_t size, data_offset; | ||
| 476 | uint8_t frev, crev; | ||
| 477 | ATOM_XTMDS_INFO *xtmds; | ||
| 478 | |||
| 479 | atom_parse_data_header(ctx, index, &size, &frev, &crev, &data_offset); | ||
| 480 | xtmds = (ATOM_XTMDS_INFO *)(ctx->bios + data_offset); | ||
| 481 | |||
| 482 | if (xtmds->ucSupportedLink & ATOM_XTMDS_SUPPORTED_DUALLINK) { | ||
| 483 | if (connector_type == DRM_MODE_CONNECTOR_DVII) | ||
| 484 | return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I; | ||
| 485 | else | ||
| 486 | return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D; | ||
| 487 | } else { | ||
| 488 | if (connector_type == DRM_MODE_CONNECTOR_DVII) | ||
| 489 | return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I; | ||
| 490 | else | ||
| 491 | return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D; | ||
| 492 | } | ||
| 493 | } else { | ||
| 494 | return supported_devices_connector_object_id_convert | ||
| 495 | [connector_type]; | ||
| 496 | } | ||
| 497 | } | ||
| 498 | |||
| 438 | struct bios_connector { | 499 | struct bios_connector { |
| 439 | bool valid; | 500 | bool valid; |
| 440 | uint16_t line_mux; | 501 | uint16_t line_mux; |
| @@ -593,14 +654,20 @@ bool radeon_get_atom_connector_info_from_supported_devices_table(struct | |||
| 593 | 654 | ||
| 594 | /* add the connectors */ | 655 | /* add the connectors */ |
| 595 | for (i = 0; i < ATOM_MAX_SUPPORTED_DEVICE; i++) { | 656 | for (i = 0; i < ATOM_MAX_SUPPORTED_DEVICE; i++) { |
| 596 | if (bios_connectors[i].valid) | 657 | if (bios_connectors[i].valid) { |
| 658 | uint16_t connector_object_id = | ||
| 659 | atombios_get_connector_object_id(dev, | ||
| 660 | bios_connectors[i].connector_type, | ||
| 661 | bios_connectors[i].devices); | ||
| 597 | radeon_add_atom_connector(dev, | 662 | radeon_add_atom_connector(dev, |
| 598 | bios_connectors[i].line_mux, | 663 | bios_connectors[i].line_mux, |
| 599 | bios_connectors[i].devices, | 664 | bios_connectors[i].devices, |
| 600 | bios_connectors[i]. | 665 | bios_connectors[i]. |
| 601 | connector_type, | 666 | connector_type, |
| 602 | &bios_connectors[i].ddc_bus, | 667 | &bios_connectors[i].ddc_bus, |
| 603 | false, 0); | 668 | false, 0, |
| 669 | connector_object_id); | ||
| 670 | } | ||
| 604 | } | 671 | } |
| 605 | 672 | ||
| 606 | radeon_link_encoder_connector(dev); | 673 | radeon_link_encoder_connector(dev); |
| @@ -641,8 +708,12 @@ bool radeon_atom_get_clock_info(struct drm_device *dev) | |||
| 641 | le16_to_cpu(firmware_info->info.usReferenceClock); | 708 | le16_to_cpu(firmware_info->info.usReferenceClock); |
| 642 | p1pll->reference_div = 0; | 709 | p1pll->reference_div = 0; |
| 643 | 710 | ||
| 644 | p1pll->pll_out_min = | 711 | if (crev < 2) |
| 645 | le16_to_cpu(firmware_info->info.usMinPixelClockPLL_Output); | 712 | p1pll->pll_out_min = |
| 713 | le16_to_cpu(firmware_info->info.usMinPixelClockPLL_Output); | ||
| 714 | else | ||
| 715 | p1pll->pll_out_min = | ||
| 716 | le32_to_cpu(firmware_info->info_12.ulMinPixelClockPLL_Output); | ||
| 646 | p1pll->pll_out_max = | 717 | p1pll->pll_out_max = |
| 647 | le32_to_cpu(firmware_info->info.ulMaxPixelClockPLL_Output); | 718 | le32_to_cpu(firmware_info->info.ulMaxPixelClockPLL_Output); |
| 648 | 719 | ||
| @@ -651,6 +722,16 @@ bool radeon_atom_get_clock_info(struct drm_device *dev) | |||
| 651 | p1pll->pll_out_min = 64800; | 722 | p1pll->pll_out_min = 64800; |
| 652 | else | 723 | else |
| 653 | p1pll->pll_out_min = 20000; | 724 | p1pll->pll_out_min = 20000; |
| 725 | } else if (p1pll->pll_out_min > 64800) { | ||
| 726 | /* Limiting the pll output range is a good thing generally as | ||
| 727 | * it limits the number of possible pll combinations for a given | ||
| 728 | * frequency presumably to the ones that work best on each card. | ||
| 729 | * However, certain duallink DVI monitors seem to like | ||
| 730 | * pll combinations that would be limited by this at least on | ||
| 731 | * pre-DCE 3.0 r6xx hardware. This might need to be adjusted per | ||
| 732 | * family. | ||
| 733 | */ | ||
| 734 | p1pll->pll_out_min = 64800; | ||
| 654 | } | 735 | } |
| 655 | 736 | ||
| 656 | p1pll->pll_in_min = | 737 | p1pll->pll_in_min = |
| @@ -767,6 +848,46 @@ bool radeon_atombios_get_tmds_info(struct radeon_encoder *encoder, | |||
| 767 | return false; | 848 | return false; |
| 768 | } | 849 | } |
| 769 | 850 | ||
| 851 | static struct radeon_atom_ss *radeon_atombios_get_ss_info(struct | ||
| 852 | radeon_encoder | ||
| 853 | *encoder, | ||
| 854 | int id) | ||
| 855 | { | ||
| 856 | struct drm_device *dev = encoder->base.dev; | ||
| 857 | struct radeon_device *rdev = dev->dev_private; | ||
| 858 | struct radeon_mode_info *mode_info = &rdev->mode_info; | ||
| 859 | int index = GetIndexIntoMasterTable(DATA, PPLL_SS_Info); | ||
| 860 | uint16_t data_offset; | ||
| 861 | struct _ATOM_SPREAD_SPECTRUM_INFO *ss_info; | ||
| 862 | uint8_t frev, crev; | ||
| 863 | struct radeon_atom_ss *ss = NULL; | ||
| 864 | |||
| 865 | if (id > ATOM_MAX_SS_ENTRY) | ||
| 866 | return NULL; | ||
| 867 | |||
| 868 | atom_parse_data_header(mode_info->atom_context, index, NULL, &frev, | ||
| 869 | &crev, &data_offset); | ||
| 870 | |||
| 871 | ss_info = | ||
| 872 | (struct _ATOM_SPREAD_SPECTRUM_INFO *)(mode_info->atom_context->bios + data_offset); | ||
| 873 | |||
| 874 | if (ss_info) { | ||
| 875 | ss = | ||
| 876 | kzalloc(sizeof(struct radeon_atom_ss), GFP_KERNEL); | ||
| 877 | |||
| 878 | if (!ss) | ||
| 879 | return NULL; | ||
| 880 | |||
| 881 | ss->percentage = le16_to_cpu(ss_info->asSS_Info[id].usSpreadSpectrumPercentage); | ||
| 882 | ss->type = ss_info->asSS_Info[id].ucSpreadSpectrumType; | ||
| 883 | ss->step = ss_info->asSS_Info[id].ucSS_Step; | ||
| 884 | ss->delay = ss_info->asSS_Info[id].ucSS_Delay; | ||
| 885 | ss->range = ss_info->asSS_Info[id].ucSS_Range; | ||
| 886 | ss->refdiv = ss_info->asSS_Info[id].ucRecommendedRef_Div; | ||
| 887 | } | ||
| 888 | return ss; | ||
| 889 | } | ||
| 890 | |||
| 770 | union lvds_info { | 891 | union lvds_info { |
| 771 | struct _ATOM_LVDS_INFO info; | 892 | struct _ATOM_LVDS_INFO info; |
| 772 | struct _ATOM_LVDS_INFO_V12 info_12; | 893 | struct _ATOM_LVDS_INFO_V12 info_12; |
| @@ -798,27 +919,31 @@ struct radeon_encoder_atom_dig *radeon_atombios_get_lvds_info(struct | |||
| 798 | if (!lvds) | 919 | if (!lvds) |
| 799 | return NULL; | 920 | return NULL; |
| 800 | 921 | ||
| 801 | lvds->native_mode.dotclock = | 922 | lvds->native_mode.clock = |
| 802 | le16_to_cpu(lvds_info->info.sLCDTiming.usPixClk) * 10; | 923 | le16_to_cpu(lvds_info->info.sLCDTiming.usPixClk) * 10; |
| 803 | lvds->native_mode.panel_xres = | 924 | lvds->native_mode.hdisplay = |
| 804 | le16_to_cpu(lvds_info->info.sLCDTiming.usHActive); | 925 | le16_to_cpu(lvds_info->info.sLCDTiming.usHActive); |
| 805 | lvds->native_mode.panel_yres = | 926 | lvds->native_mode.vdisplay = |
| 806 | le16_to_cpu(lvds_info->info.sLCDTiming.usVActive); | 927 | le16_to_cpu(lvds_info->info.sLCDTiming.usVActive); |
| 807 | lvds->native_mode.hblank = | 928 | lvds->native_mode.htotal = lvds->native_mode.hdisplay + |
| 808 | le16_to_cpu(lvds_info->info.sLCDTiming.usHBlanking_Time); | 929 | le16_to_cpu(lvds_info->info.sLCDTiming.usHBlanking_Time); |
| 809 | lvds->native_mode.hoverplus = | 930 | lvds->native_mode.hsync_start = lvds->native_mode.hdisplay + |
| 810 | le16_to_cpu(lvds_info->info.sLCDTiming.usHSyncOffset); | 931 | le16_to_cpu(lvds_info->info.sLCDTiming.usHSyncOffset); |
| 811 | lvds->native_mode.hsync_width = | 932 | lvds->native_mode.hsync_end = lvds->native_mode.hsync_start + |
| 812 | le16_to_cpu(lvds_info->info.sLCDTiming.usHSyncWidth); | 933 | le16_to_cpu(lvds_info->info.sLCDTiming.usHSyncWidth); |
| 813 | lvds->native_mode.vblank = | 934 | lvds->native_mode.vtotal = lvds->native_mode.vdisplay + |
| 814 | le16_to_cpu(lvds_info->info.sLCDTiming.usVBlanking_Time); | 935 | le16_to_cpu(lvds_info->info.sLCDTiming.usVBlanking_Time); |
| 815 | lvds->native_mode.voverplus = | 936 | lvds->native_mode.vsync_start = lvds->native_mode.vdisplay + |
| 816 | le16_to_cpu(lvds_info->info.sLCDTiming.usVSyncOffset); | 937 | le16_to_cpu(lvds_info->info.sLCDTiming.usVSyncWidth); |
| 817 | lvds->native_mode.vsync_width = | 938 | lvds->native_mode.vsync_end = lvds->native_mode.vsync_start + |
| 818 | le16_to_cpu(lvds_info->info.sLCDTiming.usVSyncWidth); | 939 | le16_to_cpu(lvds_info->info.sLCDTiming.usVSyncWidth); |
| 819 | lvds->panel_pwr_delay = | 940 | lvds->panel_pwr_delay = |
| 820 | le16_to_cpu(lvds_info->info.usOffDelayInMs); | 941 | le16_to_cpu(lvds_info->info.usOffDelayInMs); |
| 821 | lvds->lvds_misc = lvds_info->info.ucLVDS_Misc; | 942 | lvds->lvds_misc = lvds_info->info.ucLVDS_Misc; |
| 943 | /* set crtc values */ | ||
| 944 | drm_mode_set_crtcinfo(&lvds->native_mode, CRTC_INTERLACE_HALVE_V); | ||
| 945 | |||
| 946 | lvds->ss = radeon_atombios_get_ss_info(encoder, lvds_info->info.ucSS_Id); | ||
| 822 | 947 | ||
| 823 | encoder->native_mode = lvds->native_mode; | 948 | encoder->native_mode = lvds->native_mode; |
| 824 | } | 949 | } |
| @@ -857,8 +982,7 @@ radeon_atombios_get_primary_dac_info(struct radeon_encoder *encoder) | |||
| 857 | } | 982 | } |
| 858 | 983 | ||
| 859 | bool radeon_atom_get_tv_timings(struct radeon_device *rdev, int index, | 984 | bool radeon_atom_get_tv_timings(struct radeon_device *rdev, int index, |
| 860 | SET_CRTC_TIMING_PARAMETERS_PS_ALLOCATION *crtc_timing, | 985 | struct drm_display_mode *mode) |
| 861 | int32_t *pixel_clock) | ||
| 862 | { | 986 | { |
| 863 | struct radeon_mode_info *mode_info = &rdev->mode_info; | 987 | struct radeon_mode_info *mode_info = &rdev->mode_info; |
| 864 | ATOM_ANALOG_TV_INFO *tv_info; | 988 | ATOM_ANALOG_TV_INFO *tv_info; |
| @@ -866,7 +990,7 @@ bool radeon_atom_get_tv_timings(struct radeon_device *rdev, int index, | |||
| 866 | ATOM_DTD_FORMAT *dtd_timings; | 990 | ATOM_DTD_FORMAT *dtd_timings; |
| 867 | int data_index = GetIndexIntoMasterTable(DATA, AnalogTV_Info); | 991 | int data_index = GetIndexIntoMasterTable(DATA, AnalogTV_Info); |
| 868 | u8 frev, crev; | 992 | u8 frev, crev; |
| 869 | uint16_t data_offset; | 993 | u16 data_offset, misc; |
| 870 | 994 | ||
| 871 | atom_parse_data_header(mode_info->atom_context, data_index, NULL, &frev, &crev, &data_offset); | 995 | atom_parse_data_header(mode_info->atom_context, data_index, NULL, &frev, &crev, &data_offset); |
| 872 | 996 | ||
| @@ -876,28 +1000,37 @@ bool radeon_atom_get_tv_timings(struct radeon_device *rdev, int index, | |||
| 876 | if (index > MAX_SUPPORTED_TV_TIMING) | 1000 | if (index > MAX_SUPPORTED_TV_TIMING) |
| 877 | return false; | 1001 | return false; |
| 878 | 1002 | ||
| 879 | crtc_timing->usH_Total = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_Total); | 1003 | mode->crtc_htotal = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_Total); |
| 880 | crtc_timing->usH_Disp = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_Disp); | 1004 | mode->crtc_hdisplay = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_Disp); |
| 881 | crtc_timing->usH_SyncStart = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_SyncStart); | 1005 | mode->crtc_hsync_start = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_SyncStart); |
| 882 | crtc_timing->usH_SyncWidth = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_SyncWidth); | 1006 | mode->crtc_hsync_end = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_SyncStart) + |
| 883 | 1007 | le16_to_cpu(tv_info->aModeTimings[index].usCRTC_H_SyncWidth); | |
| 884 | crtc_timing->usV_Total = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_Total); | 1008 | |
| 885 | crtc_timing->usV_Disp = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_Disp); | 1009 | mode->crtc_vtotal = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_Total); |
| 886 | crtc_timing->usV_SyncStart = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_SyncStart); | 1010 | mode->crtc_vdisplay = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_Disp); |
| 887 | crtc_timing->usV_SyncWidth = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_SyncWidth); | 1011 | mode->crtc_vsync_start = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_SyncStart); |
| 888 | 1012 | mode->crtc_vsync_end = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_SyncStart) + | |
| 889 | crtc_timing->susModeMiscInfo = tv_info->aModeTimings[index].susModeMiscInfo; | 1013 | le16_to_cpu(tv_info->aModeTimings[index].usCRTC_V_SyncWidth); |
| 890 | 1014 | ||
| 891 | crtc_timing->ucOverscanRight = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_OverscanRight); | 1015 | mode->flags = 0; |
| 892 | crtc_timing->ucOverscanLeft = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_OverscanLeft); | 1016 | misc = le16_to_cpu(tv_info->aModeTimings[index].susModeMiscInfo.usAccess); |
| 893 | crtc_timing->ucOverscanBottom = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_OverscanBottom); | 1017 | if (misc & ATOM_VSYNC_POLARITY) |
| 894 | crtc_timing->ucOverscanTop = le16_to_cpu(tv_info->aModeTimings[index].usCRTC_OverscanTop); | 1018 | mode->flags |= DRM_MODE_FLAG_NVSYNC; |
| 895 | *pixel_clock = le16_to_cpu(tv_info->aModeTimings[index].usPixelClock) * 10; | 1019 | if (misc & ATOM_HSYNC_POLARITY) |
| 1020 | mode->flags |= DRM_MODE_FLAG_NHSYNC; | ||
| 1021 | if (misc & ATOM_COMPOSITESYNC) | ||
| 1022 | mode->flags |= DRM_MODE_FLAG_CSYNC; | ||
| 1023 | if (misc & ATOM_INTERLACE) | ||
| 1024 | mode->flags |= DRM_MODE_FLAG_INTERLACE; | ||
| 1025 | if (misc & ATOM_DOUBLE_CLOCK_MODE) | ||
| 1026 | mode->flags |= DRM_MODE_FLAG_DBLSCAN; | ||
| 1027 | |||
| 1028 | mode->clock = le16_to_cpu(tv_info->aModeTimings[index].usPixelClock) * 10; | ||
| 896 | 1029 | ||
| 897 | if (index == 1) { | 1030 | if (index == 1) { |
| 898 | /* PAL timings appear to have wrong values for totals */ | 1031 | /* PAL timings appear to have wrong values for totals */ |
| 899 | crtc_timing->usH_Total -= 1; | 1032 | mode->crtc_htotal -= 1; |
| 900 | crtc_timing->usV_Total -= 1; | 1033 | mode->crtc_vtotal -= 1; |
| 901 | } | 1034 | } |
| 902 | break; | 1035 | break; |
| 903 | case 2: | 1036 | case 2: |
| @@ -906,17 +1039,36 @@ bool radeon_atom_get_tv_timings(struct radeon_device *rdev, int index, | |||
| 906 | return false; | 1039 | return false; |
| 907 | 1040 | ||
| 908 | dtd_timings = &tv_info_v1_2->aModeTimings[index]; | 1041 | dtd_timings = &tv_info_v1_2->aModeTimings[index]; |
| 909 | crtc_timing->usH_Total = le16_to_cpu(dtd_timings->usHActive) + le16_to_cpu(dtd_timings->usHBlanking_Time); | 1042 | mode->crtc_htotal = le16_to_cpu(dtd_timings->usHActive) + |
| 910 | crtc_timing->usH_Disp = le16_to_cpu(dtd_timings->usHActive); | 1043 | le16_to_cpu(dtd_timings->usHBlanking_Time); |
| 911 | crtc_timing->usH_SyncStart = le16_to_cpu(dtd_timings->usHActive) + le16_to_cpu(dtd_timings->usHSyncOffset); | 1044 | mode->crtc_hdisplay = le16_to_cpu(dtd_timings->usHActive); |
| 912 | crtc_timing->usH_SyncWidth = le16_to_cpu(dtd_timings->usHSyncWidth); | 1045 | mode->crtc_hsync_start = le16_to_cpu(dtd_timings->usHActive) + |
| 913 | crtc_timing->usV_Total = le16_to_cpu(dtd_timings->usVActive) + le16_to_cpu(dtd_timings->usVBlanking_Time); | 1046 | le16_to_cpu(dtd_timings->usHSyncOffset); |
| 914 | crtc_timing->usV_Disp = le16_to_cpu(dtd_timings->usVActive); | 1047 | mode->crtc_hsync_end = mode->crtc_hsync_start + |
| 915 | crtc_timing->usV_SyncStart = le16_to_cpu(dtd_timings->usVActive) + le16_to_cpu(dtd_timings->usVSyncOffset); | 1048 | le16_to_cpu(dtd_timings->usHSyncWidth); |
| 916 | crtc_timing->usV_SyncWidth = le16_to_cpu(dtd_timings->usVSyncWidth); | 1049 | |
| 917 | 1050 | mode->crtc_vtotal = le16_to_cpu(dtd_timings->usVActive) + | |
| 918 | crtc_timing->susModeMiscInfo.usAccess = le16_to_cpu(dtd_timings->susModeMiscInfo.usAccess); | 1051 | le16_to_cpu(dtd_timings->usVBlanking_Time); |
| 919 | *pixel_clock = le16_to_cpu(dtd_timings->usPixClk) * 10; | 1052 | mode->crtc_vdisplay = le16_to_cpu(dtd_timings->usVActive); |
| 1053 | mode->crtc_vsync_start = le16_to_cpu(dtd_timings->usVActive) + | ||
| 1054 | le16_to_cpu(dtd_timings->usVSyncOffset); | ||
| 1055 | mode->crtc_vsync_end = mode->crtc_vsync_start + | ||
| 1056 | le16_to_cpu(dtd_timings->usVSyncWidth); | ||
| 1057 | |||
| 1058 | mode->flags = 0; | ||
| 1059 | misc = le16_to_cpu(dtd_timings->susModeMiscInfo.usAccess); | ||
| 1060 | if (misc & ATOM_VSYNC_POLARITY) | ||
| 1061 | mode->flags |= DRM_MODE_FLAG_NVSYNC; | ||
| 1062 | if (misc & ATOM_HSYNC_POLARITY) | ||
| 1063 | mode->flags |= DRM_MODE_FLAG_NHSYNC; | ||
| 1064 | if (misc & ATOM_COMPOSITESYNC) | ||
| 1065 | mode->flags |= DRM_MODE_FLAG_CSYNC; | ||
| 1066 | if (misc & ATOM_INTERLACE) | ||
| 1067 | mode->flags |= DRM_MODE_FLAG_INTERLACE; | ||
| 1068 | if (misc & ATOM_DOUBLE_CLOCK_MODE) | ||
| 1069 | mode->flags |= DRM_MODE_FLAG_DBLSCAN; | ||
| 1070 | |||
| 1071 | mode->clock = le16_to_cpu(dtd_timings->usPixClk) * 10; | ||
| 920 | break; | 1072 | break; |
| 921 | } | 1073 | } |
| 922 | return true; | 1074 | return true; |
| @@ -981,6 +1133,24 @@ void radeon_atom_static_pwrmgt_setup(struct radeon_device *rdev, int enable) | |||
| 981 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); | 1133 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); |
| 982 | } | 1134 | } |
| 983 | 1135 | ||
| 1136 | uint32_t radeon_atom_get_engine_clock(struct radeon_device *rdev) | ||
| 1137 | { | ||
| 1138 | GET_ENGINE_CLOCK_PS_ALLOCATION args; | ||
| 1139 | int index = GetIndexIntoMasterTable(COMMAND, GetEngineClock); | ||
| 1140 | |||
| 1141 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); | ||
| 1142 | return args.ulReturnEngineClock; | ||
| 1143 | } | ||
| 1144 | |||
| 1145 | uint32_t radeon_atom_get_memory_clock(struct radeon_device *rdev) | ||
| 1146 | { | ||
| 1147 | GET_MEMORY_CLOCK_PS_ALLOCATION args; | ||
| 1148 | int index = GetIndexIntoMasterTable(COMMAND, GetMemoryClock); | ||
| 1149 | |||
| 1150 | atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); | ||
| 1151 | return args.ulReturnMemoryClock; | ||
| 1152 | } | ||
| 1153 | |||
| 984 | void radeon_atom_set_engine_clock(struct radeon_device *rdev, | 1154 | void radeon_atom_set_engine_clock(struct radeon_device *rdev, |
| 985 | uint32_t eng_clock) | 1155 | uint32_t eng_clock) |
| 986 | { | 1156 | { |
diff --git a/drivers/gpu/drm/radeon/radeon_benchmark.c b/drivers/gpu/drm/radeon/radeon_benchmark.c index 2e938f7496fb..10bd50a7db87 100644 --- a/drivers/gpu/drm/radeon/radeon_benchmark.c +++ b/drivers/gpu/drm/radeon/radeon_benchmark.c | |||
| @@ -63,7 +63,7 @@ void radeon_benchmark_move(struct radeon_device *rdev, unsigned bsize, | |||
| 63 | if (r) { | 63 | if (r) { |
| 64 | goto out_cleanup; | 64 | goto out_cleanup; |
| 65 | } | 65 | } |
| 66 | r = radeon_copy_dma(rdev, saddr, daddr, size / 4096, fence); | 66 | r = radeon_copy_dma(rdev, saddr, daddr, size / RADEON_GPU_PAGE_SIZE, fence); |
| 67 | if (r) { | 67 | if (r) { |
| 68 | goto out_cleanup; | 68 | goto out_cleanup; |
| 69 | } | 69 | } |
| @@ -88,7 +88,7 @@ void radeon_benchmark_move(struct radeon_device *rdev, unsigned bsize, | |||
| 88 | if (r) { | 88 | if (r) { |
| 89 | goto out_cleanup; | 89 | goto out_cleanup; |
| 90 | } | 90 | } |
| 91 | r = radeon_copy_blit(rdev, saddr, daddr, size / 4096, fence); | 91 | r = radeon_copy_blit(rdev, saddr, daddr, size / RADEON_GPU_PAGE_SIZE, fence); |
| 92 | if (r) { | 92 | if (r) { |
| 93 | goto out_cleanup; | 93 | goto out_cleanup; |
| 94 | } | 94 | } |
diff --git a/drivers/gpu/drm/radeon/radeon_bios.c b/drivers/gpu/drm/radeon/radeon_bios.c index 34a9b9119518..906921740c60 100644 --- a/drivers/gpu/drm/radeon/radeon_bios.c +++ b/drivers/gpu/drm/radeon/radeon_bios.c | |||
| @@ -50,19 +50,16 @@ static bool igp_read_bios_from_vram(struct radeon_device *rdev) | |||
| 50 | vram_base = drm_get_resource_start(rdev->ddev, 0); | 50 | vram_base = drm_get_resource_start(rdev->ddev, 0); |
| 51 | bios = ioremap(vram_base, size); | 51 | bios = ioremap(vram_base, size); |
| 52 | if (!bios) { | 52 | if (!bios) { |
| 53 | DRM_ERROR("Unable to mmap vram\n"); | ||
| 54 | return false; | 53 | return false; |
| 55 | } | 54 | } |
| 56 | 55 | ||
| 57 | if (size == 0 || bios[0] != 0x55 || bios[1] != 0xaa) { | 56 | if (size == 0 || bios[0] != 0x55 || bios[1] != 0xaa) { |
| 58 | iounmap(bios); | 57 | iounmap(bios); |
| 59 | DRM_ERROR("bad rom signature\n"); | ||
| 60 | return false; | 58 | return false; |
| 61 | } | 59 | } |
| 62 | rdev->bios = kmalloc(size, GFP_KERNEL); | 60 | rdev->bios = kmalloc(size, GFP_KERNEL); |
| 63 | if (rdev->bios == NULL) { | 61 | if (rdev->bios == NULL) { |
| 64 | iounmap(bios); | 62 | iounmap(bios); |
| 65 | DRM_ERROR("kmalloc failed\n"); | ||
| 66 | return false; | 63 | return false; |
| 67 | } | 64 | } |
| 68 | memcpy(rdev->bios, bios, size); | 65 | memcpy(rdev->bios, bios, size); |
diff --git a/drivers/gpu/drm/radeon/radeon_clocks.c b/drivers/gpu/drm/radeon/radeon_clocks.c index f5c32a766b10..a81354167621 100644 --- a/drivers/gpu/drm/radeon/radeon_clocks.c +++ b/drivers/gpu/drm/radeon/radeon_clocks.c | |||
| @@ -32,7 +32,7 @@ | |||
| 32 | #include "atom.h" | 32 | #include "atom.h" |
| 33 | 33 | ||
| 34 | /* 10 khz */ | 34 | /* 10 khz */ |
| 35 | static uint32_t radeon_legacy_get_engine_clock(struct radeon_device *rdev) | 35 | uint32_t radeon_legacy_get_engine_clock(struct radeon_device *rdev) |
| 36 | { | 36 | { |
| 37 | struct radeon_pll *spll = &rdev->clock.spll; | 37 | struct radeon_pll *spll = &rdev->clock.spll; |
| 38 | uint32_t fb_div, ref_div, post_div, sclk; | 38 | uint32_t fb_div, ref_div, post_div, sclk; |
diff --git a/drivers/gpu/drm/radeon/radeon_combios.c b/drivers/gpu/drm/radeon/radeon_combios.c index 748265a105b3..5253cbf6db1f 100644 --- a/drivers/gpu/drm/radeon/radeon_combios.c +++ b/drivers/gpu/drm/radeon/radeon_combios.c | |||
| @@ -49,7 +49,8 @@ radeon_add_legacy_connector(struct drm_device *dev, | |||
| 49 | uint32_t connector_id, | 49 | uint32_t connector_id, |
| 50 | uint32_t supported_device, | 50 | uint32_t supported_device, |
| 51 | int connector_type, | 51 | int connector_type, |
| 52 | struct radeon_i2c_bus_rec *i2c_bus); | 52 | struct radeon_i2c_bus_rec *i2c_bus, |
| 53 | uint16_t connector_object_id); | ||
| 53 | 54 | ||
| 54 | /* from radeon_legacy_encoder.c */ | 55 | /* from radeon_legacy_encoder.c */ |
| 55 | extern void | 56 | extern void |
| @@ -808,25 +809,25 @@ static struct radeon_encoder_lvds *radeon_legacy_get_lvds_info_from_regs(struct | |||
| 808 | lvds->panel_blon_delay = (lvds_ss_gen_cntl >> RADEON_LVDS_PWRSEQ_DELAY2_SHIFT) & 0xf; | 809 | lvds->panel_blon_delay = (lvds_ss_gen_cntl >> RADEON_LVDS_PWRSEQ_DELAY2_SHIFT) & 0xf; |
| 809 | 810 | ||
| 810 | if (fp_vert_stretch & RADEON_VERT_STRETCH_ENABLE) | 811 | if (fp_vert_stretch & RADEON_VERT_STRETCH_ENABLE) |
| 811 | lvds->native_mode.panel_yres = | 812 | lvds->native_mode.vdisplay = |
| 812 | ((fp_vert_stretch & RADEON_VERT_PANEL_SIZE) >> | 813 | ((fp_vert_stretch & RADEON_VERT_PANEL_SIZE) >> |
| 813 | RADEON_VERT_PANEL_SHIFT) + 1; | 814 | RADEON_VERT_PANEL_SHIFT) + 1; |
| 814 | else | 815 | else |
| 815 | lvds->native_mode.panel_yres = | 816 | lvds->native_mode.vdisplay = |
| 816 | (RREG32(RADEON_CRTC_V_TOTAL_DISP) >> 16) + 1; | 817 | (RREG32(RADEON_CRTC_V_TOTAL_DISP) >> 16) + 1; |
| 817 | 818 | ||
| 818 | if (fp_horz_stretch & RADEON_HORZ_STRETCH_ENABLE) | 819 | if (fp_horz_stretch & RADEON_HORZ_STRETCH_ENABLE) |
| 819 | lvds->native_mode.panel_xres = | 820 | lvds->native_mode.hdisplay = |
| 820 | (((fp_horz_stretch & RADEON_HORZ_PANEL_SIZE) >> | 821 | (((fp_horz_stretch & RADEON_HORZ_PANEL_SIZE) >> |
| 821 | RADEON_HORZ_PANEL_SHIFT) + 1) * 8; | 822 | RADEON_HORZ_PANEL_SHIFT) + 1) * 8; |
| 822 | else | 823 | else |
| 823 | lvds->native_mode.panel_xres = | 824 | lvds->native_mode.hdisplay = |
| 824 | ((RREG32(RADEON_CRTC_H_TOTAL_DISP) >> 16) + 1) * 8; | 825 | ((RREG32(RADEON_CRTC_H_TOTAL_DISP) >> 16) + 1) * 8; |
| 825 | 826 | ||
| 826 | if ((lvds->native_mode.panel_xres < 640) || | 827 | if ((lvds->native_mode.hdisplay < 640) || |
| 827 | (lvds->native_mode.panel_yres < 480)) { | 828 | (lvds->native_mode.vdisplay < 480)) { |
| 828 | lvds->native_mode.panel_xres = 640; | 829 | lvds->native_mode.hdisplay = 640; |
| 829 | lvds->native_mode.panel_yres = 480; | 830 | lvds->native_mode.vdisplay = 480; |
| 830 | } | 831 | } |
| 831 | 832 | ||
| 832 | ppll_div_sel = RREG8(RADEON_CLOCK_CNTL_INDEX + 1) & 0x3; | 833 | ppll_div_sel = RREG8(RADEON_CLOCK_CNTL_INDEX + 1) & 0x3; |
| @@ -846,8 +847,8 @@ static struct radeon_encoder_lvds *radeon_legacy_get_lvds_info_from_regs(struct | |||
| 846 | lvds->panel_vcc_delay = 200; | 847 | lvds->panel_vcc_delay = 200; |
| 847 | 848 | ||
| 848 | DRM_INFO("Panel info derived from registers\n"); | 849 | DRM_INFO("Panel info derived from registers\n"); |
| 849 | DRM_INFO("Panel Size %dx%d\n", lvds->native_mode.panel_xres, | 850 | DRM_INFO("Panel Size %dx%d\n", lvds->native_mode.hdisplay, |
| 850 | lvds->native_mode.panel_yres); | 851 | lvds->native_mode.vdisplay); |
| 851 | 852 | ||
| 852 | return lvds; | 853 | return lvds; |
| 853 | } | 854 | } |
| @@ -882,11 +883,11 @@ struct radeon_encoder_lvds *radeon_combios_get_lvds_info(struct radeon_encoder | |||
| 882 | 883 | ||
| 883 | DRM_INFO("Panel ID String: %s\n", stmp); | 884 | DRM_INFO("Panel ID String: %s\n", stmp); |
| 884 | 885 | ||
| 885 | lvds->native_mode.panel_xres = RBIOS16(lcd_info + 0x19); | 886 | lvds->native_mode.hdisplay = RBIOS16(lcd_info + 0x19); |
| 886 | lvds->native_mode.panel_yres = RBIOS16(lcd_info + 0x1b); | 887 | lvds->native_mode.vdisplay = RBIOS16(lcd_info + 0x1b); |
| 887 | 888 | ||
| 888 | DRM_INFO("Panel Size %dx%d\n", lvds->native_mode.panel_xres, | 889 | DRM_INFO("Panel Size %dx%d\n", lvds->native_mode.hdisplay, |
| 889 | lvds->native_mode.panel_yres); | 890 | lvds->native_mode.vdisplay); |
| 890 | 891 | ||
| 891 | lvds->panel_vcc_delay = RBIOS16(lcd_info + 0x2c); | 892 | lvds->panel_vcc_delay = RBIOS16(lcd_info + 0x2c); |
| 892 | if (lvds->panel_vcc_delay > 2000 || lvds->panel_vcc_delay < 0) | 893 | if (lvds->panel_vcc_delay > 2000 || lvds->panel_vcc_delay < 0) |
| @@ -944,27 +945,25 @@ struct radeon_encoder_lvds *radeon_combios_get_lvds_info(struct radeon_encoder | |||
| 944 | if (tmp == 0) | 945 | if (tmp == 0) |
| 945 | break; | 946 | break; |
| 946 | 947 | ||
| 947 | if ((RBIOS16(tmp) == lvds->native_mode.panel_xres) && | 948 | if ((RBIOS16(tmp) == lvds->native_mode.hdisplay) && |
| 948 | (RBIOS16(tmp + 2) == | 949 | (RBIOS16(tmp + 2) == |
| 949 | lvds->native_mode.panel_yres)) { | 950 | lvds->native_mode.vdisplay)) { |
| 950 | lvds->native_mode.hblank = | 951 | lvds->native_mode.htotal = RBIOS16(tmp + 17) * 8; |
| 951 | (RBIOS16(tmp + 17) - RBIOS16(tmp + 19)) * 8; | 952 | lvds->native_mode.hsync_start = RBIOS16(tmp + 21) * 8; |
| 952 | lvds->native_mode.hoverplus = | 953 | lvds->native_mode.hsync_end = (RBIOS8(tmp + 23) + |
| 953 | (RBIOS16(tmp + 21) - RBIOS16(tmp + 19) - | 954 | RBIOS16(tmp + 21)) * 8; |
| 954 | 1) * 8; | 955 | |
| 955 | lvds->native_mode.hsync_width = | 956 | lvds->native_mode.vtotal = RBIOS16(tmp + 24); |
| 956 | RBIOS8(tmp + 23) * 8; | 957 | lvds->native_mode.vsync_start = RBIOS16(tmp + 28) & 0x7ff; |
| 957 | 958 | lvds->native_mode.vsync_end = | |
| 958 | lvds->native_mode.vblank = (RBIOS16(tmp + 24) - | 959 | ((RBIOS16(tmp + 28) & 0xf800) >> 11) + |
| 959 | RBIOS16(tmp + 26)); | 960 | (RBIOS16(tmp + 28) & 0x7ff); |
| 960 | lvds->native_mode.voverplus = | 961 | |
| 961 | ((RBIOS16(tmp + 28) & 0x7ff) - | 962 | lvds->native_mode.clock = RBIOS16(tmp + 9) * 10; |
| 962 | RBIOS16(tmp + 26)); | ||
| 963 | lvds->native_mode.vsync_width = | ||
| 964 | ((RBIOS16(tmp + 28) & 0xf800) >> 11); | ||
| 965 | lvds->native_mode.dotclock = | ||
| 966 | RBIOS16(tmp + 9) * 10; | ||
| 967 | lvds->native_mode.flags = 0; | 963 | lvds->native_mode.flags = 0; |
| 964 | /* set crtc values */ | ||
| 965 | drm_mode_set_crtcinfo(&lvds->native_mode, CRTC_INTERLACE_HALVE_V); | ||
| 966 | |||
| 968 | } | 967 | } |
| 969 | } | 968 | } |
| 970 | } else { | 969 | } else { |
| @@ -1178,7 +1177,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1178 | radeon_add_legacy_connector(dev, 0, | 1177 | radeon_add_legacy_connector(dev, 0, |
| 1179 | ATOM_DEVICE_CRT1_SUPPORT, | 1178 | ATOM_DEVICE_CRT1_SUPPORT, |
| 1180 | DRM_MODE_CONNECTOR_VGA, | 1179 | DRM_MODE_CONNECTOR_VGA, |
| 1181 | &ddc_i2c); | 1180 | &ddc_i2c, |
| 1181 | CONNECTOR_OBJECT_ID_VGA); | ||
| 1182 | } else if (rdev->flags & RADEON_IS_MOBILITY) { | 1182 | } else if (rdev->flags & RADEON_IS_MOBILITY) { |
| 1183 | /* LVDS */ | 1183 | /* LVDS */ |
| 1184 | ddc_i2c = combios_setup_i2c_bus(RADEON_LCD_GPIO_MASK); | 1184 | ddc_i2c = combios_setup_i2c_bus(RADEON_LCD_GPIO_MASK); |
| @@ -1190,7 +1190,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1190 | radeon_add_legacy_connector(dev, 0, | 1190 | radeon_add_legacy_connector(dev, 0, |
| 1191 | ATOM_DEVICE_LCD1_SUPPORT, | 1191 | ATOM_DEVICE_LCD1_SUPPORT, |
| 1192 | DRM_MODE_CONNECTOR_LVDS, | 1192 | DRM_MODE_CONNECTOR_LVDS, |
| 1193 | &ddc_i2c); | 1193 | &ddc_i2c, |
| 1194 | CONNECTOR_OBJECT_ID_LVDS); | ||
| 1194 | 1195 | ||
| 1195 | /* VGA - primary dac */ | 1196 | /* VGA - primary dac */ |
| 1196 | ddc_i2c = combios_setup_i2c_bus(RADEON_GPIO_VGA_DDC); | 1197 | ddc_i2c = combios_setup_i2c_bus(RADEON_GPIO_VGA_DDC); |
| @@ -1202,7 +1203,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1202 | radeon_add_legacy_connector(dev, 1, | 1203 | radeon_add_legacy_connector(dev, 1, |
| 1203 | ATOM_DEVICE_CRT1_SUPPORT, | 1204 | ATOM_DEVICE_CRT1_SUPPORT, |
| 1204 | DRM_MODE_CONNECTOR_VGA, | 1205 | DRM_MODE_CONNECTOR_VGA, |
| 1205 | &ddc_i2c); | 1206 | &ddc_i2c, |
| 1207 | CONNECTOR_OBJECT_ID_VGA); | ||
| 1206 | } else { | 1208 | } else { |
| 1207 | /* DVI-I - tv dac, int tmds */ | 1209 | /* DVI-I - tv dac, int tmds */ |
| 1208 | ddc_i2c = combios_setup_i2c_bus(RADEON_GPIO_DVI_DDC); | 1210 | ddc_i2c = combios_setup_i2c_bus(RADEON_GPIO_DVI_DDC); |
| @@ -1220,7 +1222,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1220 | ATOM_DEVICE_DFP1_SUPPORT | | 1222 | ATOM_DEVICE_DFP1_SUPPORT | |
| 1221 | ATOM_DEVICE_CRT2_SUPPORT, | 1223 | ATOM_DEVICE_CRT2_SUPPORT, |
| 1222 | DRM_MODE_CONNECTOR_DVII, | 1224 | DRM_MODE_CONNECTOR_DVII, |
| 1223 | &ddc_i2c); | 1225 | &ddc_i2c, |
| 1226 | CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I); | ||
| 1224 | 1227 | ||
| 1225 | /* VGA - primary dac */ | 1228 | /* VGA - primary dac */ |
| 1226 | ddc_i2c = combios_setup_i2c_bus(RADEON_GPIO_VGA_DDC); | 1229 | ddc_i2c = combios_setup_i2c_bus(RADEON_GPIO_VGA_DDC); |
| @@ -1232,7 +1235,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1232 | radeon_add_legacy_connector(dev, 1, | 1235 | radeon_add_legacy_connector(dev, 1, |
| 1233 | ATOM_DEVICE_CRT1_SUPPORT, | 1236 | ATOM_DEVICE_CRT1_SUPPORT, |
| 1234 | DRM_MODE_CONNECTOR_VGA, | 1237 | DRM_MODE_CONNECTOR_VGA, |
| 1235 | &ddc_i2c); | 1238 | &ddc_i2c, |
| 1239 | CONNECTOR_OBJECT_ID_VGA); | ||
| 1236 | } | 1240 | } |
| 1237 | 1241 | ||
| 1238 | if (rdev->family != CHIP_R100 && rdev->family != CHIP_R200) { | 1242 | if (rdev->family != CHIP_R100 && rdev->family != CHIP_R200) { |
| @@ -1245,7 +1249,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1245 | radeon_add_legacy_connector(dev, 2, | 1249 | radeon_add_legacy_connector(dev, 2, |
| 1246 | ATOM_DEVICE_TV1_SUPPORT, | 1250 | ATOM_DEVICE_TV1_SUPPORT, |
| 1247 | DRM_MODE_CONNECTOR_SVIDEO, | 1251 | DRM_MODE_CONNECTOR_SVIDEO, |
| 1248 | &ddc_i2c); | 1252 | &ddc_i2c, |
| 1253 | CONNECTOR_OBJECT_ID_SVIDEO); | ||
| 1249 | } | 1254 | } |
| 1250 | break; | 1255 | break; |
| 1251 | case CT_IBOOK: | 1256 | case CT_IBOOK: |
| @@ -1259,7 +1264,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1259 | 0), | 1264 | 0), |
| 1260 | ATOM_DEVICE_LCD1_SUPPORT); | 1265 | ATOM_DEVICE_LCD1_SUPPORT); |
| 1261 | radeon_add_legacy_connector(dev, 0, ATOM_DEVICE_LCD1_SUPPORT, | 1266 | radeon_add_legacy_connector(dev, 0, ATOM_DEVICE_LCD1_SUPPORT, |
| 1262 | DRM_MODE_CONNECTOR_LVDS, &ddc_i2c); | 1267 | DRM_MODE_CONNECTOR_LVDS, &ddc_i2c, |
| 1268 | CONNECTOR_OBJECT_ID_LVDS); | ||
| 1263 | /* VGA - TV DAC */ | 1269 | /* VGA - TV DAC */ |
| 1264 | ddc_i2c = combios_setup_i2c_bus(RADEON_GPIO_VGA_DDC); | 1270 | ddc_i2c = combios_setup_i2c_bus(RADEON_GPIO_VGA_DDC); |
| 1265 | radeon_add_legacy_encoder(dev, | 1271 | radeon_add_legacy_encoder(dev, |
| @@ -1268,7 +1274,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1268 | 2), | 1274 | 2), |
| 1269 | ATOM_DEVICE_CRT2_SUPPORT); | 1275 | ATOM_DEVICE_CRT2_SUPPORT); |
| 1270 | radeon_add_legacy_connector(dev, 1, ATOM_DEVICE_CRT2_SUPPORT, | 1276 | radeon_add_legacy_connector(dev, 1, ATOM_DEVICE_CRT2_SUPPORT, |
| 1271 | DRM_MODE_CONNECTOR_VGA, &ddc_i2c); | 1277 | DRM_MODE_CONNECTOR_VGA, &ddc_i2c, |
| 1278 | CONNECTOR_OBJECT_ID_VGA); | ||
| 1272 | /* TV - TV DAC */ | 1279 | /* TV - TV DAC */ |
| 1273 | radeon_add_legacy_encoder(dev, | 1280 | radeon_add_legacy_encoder(dev, |
| 1274 | radeon_get_encoder_id(dev, | 1281 | radeon_get_encoder_id(dev, |
| @@ -1277,7 +1284,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1277 | ATOM_DEVICE_TV1_SUPPORT); | 1284 | ATOM_DEVICE_TV1_SUPPORT); |
| 1278 | radeon_add_legacy_connector(dev, 2, ATOM_DEVICE_TV1_SUPPORT, | 1285 | radeon_add_legacy_connector(dev, 2, ATOM_DEVICE_TV1_SUPPORT, |
| 1279 | DRM_MODE_CONNECTOR_SVIDEO, | 1286 | DRM_MODE_CONNECTOR_SVIDEO, |
| 1280 | &ddc_i2c); | 1287 | &ddc_i2c, |
| 1288 | CONNECTOR_OBJECT_ID_SVIDEO); | ||
| 1281 | break; | 1289 | break; |
| 1282 | case CT_POWERBOOK_EXTERNAL: | 1290 | case CT_POWERBOOK_EXTERNAL: |
| 1283 | DRM_INFO("Connector Table: %d (powerbook external tmds)\n", | 1291 | DRM_INFO("Connector Table: %d (powerbook external tmds)\n", |
| @@ -1290,7 +1298,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1290 | 0), | 1298 | 0), |
| 1291 | ATOM_DEVICE_LCD1_SUPPORT); | 1299 | ATOM_DEVICE_LCD1_SUPPORT); |
| 1292 | radeon_add_legacy_connector(dev, 0, ATOM_DEVICE_LCD1_SUPPORT, | 1300 | radeon_add_legacy_connector(dev, 0, ATOM_DEVICE_LCD1_SUPPORT, |
| 1293 | DRM_MODE_CONNECTOR_LVDS, &ddc_i2c); | 1301 | DRM_MODE_CONNECTOR_LVDS, &ddc_i2c, |
| 1302 | CONNECTOR_OBJECT_ID_LVDS); | ||
| 1294 | /* DVI-I - primary dac, ext tmds */ | 1303 | /* DVI-I - primary dac, ext tmds */ |
| 1295 | ddc_i2c = combios_setup_i2c_bus(RADEON_GPIO_VGA_DDC); | 1304 | ddc_i2c = combios_setup_i2c_bus(RADEON_GPIO_VGA_DDC); |
| 1296 | radeon_add_legacy_encoder(dev, | 1305 | radeon_add_legacy_encoder(dev, |
| @@ -1303,10 +1312,12 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1303 | ATOM_DEVICE_CRT1_SUPPORT, | 1312 | ATOM_DEVICE_CRT1_SUPPORT, |
| 1304 | 1), | 1313 | 1), |
| 1305 | ATOM_DEVICE_CRT1_SUPPORT); | 1314 | ATOM_DEVICE_CRT1_SUPPORT); |
| 1315 | /* XXX some are SL */ | ||
| 1306 | radeon_add_legacy_connector(dev, 1, | 1316 | radeon_add_legacy_connector(dev, 1, |
| 1307 | ATOM_DEVICE_DFP2_SUPPORT | | 1317 | ATOM_DEVICE_DFP2_SUPPORT | |
| 1308 | ATOM_DEVICE_CRT1_SUPPORT, | 1318 | ATOM_DEVICE_CRT1_SUPPORT, |
| 1309 | DRM_MODE_CONNECTOR_DVII, &ddc_i2c); | 1319 | DRM_MODE_CONNECTOR_DVII, &ddc_i2c, |
| 1320 | CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I); | ||
| 1310 | /* TV - TV DAC */ | 1321 | /* TV - TV DAC */ |
| 1311 | radeon_add_legacy_encoder(dev, | 1322 | radeon_add_legacy_encoder(dev, |
| 1312 | radeon_get_encoder_id(dev, | 1323 | radeon_get_encoder_id(dev, |
| @@ -1315,7 +1326,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1315 | ATOM_DEVICE_TV1_SUPPORT); | 1326 | ATOM_DEVICE_TV1_SUPPORT); |
| 1316 | radeon_add_legacy_connector(dev, 2, ATOM_DEVICE_TV1_SUPPORT, | 1327 | radeon_add_legacy_connector(dev, 2, ATOM_DEVICE_TV1_SUPPORT, |
| 1317 | DRM_MODE_CONNECTOR_SVIDEO, | 1328 | DRM_MODE_CONNECTOR_SVIDEO, |
| 1318 | &ddc_i2c); | 1329 | &ddc_i2c, |
| 1330 | CONNECTOR_OBJECT_ID_SVIDEO); | ||
| 1319 | break; | 1331 | break; |
| 1320 | case CT_POWERBOOK_INTERNAL: | 1332 | case CT_POWERBOOK_INTERNAL: |
| 1321 | DRM_INFO("Connector Table: %d (powerbook internal tmds)\n", | 1333 | DRM_INFO("Connector Table: %d (powerbook internal tmds)\n", |
| @@ -1328,7 +1340,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1328 | 0), | 1340 | 0), |
| 1329 | ATOM_DEVICE_LCD1_SUPPORT); | 1341 | ATOM_DEVICE_LCD1_SUPPORT); |
| 1330 | radeon_add_legacy_connector(dev, 0, ATOM_DEVICE_LCD1_SUPPORT, | 1342 | radeon_add_legacy_connector(dev, 0, ATOM_DEVICE_LCD1_SUPPORT, |
| 1331 | DRM_MODE_CONNECTOR_LVDS, &ddc_i2c); | 1343 | DRM_MODE_CONNECTOR_LVDS, &ddc_i2c, |
| 1344 | CONNECTOR_OBJECT_ID_LVDS); | ||
| 1332 | /* DVI-I - primary dac, int tmds */ | 1345 | /* DVI-I - primary dac, int tmds */ |
| 1333 | ddc_i2c = combios_setup_i2c_bus(RADEON_GPIO_VGA_DDC); | 1346 | ddc_i2c = combios_setup_i2c_bus(RADEON_GPIO_VGA_DDC); |
| 1334 | radeon_add_legacy_encoder(dev, | 1347 | radeon_add_legacy_encoder(dev, |
| @@ -1344,7 +1357,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1344 | radeon_add_legacy_connector(dev, 1, | 1357 | radeon_add_legacy_connector(dev, 1, |
| 1345 | ATOM_DEVICE_DFP1_SUPPORT | | 1358 | ATOM_DEVICE_DFP1_SUPPORT | |
| 1346 | ATOM_DEVICE_CRT1_SUPPORT, | 1359 | ATOM_DEVICE_CRT1_SUPPORT, |
| 1347 | DRM_MODE_CONNECTOR_DVII, &ddc_i2c); | 1360 | DRM_MODE_CONNECTOR_DVII, &ddc_i2c, |
| 1361 | CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I); | ||
| 1348 | /* TV - TV DAC */ | 1362 | /* TV - TV DAC */ |
| 1349 | radeon_add_legacy_encoder(dev, | 1363 | radeon_add_legacy_encoder(dev, |
| 1350 | radeon_get_encoder_id(dev, | 1364 | radeon_get_encoder_id(dev, |
| @@ -1353,7 +1367,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1353 | ATOM_DEVICE_TV1_SUPPORT); | 1367 | ATOM_DEVICE_TV1_SUPPORT); |
| 1354 | radeon_add_legacy_connector(dev, 2, ATOM_DEVICE_TV1_SUPPORT, | 1368 | radeon_add_legacy_connector(dev, 2, ATOM_DEVICE_TV1_SUPPORT, |
| 1355 | DRM_MODE_CONNECTOR_SVIDEO, | 1369 | DRM_MODE_CONNECTOR_SVIDEO, |
| 1356 | &ddc_i2c); | 1370 | &ddc_i2c, |
| 1371 | CONNECTOR_OBJECT_ID_SVIDEO); | ||
| 1357 | break; | 1372 | break; |
| 1358 | case CT_POWERBOOK_VGA: | 1373 | case CT_POWERBOOK_VGA: |
| 1359 | DRM_INFO("Connector Table: %d (powerbook vga)\n", | 1374 | DRM_INFO("Connector Table: %d (powerbook vga)\n", |
| @@ -1366,7 +1381,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1366 | 0), | 1381 | 0), |
| 1367 | ATOM_DEVICE_LCD1_SUPPORT); | 1382 | ATOM_DEVICE_LCD1_SUPPORT); |
| 1368 | radeon_add_legacy_connector(dev, 0, ATOM_DEVICE_LCD1_SUPPORT, | 1383 | radeon_add_legacy_connector(dev, 0, ATOM_DEVICE_LCD1_SUPPORT, |
| 1369 | DRM_MODE_CONNECTOR_LVDS, &ddc_i2c); | 1384 | DRM_MODE_CONNECTOR_LVDS, &ddc_i2c, |
| 1385 | CONNECTOR_OBJECT_ID_LVDS); | ||
| 1370 | /* VGA - primary dac */ | 1386 | /* VGA - primary dac */ |
| 1371 | ddc_i2c = combios_setup_i2c_bus(RADEON_GPIO_VGA_DDC); | 1387 | ddc_i2c = combios_setup_i2c_bus(RADEON_GPIO_VGA_DDC); |
| 1372 | radeon_add_legacy_encoder(dev, | 1388 | radeon_add_legacy_encoder(dev, |
| @@ -1375,7 +1391,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1375 | 1), | 1391 | 1), |
| 1376 | ATOM_DEVICE_CRT1_SUPPORT); | 1392 | ATOM_DEVICE_CRT1_SUPPORT); |
| 1377 | radeon_add_legacy_connector(dev, 1, ATOM_DEVICE_CRT1_SUPPORT, | 1393 | radeon_add_legacy_connector(dev, 1, ATOM_DEVICE_CRT1_SUPPORT, |
| 1378 | DRM_MODE_CONNECTOR_VGA, &ddc_i2c); | 1394 | DRM_MODE_CONNECTOR_VGA, &ddc_i2c, |
| 1395 | CONNECTOR_OBJECT_ID_VGA); | ||
| 1379 | /* TV - TV DAC */ | 1396 | /* TV - TV DAC */ |
| 1380 | radeon_add_legacy_encoder(dev, | 1397 | radeon_add_legacy_encoder(dev, |
| 1381 | radeon_get_encoder_id(dev, | 1398 | radeon_get_encoder_id(dev, |
| @@ -1384,7 +1401,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1384 | ATOM_DEVICE_TV1_SUPPORT); | 1401 | ATOM_DEVICE_TV1_SUPPORT); |
| 1385 | radeon_add_legacy_connector(dev, 2, ATOM_DEVICE_TV1_SUPPORT, | 1402 | radeon_add_legacy_connector(dev, 2, ATOM_DEVICE_TV1_SUPPORT, |
| 1386 | DRM_MODE_CONNECTOR_SVIDEO, | 1403 | DRM_MODE_CONNECTOR_SVIDEO, |
| 1387 | &ddc_i2c); | 1404 | &ddc_i2c, |
| 1405 | CONNECTOR_OBJECT_ID_SVIDEO); | ||
| 1388 | break; | 1406 | break; |
| 1389 | case CT_MINI_EXTERNAL: | 1407 | case CT_MINI_EXTERNAL: |
| 1390 | DRM_INFO("Connector Table: %d (mini external tmds)\n", | 1408 | DRM_INFO("Connector Table: %d (mini external tmds)\n", |
| @@ -1401,10 +1419,12 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1401 | ATOM_DEVICE_CRT2_SUPPORT, | 1419 | ATOM_DEVICE_CRT2_SUPPORT, |
| 1402 | 2), | 1420 | 2), |
| 1403 | ATOM_DEVICE_CRT2_SUPPORT); | 1421 | ATOM_DEVICE_CRT2_SUPPORT); |
| 1422 | /* XXX are any DL? */ | ||
| 1404 | radeon_add_legacy_connector(dev, 0, | 1423 | radeon_add_legacy_connector(dev, 0, |
| 1405 | ATOM_DEVICE_DFP2_SUPPORT | | 1424 | ATOM_DEVICE_DFP2_SUPPORT | |
| 1406 | ATOM_DEVICE_CRT2_SUPPORT, | 1425 | ATOM_DEVICE_CRT2_SUPPORT, |
| 1407 | DRM_MODE_CONNECTOR_DVII, &ddc_i2c); | 1426 | DRM_MODE_CONNECTOR_DVII, &ddc_i2c, |
| 1427 | CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I); | ||
| 1408 | /* TV - TV DAC */ | 1428 | /* TV - TV DAC */ |
| 1409 | radeon_add_legacy_encoder(dev, | 1429 | radeon_add_legacy_encoder(dev, |
| 1410 | radeon_get_encoder_id(dev, | 1430 | radeon_get_encoder_id(dev, |
| @@ -1413,7 +1433,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1413 | ATOM_DEVICE_TV1_SUPPORT); | 1433 | ATOM_DEVICE_TV1_SUPPORT); |
| 1414 | radeon_add_legacy_connector(dev, 1, ATOM_DEVICE_TV1_SUPPORT, | 1434 | radeon_add_legacy_connector(dev, 1, ATOM_DEVICE_TV1_SUPPORT, |
| 1415 | DRM_MODE_CONNECTOR_SVIDEO, | 1435 | DRM_MODE_CONNECTOR_SVIDEO, |
| 1416 | &ddc_i2c); | 1436 | &ddc_i2c, |
| 1437 | CONNECTOR_OBJECT_ID_SVIDEO); | ||
| 1417 | break; | 1438 | break; |
| 1418 | case CT_MINI_INTERNAL: | 1439 | case CT_MINI_INTERNAL: |
| 1419 | DRM_INFO("Connector Table: %d (mini internal tmds)\n", | 1440 | DRM_INFO("Connector Table: %d (mini internal tmds)\n", |
| @@ -1433,7 +1454,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1433 | radeon_add_legacy_connector(dev, 0, | 1454 | radeon_add_legacy_connector(dev, 0, |
| 1434 | ATOM_DEVICE_DFP1_SUPPORT | | 1455 | ATOM_DEVICE_DFP1_SUPPORT | |
| 1435 | ATOM_DEVICE_CRT2_SUPPORT, | 1456 | ATOM_DEVICE_CRT2_SUPPORT, |
| 1436 | DRM_MODE_CONNECTOR_DVII, &ddc_i2c); | 1457 | DRM_MODE_CONNECTOR_DVII, &ddc_i2c, |
| 1458 | CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I); | ||
| 1437 | /* TV - TV DAC */ | 1459 | /* TV - TV DAC */ |
| 1438 | radeon_add_legacy_encoder(dev, | 1460 | radeon_add_legacy_encoder(dev, |
| 1439 | radeon_get_encoder_id(dev, | 1461 | radeon_get_encoder_id(dev, |
| @@ -1442,7 +1464,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1442 | ATOM_DEVICE_TV1_SUPPORT); | 1464 | ATOM_DEVICE_TV1_SUPPORT); |
| 1443 | radeon_add_legacy_connector(dev, 1, ATOM_DEVICE_TV1_SUPPORT, | 1465 | radeon_add_legacy_connector(dev, 1, ATOM_DEVICE_TV1_SUPPORT, |
| 1444 | DRM_MODE_CONNECTOR_SVIDEO, | 1466 | DRM_MODE_CONNECTOR_SVIDEO, |
| 1445 | &ddc_i2c); | 1467 | &ddc_i2c, |
| 1468 | CONNECTOR_OBJECT_ID_SVIDEO); | ||
| 1446 | break; | 1469 | break; |
| 1447 | case CT_IMAC_G5_ISIGHT: | 1470 | case CT_IMAC_G5_ISIGHT: |
| 1448 | DRM_INFO("Connector Table: %d (imac g5 isight)\n", | 1471 | DRM_INFO("Connector Table: %d (imac g5 isight)\n", |
| @@ -1455,7 +1478,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1455 | 0), | 1478 | 0), |
| 1456 | ATOM_DEVICE_DFP1_SUPPORT); | 1479 | ATOM_DEVICE_DFP1_SUPPORT); |
| 1457 | radeon_add_legacy_connector(dev, 0, ATOM_DEVICE_DFP1_SUPPORT, | 1480 | radeon_add_legacy_connector(dev, 0, ATOM_DEVICE_DFP1_SUPPORT, |
| 1458 | DRM_MODE_CONNECTOR_DVID, &ddc_i2c); | 1481 | DRM_MODE_CONNECTOR_DVID, &ddc_i2c, |
| 1482 | CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D); | ||
| 1459 | /* VGA - tv dac */ | 1483 | /* VGA - tv dac */ |
| 1460 | ddc_i2c = combios_setup_i2c_bus(RADEON_GPIO_DVI_DDC); | 1484 | ddc_i2c = combios_setup_i2c_bus(RADEON_GPIO_DVI_DDC); |
| 1461 | radeon_add_legacy_encoder(dev, | 1485 | radeon_add_legacy_encoder(dev, |
| @@ -1464,7 +1488,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1464 | 2), | 1488 | 2), |
| 1465 | ATOM_DEVICE_CRT2_SUPPORT); | 1489 | ATOM_DEVICE_CRT2_SUPPORT); |
| 1466 | radeon_add_legacy_connector(dev, 1, ATOM_DEVICE_CRT2_SUPPORT, | 1490 | radeon_add_legacy_connector(dev, 1, ATOM_DEVICE_CRT2_SUPPORT, |
| 1467 | DRM_MODE_CONNECTOR_VGA, &ddc_i2c); | 1491 | DRM_MODE_CONNECTOR_VGA, &ddc_i2c, |
| 1492 | CONNECTOR_OBJECT_ID_VGA); | ||
| 1468 | /* TV - TV DAC */ | 1493 | /* TV - TV DAC */ |
| 1469 | radeon_add_legacy_encoder(dev, | 1494 | radeon_add_legacy_encoder(dev, |
| 1470 | radeon_get_encoder_id(dev, | 1495 | radeon_get_encoder_id(dev, |
| @@ -1473,7 +1498,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1473 | ATOM_DEVICE_TV1_SUPPORT); | 1498 | ATOM_DEVICE_TV1_SUPPORT); |
| 1474 | radeon_add_legacy_connector(dev, 2, ATOM_DEVICE_TV1_SUPPORT, | 1499 | radeon_add_legacy_connector(dev, 2, ATOM_DEVICE_TV1_SUPPORT, |
| 1475 | DRM_MODE_CONNECTOR_SVIDEO, | 1500 | DRM_MODE_CONNECTOR_SVIDEO, |
| 1476 | &ddc_i2c); | 1501 | &ddc_i2c, |
| 1502 | CONNECTOR_OBJECT_ID_SVIDEO); | ||
| 1477 | break; | 1503 | break; |
| 1478 | case CT_EMAC: | 1504 | case CT_EMAC: |
| 1479 | DRM_INFO("Connector Table: %d (emac)\n", | 1505 | DRM_INFO("Connector Table: %d (emac)\n", |
| @@ -1486,7 +1512,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1486 | 1), | 1512 | 1), |
| 1487 | ATOM_DEVICE_CRT1_SUPPORT); | 1513 | ATOM_DEVICE_CRT1_SUPPORT); |
| 1488 | radeon_add_legacy_connector(dev, 0, ATOM_DEVICE_CRT1_SUPPORT, | 1514 | radeon_add_legacy_connector(dev, 0, ATOM_DEVICE_CRT1_SUPPORT, |
| 1489 | DRM_MODE_CONNECTOR_VGA, &ddc_i2c); | 1515 | DRM_MODE_CONNECTOR_VGA, &ddc_i2c, |
| 1516 | CONNECTOR_OBJECT_ID_VGA); | ||
| 1490 | /* VGA - tv dac */ | 1517 | /* VGA - tv dac */ |
| 1491 | ddc_i2c = combios_setup_i2c_bus(RADEON_GPIO_CRT2_DDC); | 1518 | ddc_i2c = combios_setup_i2c_bus(RADEON_GPIO_CRT2_DDC); |
| 1492 | radeon_add_legacy_encoder(dev, | 1519 | radeon_add_legacy_encoder(dev, |
| @@ -1495,7 +1522,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1495 | 2), | 1522 | 2), |
| 1496 | ATOM_DEVICE_CRT2_SUPPORT); | 1523 | ATOM_DEVICE_CRT2_SUPPORT); |
| 1497 | radeon_add_legacy_connector(dev, 1, ATOM_DEVICE_CRT2_SUPPORT, | 1524 | radeon_add_legacy_connector(dev, 1, ATOM_DEVICE_CRT2_SUPPORT, |
| 1498 | DRM_MODE_CONNECTOR_VGA, &ddc_i2c); | 1525 | DRM_MODE_CONNECTOR_VGA, &ddc_i2c, |
| 1526 | CONNECTOR_OBJECT_ID_VGA); | ||
| 1499 | /* TV - TV DAC */ | 1527 | /* TV - TV DAC */ |
| 1500 | radeon_add_legacy_encoder(dev, | 1528 | radeon_add_legacy_encoder(dev, |
| 1501 | radeon_get_encoder_id(dev, | 1529 | radeon_get_encoder_id(dev, |
| @@ -1504,7 +1532,8 @@ bool radeon_get_legacy_connector_info_from_table(struct drm_device *dev) | |||
| 1504 | ATOM_DEVICE_TV1_SUPPORT); | 1532 | ATOM_DEVICE_TV1_SUPPORT); |
| 1505 | radeon_add_legacy_connector(dev, 2, ATOM_DEVICE_TV1_SUPPORT, | 1533 | radeon_add_legacy_connector(dev, 2, ATOM_DEVICE_TV1_SUPPORT, |
| 1506 | DRM_MODE_CONNECTOR_SVIDEO, | 1534 | DRM_MODE_CONNECTOR_SVIDEO, |
| 1507 | &ddc_i2c); | 1535 | &ddc_i2c, |
| 1536 | CONNECTOR_OBJECT_ID_SVIDEO); | ||
| 1508 | break; | 1537 | break; |
| 1509 | default: | 1538 | default: |
| 1510 | DRM_INFO("Connector table: %d (invalid)\n", | 1539 | DRM_INFO("Connector table: %d (invalid)\n", |
| @@ -1581,11 +1610,63 @@ static bool radeon_apply_legacy_quirks(struct drm_device *dev, | |||
| 1581 | return true; | 1610 | return true; |
| 1582 | } | 1611 | } |
| 1583 | 1612 | ||
| 1613 | static bool radeon_apply_legacy_tv_quirks(struct drm_device *dev) | ||
| 1614 | { | ||
| 1615 | /* Acer 5102 has non-existent TV port */ | ||
| 1616 | if (dev->pdev->device == 0x5975 && | ||
| 1617 | dev->pdev->subsystem_vendor == 0x1025 && | ||
| 1618 | dev->pdev->subsystem_device == 0x009f) | ||
| 1619 | return false; | ||
| 1620 | |||
| 1621 | /* HP dc5750 has non-existent TV port */ | ||
| 1622 | if (dev->pdev->device == 0x5974 && | ||
| 1623 | dev->pdev->subsystem_vendor == 0x103c && | ||
| 1624 | dev->pdev->subsystem_device == 0x280a) | ||
| 1625 | return false; | ||
| 1626 | |||
| 1627 | return true; | ||
| 1628 | } | ||
| 1629 | |||
| 1630 | static uint16_t combios_check_dl_dvi(struct drm_device *dev, int is_dvi_d) | ||
| 1631 | { | ||
| 1632 | struct radeon_device *rdev = dev->dev_private; | ||
| 1633 | uint32_t ext_tmds_info; | ||
| 1634 | |||
| 1635 | if (rdev->flags & RADEON_IS_IGP) { | ||
| 1636 | if (is_dvi_d) | ||
| 1637 | return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D; | ||
| 1638 | else | ||
| 1639 | return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I; | ||
| 1640 | } | ||
| 1641 | ext_tmds_info = combios_get_table_offset(dev, COMBIOS_EXT_TMDS_INFO_TABLE); | ||
| 1642 | if (ext_tmds_info) { | ||
| 1643 | uint8_t rev = RBIOS8(ext_tmds_info); | ||
| 1644 | uint8_t flags = RBIOS8(ext_tmds_info + 4 + 5); | ||
| 1645 | if (rev >= 3) { | ||
| 1646 | if (is_dvi_d) | ||
| 1647 | return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D; | ||
| 1648 | else | ||
| 1649 | return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I; | ||
| 1650 | } else { | ||
| 1651 | if (flags & 1) { | ||
| 1652 | if (is_dvi_d) | ||
| 1653 | return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D; | ||
| 1654 | else | ||
| 1655 | return CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I; | ||
| 1656 | } | ||
| 1657 | } | ||
| 1658 | } | ||
| 1659 | if (is_dvi_d) | ||
| 1660 | return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D; | ||
| 1661 | else | ||
| 1662 | return CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I; | ||
| 1663 | } | ||
| 1664 | |||
| 1584 | bool radeon_get_legacy_connector_info_from_bios(struct drm_device *dev) | 1665 | bool radeon_get_legacy_connector_info_from_bios(struct drm_device *dev) |
| 1585 | { | 1666 | { |
| 1586 | struct radeon_device *rdev = dev->dev_private; | 1667 | struct radeon_device *rdev = dev->dev_private; |
| 1587 | uint32_t conn_info, entry, devices; | 1668 | uint32_t conn_info, entry, devices; |
| 1588 | uint16_t tmp; | 1669 | uint16_t tmp, connector_object_id; |
| 1589 | enum radeon_combios_ddc ddc_type; | 1670 | enum radeon_combios_ddc ddc_type; |
| 1590 | enum radeon_combios_connector connector; | 1671 | enum radeon_combios_connector connector; |
| 1591 | int i = 0; | 1672 | int i = 0; |
| @@ -1628,8 +1709,9 @@ bool radeon_get_legacy_connector_info_from_bios(struct drm_device *dev) | |||
| 1628 | break; | 1709 | break; |
| 1629 | } | 1710 | } |
| 1630 | 1711 | ||
| 1631 | radeon_apply_legacy_quirks(dev, i, &connector, | 1712 | if (!radeon_apply_legacy_quirks(dev, i, &connector, |
| 1632 | &ddc_i2c); | 1713 | &ddc_i2c)) |
| 1714 | continue; | ||
| 1633 | 1715 | ||
| 1634 | switch (connector) { | 1716 | switch (connector) { |
| 1635 | case CONNECTOR_PROPRIETARY_LEGACY: | 1717 | case CONNECTOR_PROPRIETARY_LEGACY: |
| @@ -1644,7 +1726,8 @@ bool radeon_get_legacy_connector_info_from_bios(struct drm_device *dev) | |||
| 1644 | radeon_add_legacy_connector(dev, i, devices, | 1726 | radeon_add_legacy_connector(dev, i, devices, |
| 1645 | legacy_connector_convert | 1727 | legacy_connector_convert |
| 1646 | [connector], | 1728 | [connector], |
| 1647 | &ddc_i2c); | 1729 | &ddc_i2c, |
| 1730 | CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_D); | ||
| 1648 | break; | 1731 | break; |
| 1649 | case CONNECTOR_CRT_LEGACY: | 1732 | case CONNECTOR_CRT_LEGACY: |
| 1650 | if (tmp & 0x1) { | 1733 | if (tmp & 0x1) { |
| @@ -1669,7 +1752,8 @@ bool radeon_get_legacy_connector_info_from_bios(struct drm_device *dev) | |||
| 1669 | devices, | 1752 | devices, |
| 1670 | legacy_connector_convert | 1753 | legacy_connector_convert |
| 1671 | [connector], | 1754 | [connector], |
| 1672 | &ddc_i2c); | 1755 | &ddc_i2c, |
| 1756 | CONNECTOR_OBJECT_ID_VGA); | ||
| 1673 | break; | 1757 | break; |
| 1674 | case CONNECTOR_DVI_I_LEGACY: | 1758 | case CONNECTOR_DVI_I_LEGACY: |
| 1675 | devices = 0; | 1759 | devices = 0; |
| @@ -1698,6 +1782,7 @@ bool radeon_get_legacy_connector_info_from_bios(struct drm_device *dev) | |||
| 1698 | ATOM_DEVICE_DFP2_SUPPORT, | 1782 | ATOM_DEVICE_DFP2_SUPPORT, |
| 1699 | 0), | 1783 | 0), |
| 1700 | ATOM_DEVICE_DFP2_SUPPORT); | 1784 | ATOM_DEVICE_DFP2_SUPPORT); |
| 1785 | connector_object_id = combios_check_dl_dvi(dev, 0); | ||
| 1701 | } else { | 1786 | } else { |
| 1702 | devices |= ATOM_DEVICE_DFP1_SUPPORT; | 1787 | devices |= ATOM_DEVICE_DFP1_SUPPORT; |
| 1703 | radeon_add_legacy_encoder(dev, | 1788 | radeon_add_legacy_encoder(dev, |
| @@ -1706,19 +1791,24 @@ bool radeon_get_legacy_connector_info_from_bios(struct drm_device *dev) | |||
| 1706 | ATOM_DEVICE_DFP1_SUPPORT, | 1791 | ATOM_DEVICE_DFP1_SUPPORT, |
| 1707 | 0), | 1792 | 0), |
| 1708 | ATOM_DEVICE_DFP1_SUPPORT); | 1793 | ATOM_DEVICE_DFP1_SUPPORT); |
| 1794 | connector_object_id = CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I; | ||
| 1709 | } | 1795 | } |
| 1710 | radeon_add_legacy_connector(dev, | 1796 | radeon_add_legacy_connector(dev, |
| 1711 | i, | 1797 | i, |
| 1712 | devices, | 1798 | devices, |
| 1713 | legacy_connector_convert | 1799 | legacy_connector_convert |
| 1714 | [connector], | 1800 | [connector], |
| 1715 | &ddc_i2c); | 1801 | &ddc_i2c, |
| 1802 | connector_object_id); | ||
| 1716 | break; | 1803 | break; |
| 1717 | case CONNECTOR_DVI_D_LEGACY: | 1804 | case CONNECTOR_DVI_D_LEGACY: |
| 1718 | if ((tmp >> 4) & 0x1) | 1805 | if ((tmp >> 4) & 0x1) { |
| 1719 | devices = ATOM_DEVICE_DFP2_SUPPORT; | 1806 | devices = ATOM_DEVICE_DFP2_SUPPORT; |
| 1720 | else | 1807 | connector_object_id = combios_check_dl_dvi(dev, 1); |
| 1808 | } else { | ||
| 1721 | devices = ATOM_DEVICE_DFP1_SUPPORT; | 1809 | devices = ATOM_DEVICE_DFP1_SUPPORT; |
| 1810 | connector_object_id = CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I; | ||
| 1811 | } | ||
| 1722 | radeon_add_legacy_encoder(dev, | 1812 | radeon_add_legacy_encoder(dev, |
| 1723 | radeon_get_encoder_id | 1813 | radeon_get_encoder_id |
| 1724 | (dev, devices, 0), | 1814 | (dev, devices, 0), |
| @@ -1726,7 +1816,8 @@ bool radeon_get_legacy_connector_info_from_bios(struct drm_device *dev) | |||
| 1726 | radeon_add_legacy_connector(dev, i, devices, | 1816 | radeon_add_legacy_connector(dev, i, devices, |
| 1727 | legacy_connector_convert | 1817 | legacy_connector_convert |
| 1728 | [connector], | 1818 | [connector], |
| 1729 | &ddc_i2c); | 1819 | &ddc_i2c, |
| 1820 | connector_object_id); | ||
| 1730 | break; | 1821 | break; |
| 1731 | case CONNECTOR_CTV_LEGACY: | 1822 | case CONNECTOR_CTV_LEGACY: |
| 1732 | case CONNECTOR_STV_LEGACY: | 1823 | case CONNECTOR_STV_LEGACY: |
| @@ -1740,7 +1831,8 @@ bool radeon_get_legacy_connector_info_from_bios(struct drm_device *dev) | |||
| 1740 | ATOM_DEVICE_TV1_SUPPORT, | 1831 | ATOM_DEVICE_TV1_SUPPORT, |
| 1741 | legacy_connector_convert | 1832 | legacy_connector_convert |
| 1742 | [connector], | 1833 | [connector], |
| 1743 | &ddc_i2c); | 1834 | &ddc_i2c, |
| 1835 | CONNECTOR_OBJECT_ID_SVIDEO); | ||
| 1744 | break; | 1836 | break; |
| 1745 | default: | 1837 | default: |
| 1746 | DRM_ERROR("Unknown connector type: %d\n", | 1838 | DRM_ERROR("Unknown connector type: %d\n", |
| @@ -1772,10 +1864,29 @@ bool radeon_get_legacy_connector_info_from_bios(struct drm_device *dev) | |||
| 1772 | ATOM_DEVICE_CRT1_SUPPORT | | 1864 | ATOM_DEVICE_CRT1_SUPPORT | |
| 1773 | ATOM_DEVICE_DFP1_SUPPORT, | 1865 | ATOM_DEVICE_DFP1_SUPPORT, |
| 1774 | DRM_MODE_CONNECTOR_DVII, | 1866 | DRM_MODE_CONNECTOR_DVII, |
| 1775 | &ddc_i2c); | 1867 | &ddc_i2c, |
| 1868 | CONNECTOR_OBJECT_ID_SINGLE_LINK_DVI_I); | ||
| 1776 | } else { | 1869 | } else { |
| 1777 | DRM_DEBUG("No connector info found\n"); | 1870 | uint16_t crt_info = |
| 1778 | return false; | 1871 | combios_get_table_offset(dev, COMBIOS_CRT_INFO_TABLE); |
| 1872 | DRM_DEBUG("Found CRT table, assuming VGA connector\n"); | ||
| 1873 | if (crt_info) { | ||
| 1874 | radeon_add_legacy_encoder(dev, | ||
| 1875 | radeon_get_encoder_id(dev, | ||
| 1876 | ATOM_DEVICE_CRT1_SUPPORT, | ||
| 1877 | 1), | ||
| 1878 | ATOM_DEVICE_CRT1_SUPPORT); | ||
| 1879 | ddc_i2c = combios_setup_i2c_bus(RADEON_GPIO_VGA_DDC); | ||
| 1880 | radeon_add_legacy_connector(dev, | ||
| 1881 | 0, | ||
| 1882 | ATOM_DEVICE_CRT1_SUPPORT, | ||
| 1883 | DRM_MODE_CONNECTOR_VGA, | ||
| 1884 | &ddc_i2c, | ||
| 1885 | CONNECTOR_OBJECT_ID_VGA); | ||
| 1886 | } else { | ||
| 1887 | DRM_DEBUG("No connector info found\n"); | ||
| 1888 | return false; | ||
| 1889 | } | ||
| 1779 | } | 1890 | } |
| 1780 | } | 1891 | } |
| 1781 | 1892 | ||
| @@ -1870,7 +1981,8 @@ bool radeon_get_legacy_connector_info_from_bios(struct drm_device *dev) | |||
| 1870 | 5, | 1981 | 5, |
| 1871 | ATOM_DEVICE_LCD1_SUPPORT, | 1982 | ATOM_DEVICE_LCD1_SUPPORT, |
| 1872 | DRM_MODE_CONNECTOR_LVDS, | 1983 | DRM_MODE_CONNECTOR_LVDS, |
| 1873 | &ddc_i2c); | 1984 | &ddc_i2c, |
| 1985 | CONNECTOR_OBJECT_ID_LVDS); | ||
| 1874 | } | 1986 | } |
| 1875 | } | 1987 | } |
| 1876 | 1988 | ||
| @@ -1880,16 +1992,19 @@ bool radeon_get_legacy_connector_info_from_bios(struct drm_device *dev) | |||
| 1880 | combios_get_table_offset(dev, COMBIOS_TV_INFO_TABLE); | 1992 | combios_get_table_offset(dev, COMBIOS_TV_INFO_TABLE); |
| 1881 | if (tv_info) { | 1993 | if (tv_info) { |
| 1882 | if (RBIOS8(tv_info + 6) == 'T') { | 1994 | if (RBIOS8(tv_info + 6) == 'T') { |
| 1883 | radeon_add_legacy_encoder(dev, | 1995 | if (radeon_apply_legacy_tv_quirks(dev)) { |
| 1884 | radeon_get_encoder_id | 1996 | radeon_add_legacy_encoder(dev, |
| 1885 | (dev, | 1997 | radeon_get_encoder_id |
| 1886 | ATOM_DEVICE_TV1_SUPPORT, | 1998 | (dev, |
| 1887 | 2), | 1999 | ATOM_DEVICE_TV1_SUPPORT, |
| 1888 | ATOM_DEVICE_TV1_SUPPORT); | 2000 | 2), |
| 1889 | radeon_add_legacy_connector(dev, 6, | 2001 | ATOM_DEVICE_TV1_SUPPORT); |
| 1890 | ATOM_DEVICE_TV1_SUPPORT, | 2002 | radeon_add_legacy_connector(dev, 6, |
| 1891 | DRM_MODE_CONNECTOR_SVIDEO, | 2003 | ATOM_DEVICE_TV1_SUPPORT, |
| 1892 | &ddc_i2c); | 2004 | DRM_MODE_CONNECTOR_SVIDEO, |
| 2005 | &ddc_i2c, | ||
| 2006 | CONNECTOR_OBJECT_ID_SVIDEO); | ||
| 2007 | } | ||
| 1893 | } | 2008 | } |
| 1894 | } | 2009 | } |
| 1895 | } | 2010 | } |
diff --git a/drivers/gpu/drm/radeon/radeon_connectors.c b/drivers/gpu/drm/radeon/radeon_connectors.c index e376be47a4a0..29763ceae3af 100644 --- a/drivers/gpu/drm/radeon/radeon_connectors.c +++ b/drivers/gpu/drm/radeon/radeon_connectors.c | |||
| @@ -178,25 +178,12 @@ static struct drm_display_mode *radeon_fp_native_mode(struct drm_encoder *encode | |||
| 178 | struct drm_device *dev = encoder->dev; | 178 | struct drm_device *dev = encoder->dev; |
| 179 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); | 179 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 180 | struct drm_display_mode *mode = NULL; | 180 | struct drm_display_mode *mode = NULL; |
| 181 | struct radeon_native_mode *native_mode = &radeon_encoder->native_mode; | 181 | struct drm_display_mode *native_mode = &radeon_encoder->native_mode; |
| 182 | |||
| 183 | if (native_mode->panel_xres != 0 && | ||
| 184 | native_mode->panel_yres != 0 && | ||
| 185 | native_mode->dotclock != 0) { | ||
| 186 | mode = drm_mode_create(dev); | ||
| 187 | |||
| 188 | mode->hdisplay = native_mode->panel_xres; | ||
| 189 | mode->vdisplay = native_mode->panel_yres; | ||
| 190 | |||
| 191 | mode->htotal = mode->hdisplay + native_mode->hblank; | ||
| 192 | mode->hsync_start = mode->hdisplay + native_mode->hoverplus; | ||
| 193 | mode->hsync_end = mode->hsync_start + native_mode->hsync_width; | ||
| 194 | mode->vtotal = mode->vdisplay + native_mode->vblank; | ||
| 195 | mode->vsync_start = mode->vdisplay + native_mode->voverplus; | ||
| 196 | mode->vsync_end = mode->vsync_start + native_mode->vsync_width; | ||
| 197 | mode->clock = native_mode->dotclock; | ||
| 198 | mode->flags = 0; | ||
| 199 | 182 | ||
| 183 | if (native_mode->hdisplay != 0 && | ||
| 184 | native_mode->vdisplay != 0 && | ||
| 185 | native_mode->clock != 0) { | ||
| 186 | mode = drm_mode_duplicate(dev, native_mode); | ||
| 200 | mode->type = DRM_MODE_TYPE_PREFERRED | DRM_MODE_TYPE_DRIVER; | 187 | mode->type = DRM_MODE_TYPE_PREFERRED | DRM_MODE_TYPE_DRIVER; |
| 201 | drm_mode_set_name(mode); | 188 | drm_mode_set_name(mode); |
| 202 | 189 | ||
| @@ -210,7 +197,7 @@ static void radeon_add_common_modes(struct drm_encoder *encoder, struct drm_conn | |||
| 210 | struct drm_device *dev = encoder->dev; | 197 | struct drm_device *dev = encoder->dev; |
| 211 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); | 198 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 212 | struct drm_display_mode *mode = NULL; | 199 | struct drm_display_mode *mode = NULL; |
| 213 | struct radeon_native_mode *native_mode = &radeon_encoder->native_mode; | 200 | struct drm_display_mode *native_mode = &radeon_encoder->native_mode; |
| 214 | int i; | 201 | int i; |
| 215 | struct mode_size { | 202 | struct mode_size { |
| 216 | int w; | 203 | int w; |
| @@ -236,11 +223,16 @@ static void radeon_add_common_modes(struct drm_encoder *encoder, struct drm_conn | |||
| 236 | }; | 223 | }; |
| 237 | 224 | ||
| 238 | for (i = 0; i < 17; i++) { | 225 | for (i = 0; i < 17; i++) { |
| 226 | if (radeon_encoder->devices & (ATOM_DEVICE_TV_SUPPORT)) { | ||
| 227 | if (common_modes[i].w > 1024 || | ||
| 228 | common_modes[i].h > 768) | ||
| 229 | continue; | ||
| 230 | } | ||
| 239 | if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) { | 231 | if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) { |
| 240 | if (common_modes[i].w > native_mode->panel_xres || | 232 | if (common_modes[i].w > native_mode->hdisplay || |
| 241 | common_modes[i].h > native_mode->panel_yres || | 233 | common_modes[i].h > native_mode->vdisplay || |
| 242 | (common_modes[i].w == native_mode->panel_xres && | 234 | (common_modes[i].w == native_mode->hdisplay && |
| 243 | common_modes[i].h == native_mode->panel_yres)) | 235 | common_modes[i].h == native_mode->vdisplay)) |
| 244 | continue; | 236 | continue; |
| 245 | } | 237 | } |
| 246 | if (common_modes[i].w < 320 || common_modes[i].h < 200) | 238 | if (common_modes[i].w < 320 || common_modes[i].h < 200) |
| @@ -344,28 +336,23 @@ static void radeon_fixup_lvds_native_mode(struct drm_encoder *encoder, | |||
| 344 | struct drm_connector *connector) | 336 | struct drm_connector *connector) |
| 345 | { | 337 | { |
| 346 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); | 338 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 347 | struct radeon_native_mode *native_mode = &radeon_encoder->native_mode; | 339 | struct drm_display_mode *native_mode = &radeon_encoder->native_mode; |
| 348 | 340 | ||
| 349 | /* Try to get native mode details from EDID if necessary */ | 341 | /* Try to get native mode details from EDID if necessary */ |
| 350 | if (!native_mode->dotclock) { | 342 | if (!native_mode->clock) { |
| 351 | struct drm_display_mode *t, *mode; | 343 | struct drm_display_mode *t, *mode; |
| 352 | 344 | ||
| 353 | list_for_each_entry_safe(mode, t, &connector->probed_modes, head) { | 345 | list_for_each_entry_safe(mode, t, &connector->probed_modes, head) { |
| 354 | if (mode->hdisplay == native_mode->panel_xres && | 346 | if (mode->hdisplay == native_mode->hdisplay && |
| 355 | mode->vdisplay == native_mode->panel_yres) { | 347 | mode->vdisplay == native_mode->vdisplay) { |
| 356 | native_mode->hblank = mode->htotal - mode->hdisplay; | 348 | *native_mode = *mode; |
| 357 | native_mode->hoverplus = mode->hsync_start - mode->hdisplay; | 349 | drm_mode_set_crtcinfo(native_mode, CRTC_INTERLACE_HALVE_V); |
| 358 | native_mode->hsync_width = mode->hsync_end - mode->hsync_start; | ||
| 359 | native_mode->vblank = mode->vtotal - mode->vdisplay; | ||
| 360 | native_mode->voverplus = mode->vsync_start - mode->vdisplay; | ||
| 361 | native_mode->vsync_width = mode->vsync_end - mode->vsync_start; | ||
| 362 | native_mode->dotclock = mode->clock; | ||
| 363 | DRM_INFO("Determined LVDS native mode details from EDID\n"); | 350 | DRM_INFO("Determined LVDS native mode details from EDID\n"); |
| 364 | break; | 351 | break; |
| 365 | } | 352 | } |
| 366 | } | 353 | } |
| 367 | } | 354 | } |
| 368 | if (!native_mode->dotclock) { | 355 | if (!native_mode->clock) { |
| 369 | DRM_INFO("No LVDS native mode details, disabling RMX\n"); | 356 | DRM_INFO("No LVDS native mode details, disabling RMX\n"); |
| 370 | radeon_encoder->rmx_type = RMX_OFF; | 357 | radeon_encoder->rmx_type = RMX_OFF; |
| 371 | } | 358 | } |
| @@ -410,13 +397,64 @@ static int radeon_lvds_get_modes(struct drm_connector *connector) | |||
| 410 | static int radeon_lvds_mode_valid(struct drm_connector *connector, | 397 | static int radeon_lvds_mode_valid(struct drm_connector *connector, |
| 411 | struct drm_display_mode *mode) | 398 | struct drm_display_mode *mode) |
| 412 | { | 399 | { |
| 400 | struct drm_encoder *encoder = radeon_best_single_encoder(connector); | ||
| 401 | |||
| 402 | if ((mode->hdisplay < 320) || (mode->vdisplay < 240)) | ||
| 403 | return MODE_PANEL; | ||
| 404 | |||
| 405 | if (encoder) { | ||
| 406 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); | ||
| 407 | struct drm_display_mode *native_mode = &radeon_encoder->native_mode; | ||
| 408 | |||
| 409 | /* AVIVO hardware supports downscaling modes larger than the panel | ||
| 410 | * to the panel size, but I'm not sure this is desirable. | ||
| 411 | */ | ||
| 412 | if ((mode->hdisplay > native_mode->hdisplay) || | ||
| 413 | (mode->vdisplay > native_mode->vdisplay)) | ||
| 414 | return MODE_PANEL; | ||
| 415 | |||
| 416 | /* if scaling is disabled, block non-native modes */ | ||
| 417 | if (radeon_encoder->rmx_type == RMX_OFF) { | ||
| 418 | if ((mode->hdisplay != native_mode->hdisplay) || | ||
| 419 | (mode->vdisplay != native_mode->vdisplay)) | ||
| 420 | return MODE_PANEL; | ||
| 421 | } | ||
| 422 | } | ||
| 423 | |||
| 413 | return MODE_OK; | 424 | return MODE_OK; |
| 414 | } | 425 | } |
| 415 | 426 | ||
| 416 | static enum drm_connector_status radeon_lvds_detect(struct drm_connector *connector) | 427 | static enum drm_connector_status radeon_lvds_detect(struct drm_connector *connector) |
| 417 | { | 428 | { |
| 418 | enum drm_connector_status ret = connector_status_connected; | 429 | struct radeon_connector *radeon_connector = to_radeon_connector(connector); |
| 430 | struct drm_encoder *encoder = radeon_best_single_encoder(connector); | ||
| 431 | enum drm_connector_status ret = connector_status_disconnected; | ||
| 432 | |||
| 433 | if (encoder) { | ||
| 434 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); | ||
| 435 | struct drm_display_mode *native_mode = &radeon_encoder->native_mode; | ||
| 436 | |||
| 437 | /* check if panel is valid */ | ||
| 438 | if (native_mode->hdisplay >= 320 && native_mode->vdisplay >= 240) | ||
| 439 | ret = connector_status_connected; | ||
| 440 | |||
| 441 | } | ||
| 442 | |||
| 443 | /* check for edid as well */ | ||
| 444 | if (radeon_connector->edid) | ||
| 445 | ret = connector_status_connected; | ||
| 446 | else { | ||
| 447 | if (radeon_connector->ddc_bus) { | ||
| 448 | radeon_i2c_do_lock(radeon_connector, 1); | ||
| 449 | radeon_connector->edid = drm_get_edid(&radeon_connector->base, | ||
| 450 | &radeon_connector->ddc_bus->adapter); | ||
| 451 | radeon_i2c_do_lock(radeon_connector, 0); | ||
| 452 | if (radeon_connector->edid) | ||
| 453 | ret = connector_status_connected; | ||
| 454 | } | ||
| 455 | } | ||
| 419 | /* check acpi lid status ??? */ | 456 | /* check acpi lid status ??? */ |
| 457 | |||
| 420 | radeon_connector_update_scratch_regs(connector, ret); | 458 | radeon_connector_update_scratch_regs(connector, ret); |
| 421 | return ret; | 459 | return ret; |
| 422 | } | 460 | } |
| @@ -427,6 +465,8 @@ static void radeon_connector_destroy(struct drm_connector *connector) | |||
| 427 | 465 | ||
| 428 | if (radeon_connector->ddc_bus) | 466 | if (radeon_connector->ddc_bus) |
| 429 | radeon_i2c_destroy(radeon_connector->ddc_bus); | 467 | radeon_i2c_destroy(radeon_connector->ddc_bus); |
| 468 | if (radeon_connector->edid) | ||
| 469 | kfree(radeon_connector->edid); | ||
| 430 | kfree(radeon_connector->con_priv); | 470 | kfree(radeon_connector->con_priv); |
| 431 | drm_sysfs_connector_remove(connector); | 471 | drm_sysfs_connector_remove(connector); |
| 432 | drm_connector_cleanup(connector); | 472 | drm_connector_cleanup(connector); |
| @@ -496,6 +536,8 @@ static int radeon_vga_get_modes(struct drm_connector *connector) | |||
| 496 | static int radeon_vga_mode_valid(struct drm_connector *connector, | 536 | static int radeon_vga_mode_valid(struct drm_connector *connector, |
| 497 | struct drm_display_mode *mode) | 537 | struct drm_display_mode *mode) |
| 498 | { | 538 | { |
| 539 | /* XXX check mode bandwidth */ | ||
| 540 | /* XXX verify against max DAC output frequency */ | ||
| 499 | return MODE_OK; | 541 | return MODE_OK; |
| 500 | } | 542 | } |
| 501 | 543 | ||
| @@ -514,9 +556,33 @@ static enum drm_connector_status radeon_vga_detect(struct drm_connector *connect | |||
| 514 | radeon_i2c_do_lock(radeon_connector, 1); | 556 | radeon_i2c_do_lock(radeon_connector, 1); |
| 515 | dret = radeon_ddc_probe(radeon_connector); | 557 | dret = radeon_ddc_probe(radeon_connector); |
| 516 | radeon_i2c_do_lock(radeon_connector, 0); | 558 | radeon_i2c_do_lock(radeon_connector, 0); |
| 517 | if (dret) | 559 | if (dret) { |
| 518 | ret = connector_status_connected; | 560 | if (radeon_connector->edid) { |
| 519 | else { | 561 | kfree(radeon_connector->edid); |
| 562 | radeon_connector->edid = NULL; | ||
| 563 | } | ||
| 564 | radeon_i2c_do_lock(radeon_connector, 1); | ||
| 565 | radeon_connector->edid = drm_get_edid(&radeon_connector->base, &radeon_connector->ddc_bus->adapter); | ||
| 566 | radeon_i2c_do_lock(radeon_connector, 0); | ||
| 567 | |||
| 568 | if (!radeon_connector->edid) { | ||
| 569 | DRM_ERROR("%s: probed a monitor but no|invalid EDID\n", | ||
| 570 | drm_get_connector_name(connector)); | ||
| 571 | ret = connector_status_connected; | ||
| 572 | } else { | ||
| 573 | radeon_connector->use_digital = !!(radeon_connector->edid->input & DRM_EDID_INPUT_DIGITAL); | ||
| 574 | |||
| 575 | /* some oems have boards with separate digital and analog connectors | ||
| 576 | * with a shared ddc line (often vga + hdmi) | ||
| 577 | */ | ||
| 578 | if (radeon_connector->use_digital && radeon_connector->shared_ddc) { | ||
| 579 | kfree(radeon_connector->edid); | ||
| 580 | radeon_connector->edid = NULL; | ||
| 581 | ret = connector_status_disconnected; | ||
| 582 | } else | ||
| 583 | ret = connector_status_connected; | ||
| 584 | } | ||
| 585 | } else { | ||
| 520 | if (radeon_connector->dac_load_detect) { | 586 | if (radeon_connector->dac_load_detect) { |
| 521 | encoder_funcs = encoder->helper_private; | 587 | encoder_funcs = encoder->helper_private; |
| 522 | ret = encoder_funcs->detect(encoder, connector); | 588 | ret = encoder_funcs->detect(encoder, connector); |
| @@ -570,6 +636,8 @@ static int radeon_tv_get_modes(struct drm_connector *connector) | |||
| 570 | static int radeon_tv_mode_valid(struct drm_connector *connector, | 636 | static int radeon_tv_mode_valid(struct drm_connector *connector, |
| 571 | struct drm_display_mode *mode) | 637 | struct drm_display_mode *mode) |
| 572 | { | 638 | { |
| 639 | if ((mode->hdisplay > 1024) || (mode->vdisplay > 768)) | ||
| 640 | return MODE_CLOCK_RANGE; | ||
| 573 | return MODE_OK; | 641 | return MODE_OK; |
| 574 | } | 642 | } |
| 575 | 643 | ||
| @@ -644,20 +712,29 @@ static enum drm_connector_status radeon_dvi_detect(struct drm_connector *connect | |||
| 644 | dret = radeon_ddc_probe(radeon_connector); | 712 | dret = radeon_ddc_probe(radeon_connector); |
| 645 | radeon_i2c_do_lock(radeon_connector, 0); | 713 | radeon_i2c_do_lock(radeon_connector, 0); |
| 646 | if (dret) { | 714 | if (dret) { |
| 715 | if (radeon_connector->edid) { | ||
| 716 | kfree(radeon_connector->edid); | ||
| 717 | radeon_connector->edid = NULL; | ||
| 718 | } | ||
| 647 | radeon_i2c_do_lock(radeon_connector, 1); | 719 | radeon_i2c_do_lock(radeon_connector, 1); |
| 648 | radeon_connector->edid = drm_get_edid(&radeon_connector->base, &radeon_connector->ddc_bus->adapter); | 720 | radeon_connector->edid = drm_get_edid(&radeon_connector->base, &radeon_connector->ddc_bus->adapter); |
| 649 | radeon_i2c_do_lock(radeon_connector, 0); | 721 | radeon_i2c_do_lock(radeon_connector, 0); |
| 650 | 722 | ||
| 651 | if (!radeon_connector->edid) { | 723 | if (!radeon_connector->edid) { |
| 652 | DRM_ERROR("DDC responded but not EDID found for %s\n", | 724 | DRM_ERROR("%s: probed a monitor but no|invalid EDID\n", |
| 653 | drm_get_connector_name(connector)); | 725 | drm_get_connector_name(connector)); |
| 654 | } else { | 726 | } else { |
| 655 | radeon_connector->use_digital = !!(radeon_connector->edid->input & DRM_EDID_INPUT_DIGITAL); | 727 | radeon_connector->use_digital = !!(radeon_connector->edid->input & DRM_EDID_INPUT_DIGITAL); |
| 656 | 728 | ||
| 657 | /* if this isn't a digital monitor | 729 | /* some oems have boards with separate digital and analog connectors |
| 658 | then we need to make sure we don't have any | 730 | * with a shared ddc line (often vga + hdmi) |
| 659 | TV conflicts */ | 731 | */ |
| 660 | ret = connector_status_connected; | 732 | if ((!radeon_connector->use_digital) && radeon_connector->shared_ddc) { |
| 733 | kfree(radeon_connector->edid); | ||
| 734 | radeon_connector->edid = NULL; | ||
| 735 | ret = connector_status_disconnected; | ||
| 736 | } else | ||
| 737 | ret = connector_status_connected; | ||
| 661 | } | 738 | } |
| 662 | } | 739 | } |
| 663 | 740 | ||
| @@ -753,9 +830,27 @@ static void radeon_dvi_force(struct drm_connector *connector) | |||
| 753 | radeon_connector->use_digital = true; | 830 | radeon_connector->use_digital = true; |
| 754 | } | 831 | } |
| 755 | 832 | ||
| 833 | static int radeon_dvi_mode_valid(struct drm_connector *connector, | ||
| 834 | struct drm_display_mode *mode) | ||
| 835 | { | ||
| 836 | struct radeon_connector *radeon_connector = to_radeon_connector(connector); | ||
| 837 | |||
| 838 | /* XXX check mode bandwidth */ | ||
| 839 | |||
| 840 | if (radeon_connector->use_digital && (mode->clock > 165000)) { | ||
| 841 | if ((radeon_connector->connector_object_id == CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_I) || | ||
| 842 | (radeon_connector->connector_object_id == CONNECTOR_OBJECT_ID_DUAL_LINK_DVI_D) || | ||
| 843 | (radeon_connector->connector_object_id == CONNECTOR_OBJECT_ID_HDMI_TYPE_B)) | ||
| 844 | return MODE_OK; | ||
| 845 | else | ||
| 846 | return MODE_CLOCK_HIGH; | ||
| 847 | } | ||
| 848 | return MODE_OK; | ||
| 849 | } | ||
| 850 | |||
| 756 | struct drm_connector_helper_funcs radeon_dvi_connector_helper_funcs = { | 851 | struct drm_connector_helper_funcs radeon_dvi_connector_helper_funcs = { |
| 757 | .get_modes = radeon_dvi_get_modes, | 852 | .get_modes = radeon_dvi_get_modes, |
| 758 | .mode_valid = radeon_vga_mode_valid, | 853 | .mode_valid = radeon_dvi_mode_valid, |
| 759 | .best_encoder = radeon_dvi_encoder, | 854 | .best_encoder = radeon_dvi_encoder, |
| 760 | }; | 855 | }; |
| 761 | 856 | ||
| @@ -775,13 +870,15 @@ radeon_add_atom_connector(struct drm_device *dev, | |||
| 775 | int connector_type, | 870 | int connector_type, |
| 776 | struct radeon_i2c_bus_rec *i2c_bus, | 871 | struct radeon_i2c_bus_rec *i2c_bus, |
| 777 | bool linkb, | 872 | bool linkb, |
| 778 | uint32_t igp_lane_info) | 873 | uint32_t igp_lane_info, |
| 874 | uint16_t connector_object_id) | ||
| 779 | { | 875 | { |
| 780 | struct radeon_device *rdev = dev->dev_private; | 876 | struct radeon_device *rdev = dev->dev_private; |
| 781 | struct drm_connector *connector; | 877 | struct drm_connector *connector; |
| 782 | struct radeon_connector *radeon_connector; | 878 | struct radeon_connector *radeon_connector; |
| 783 | struct radeon_connector_atom_dig *radeon_dig_connector; | 879 | struct radeon_connector_atom_dig *radeon_dig_connector; |
| 784 | uint32_t subpixel_order = SubPixelNone; | 880 | uint32_t subpixel_order = SubPixelNone; |
| 881 | bool shared_ddc = false; | ||
| 785 | int ret; | 882 | int ret; |
| 786 | 883 | ||
| 787 | /* fixme - tv/cv/din */ | 884 | /* fixme - tv/cv/din */ |
| @@ -795,6 +892,13 @@ radeon_add_atom_connector(struct drm_device *dev, | |||
| 795 | radeon_connector->devices |= supported_device; | 892 | radeon_connector->devices |= supported_device; |
| 796 | return; | 893 | return; |
| 797 | } | 894 | } |
| 895 | if (radeon_connector->ddc_bus && i2c_bus->valid) { | ||
| 896 | if (memcmp(&radeon_connector->ddc_bus->rec, i2c_bus, | ||
| 897 | sizeof(struct radeon_i2c_bus_rec)) == 0) { | ||
| 898 | radeon_connector->shared_ddc = true; | ||
| 899 | shared_ddc = true; | ||
| 900 | } | ||
| 901 | } | ||
| 798 | } | 902 | } |
| 799 | 903 | ||
| 800 | radeon_connector = kzalloc(sizeof(struct radeon_connector), GFP_KERNEL); | 904 | radeon_connector = kzalloc(sizeof(struct radeon_connector), GFP_KERNEL); |
| @@ -805,6 +909,8 @@ radeon_add_atom_connector(struct drm_device *dev, | |||
| 805 | 909 | ||
| 806 | radeon_connector->connector_id = connector_id; | 910 | radeon_connector->connector_id = connector_id; |
| 807 | radeon_connector->devices = supported_device; | 911 | radeon_connector->devices = supported_device; |
| 912 | radeon_connector->shared_ddc = shared_ddc; | ||
| 913 | radeon_connector->connector_object_id = connector_object_id; | ||
| 808 | switch (connector_type) { | 914 | switch (connector_type) { |
| 809 | case DRM_MODE_CONNECTOR_VGA: | 915 | case DRM_MODE_CONNECTOR_VGA: |
| 810 | drm_connector_init(dev, &radeon_connector->base, &radeon_vga_connector_funcs, connector_type); | 916 | drm_connector_init(dev, &radeon_connector->base, &radeon_vga_connector_funcs, connector_type); |
| @@ -956,7 +1062,8 @@ radeon_add_legacy_connector(struct drm_device *dev, | |||
| 956 | uint32_t connector_id, | 1062 | uint32_t connector_id, |
| 957 | uint32_t supported_device, | 1063 | uint32_t supported_device, |
| 958 | int connector_type, | 1064 | int connector_type, |
| 959 | struct radeon_i2c_bus_rec *i2c_bus) | 1065 | struct radeon_i2c_bus_rec *i2c_bus, |
| 1066 | uint16_t connector_object_id) | ||
| 960 | { | 1067 | { |
| 961 | struct radeon_device *rdev = dev->dev_private; | 1068 | struct radeon_device *rdev = dev->dev_private; |
| 962 | struct drm_connector *connector; | 1069 | struct drm_connector *connector; |
| @@ -985,6 +1092,7 @@ radeon_add_legacy_connector(struct drm_device *dev, | |||
| 985 | 1092 | ||
| 986 | radeon_connector->connector_id = connector_id; | 1093 | radeon_connector->connector_id = connector_id; |
| 987 | radeon_connector->devices = supported_device; | 1094 | radeon_connector->devices = supported_device; |
| 1095 | radeon_connector->connector_object_id = connector_object_id; | ||
| 988 | switch (connector_type) { | 1096 | switch (connector_type) { |
| 989 | case DRM_MODE_CONNECTOR_VGA: | 1097 | case DRM_MODE_CONNECTOR_VGA: |
| 990 | drm_connector_init(dev, &radeon_connector->base, &radeon_vga_connector_funcs, connector_type); | 1098 | drm_connector_init(dev, &radeon_connector->base, &radeon_vga_connector_funcs, connector_type); |
| @@ -1042,6 +1150,13 @@ radeon_add_legacy_connector(struct drm_device *dev, | |||
| 1042 | if (ret) | 1150 | if (ret) |
| 1043 | goto failed; | 1151 | goto failed; |
| 1044 | radeon_connector->dac_load_detect = true; | 1152 | radeon_connector->dac_load_detect = true; |
| 1153 | /* RS400,RC410,RS480 chipset seems to report a lot | ||
| 1154 | * of false positive on load detect, we haven't yet | ||
| 1155 | * found a way to make load detect reliable on those | ||
| 1156 | * chipset, thus just disable it for TV. | ||
| 1157 | */ | ||
| 1158 | if (rdev->family == CHIP_RS400 || rdev->family == CHIP_RS480) | ||
| 1159 | radeon_connector->dac_load_detect = false; | ||
| 1045 | drm_connector_attach_property(&radeon_connector->base, | 1160 | drm_connector_attach_property(&radeon_connector->base, |
| 1046 | rdev->mode_info.load_detect_property, | 1161 | rdev->mode_info.load_detect_property, |
| 1047 | 1); | 1162 | 1); |
diff --git a/drivers/gpu/drm/radeon/radeon_cursor.c b/drivers/gpu/drm/radeon/radeon_cursor.c index b13c79e38bc0..28772a37009c 100644 --- a/drivers/gpu/drm/radeon/radeon_cursor.c +++ b/drivers/gpu/drm/radeon/radeon_cursor.c | |||
| @@ -109,9 +109,15 @@ static void radeon_set_cursor(struct drm_crtc *crtc, struct drm_gem_object *obj, | |||
| 109 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); | 109 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 110 | struct radeon_device *rdev = crtc->dev->dev_private; | 110 | struct radeon_device *rdev = crtc->dev->dev_private; |
| 111 | 111 | ||
| 112 | if (ASIC_IS_AVIVO(rdev)) | 112 | if (ASIC_IS_AVIVO(rdev)) { |
| 113 | if (rdev->family >= CHIP_RV770) { | ||
| 114 | if (radeon_crtc->crtc_id) | ||
| 115 | WREG32(R700_D2CUR_SURFACE_ADDRESS_HIGH, 0); | ||
| 116 | else | ||
| 117 | WREG32(R700_D1CUR_SURFACE_ADDRESS_HIGH, 0); | ||
| 118 | } | ||
| 113 | WREG32(AVIVO_D1CUR_SURFACE_ADDRESS + radeon_crtc->crtc_offset, gpu_addr); | 119 | WREG32(AVIVO_D1CUR_SURFACE_ADDRESS + radeon_crtc->crtc_offset, gpu_addr); |
| 114 | else { | 120 | } else { |
| 115 | radeon_crtc->legacy_cursor_offset = gpu_addr - radeon_crtc->legacy_display_base_addr; | 121 | radeon_crtc->legacy_cursor_offset = gpu_addr - radeon_crtc->legacy_display_base_addr; |
| 116 | /* offset is from DISP(2)_BASE_ADDRESS */ | 122 | /* offset is from DISP(2)_BASE_ADDRESS */ |
| 117 | WREG32(RADEON_CUR_OFFSET + radeon_crtc->crtc_offset, radeon_crtc->legacy_cursor_offset); | 123 | WREG32(RADEON_CUR_OFFSET + radeon_crtc->crtc_offset, radeon_crtc->legacy_cursor_offset); |
diff --git a/drivers/gpu/drm/radeon/radeon_device.c b/drivers/gpu/drm/radeon/radeon_device.c index df988142e6b0..41bb76fbe734 100644 --- a/drivers/gpu/drm/radeon/radeon_device.c +++ b/drivers/gpu/drm/radeon/radeon_device.c | |||
| @@ -444,20 +444,24 @@ static uint32_t cail_reg_read(struct card_info *info, uint32_t reg) | |||
| 444 | return r; | 444 | return r; |
| 445 | } | 445 | } |
| 446 | 446 | ||
| 447 | static struct card_info atom_card_info = { | ||
| 448 | .dev = NULL, | ||
| 449 | .reg_read = cail_reg_read, | ||
| 450 | .reg_write = cail_reg_write, | ||
| 451 | .mc_read = cail_mc_read, | ||
| 452 | .mc_write = cail_mc_write, | ||
| 453 | .pll_read = cail_pll_read, | ||
| 454 | .pll_write = cail_pll_write, | ||
| 455 | }; | ||
| 456 | |||
| 457 | int radeon_atombios_init(struct radeon_device *rdev) | 447 | int radeon_atombios_init(struct radeon_device *rdev) |
| 458 | { | 448 | { |
| 459 | atom_card_info.dev = rdev->ddev; | 449 | struct card_info *atom_card_info = |
| 460 | rdev->mode_info.atom_context = atom_parse(&atom_card_info, rdev->bios); | 450 | kzalloc(sizeof(struct card_info), GFP_KERNEL); |
| 451 | |||
| 452 | if (!atom_card_info) | ||
| 453 | return -ENOMEM; | ||
| 454 | |||
| 455 | rdev->mode_info.atom_card_info = atom_card_info; | ||
| 456 | atom_card_info->dev = rdev->ddev; | ||
| 457 | atom_card_info->reg_read = cail_reg_read; | ||
| 458 | atom_card_info->reg_write = cail_reg_write; | ||
| 459 | atom_card_info->mc_read = cail_mc_read; | ||
| 460 | atom_card_info->mc_write = cail_mc_write; | ||
| 461 | atom_card_info->pll_read = cail_pll_read; | ||
| 462 | atom_card_info->pll_write = cail_pll_write; | ||
| 463 | |||
| 464 | rdev->mode_info.atom_context = atom_parse(atom_card_info, rdev->bios); | ||
| 461 | radeon_atom_initialize_bios_scratch_regs(rdev->ddev); | 465 | radeon_atom_initialize_bios_scratch_regs(rdev->ddev); |
| 462 | return 0; | 466 | return 0; |
| 463 | } | 467 | } |
| @@ -465,6 +469,7 @@ int radeon_atombios_init(struct radeon_device *rdev) | |||
| 465 | void radeon_atombios_fini(struct radeon_device *rdev) | 469 | void radeon_atombios_fini(struct radeon_device *rdev) |
| 466 | { | 470 | { |
| 467 | kfree(rdev->mode_info.atom_context); | 471 | kfree(rdev->mode_info.atom_context); |
| 472 | kfree(rdev->mode_info.atom_card_info); | ||
| 468 | } | 473 | } |
| 469 | 474 | ||
| 470 | int radeon_combios_init(struct radeon_device *rdev) | 475 | int radeon_combios_init(struct radeon_device *rdev) |
| @@ -683,6 +688,8 @@ int radeon_resume_kms(struct drm_device *dev) | |||
| 683 | return -1; | 688 | return -1; |
| 684 | } | 689 | } |
| 685 | pci_set_master(dev->pdev); | 690 | pci_set_master(dev->pdev); |
| 691 | /* resume AGP if in use */ | ||
| 692 | radeon_agp_resume(rdev); | ||
| 686 | radeon_resume(rdev); | 693 | radeon_resume(rdev); |
| 687 | radeon_restore_bios_scratch_regs(rdev); | 694 | radeon_restore_bios_scratch_regs(rdev); |
| 688 | fb_set_suspend(rdev->fbdev_info, 0); | 695 | fb_set_suspend(rdev->fbdev_info, 0); |
diff --git a/drivers/gpu/drm/radeon/radeon_display.c b/drivers/gpu/drm/radeon/radeon_display.c index 3655d91993a6..c85df4afcb7a 100644 --- a/drivers/gpu/drm/radeon/radeon_display.c +++ b/drivers/gpu/drm/radeon/radeon_display.c | |||
| @@ -137,9 +137,6 @@ static void radeon_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green, | |||
| 137 | if (size != 256) { | 137 | if (size != 256) { |
| 138 | return; | 138 | return; |
| 139 | } | 139 | } |
| 140 | if (crtc->fb == NULL) { | ||
| 141 | return; | ||
| 142 | } | ||
| 143 | 140 | ||
| 144 | /* userspace palettes are always correct as is */ | 141 | /* userspace palettes are always correct as is */ |
| 145 | for (i = 0; i < 256; i++) { | 142 | for (i = 0; i < 256; i++) { |
| @@ -147,7 +144,6 @@ static void radeon_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green, | |||
| 147 | radeon_crtc->lut_g[i] = green[i] >> 6; | 144 | radeon_crtc->lut_g[i] = green[i] >> 6; |
| 148 | radeon_crtc->lut_b[i] = blue[i] >> 6; | 145 | radeon_crtc->lut_b[i] = blue[i] >> 6; |
| 149 | } | 146 | } |
| 150 | |||
| 151 | radeon_crtc_load_lut(crtc); | 147 | radeon_crtc_load_lut(crtc); |
| 152 | } | 148 | } |
| 153 | 149 | ||
| @@ -338,27 +334,19 @@ static bool radeon_setup_enc_conn(struct drm_device *dev) | |||
| 338 | 334 | ||
| 339 | int radeon_ddc_get_modes(struct radeon_connector *radeon_connector) | 335 | int radeon_ddc_get_modes(struct radeon_connector *radeon_connector) |
| 340 | { | 336 | { |
| 341 | struct edid *edid; | ||
| 342 | int ret = 0; | 337 | int ret = 0; |
| 343 | 338 | ||
| 344 | if (!radeon_connector->ddc_bus) | 339 | if (!radeon_connector->ddc_bus) |
| 345 | return -1; | 340 | return -1; |
| 346 | if (!radeon_connector->edid) { | 341 | if (!radeon_connector->edid) { |
| 347 | radeon_i2c_do_lock(radeon_connector, 1); | 342 | radeon_i2c_do_lock(radeon_connector, 1); |
| 348 | edid = drm_get_edid(&radeon_connector->base, &radeon_connector->ddc_bus->adapter); | 343 | radeon_connector->edid = drm_get_edid(&radeon_connector->base, &radeon_connector->ddc_bus->adapter); |
| 349 | radeon_i2c_do_lock(radeon_connector, 0); | 344 | radeon_i2c_do_lock(radeon_connector, 0); |
| 350 | } else | 345 | } |
| 351 | edid = radeon_connector->edid; | ||
| 352 | 346 | ||
| 353 | if (edid) { | 347 | if (radeon_connector->edid) { |
| 354 | /* update digital bits here */ | 348 | drm_mode_connector_update_edid_property(&radeon_connector->base, radeon_connector->edid); |
| 355 | if (edid->input & DRM_EDID_INPUT_DIGITAL) | 349 | ret = drm_add_edid_modes(&radeon_connector->base, radeon_connector->edid); |
| 356 | radeon_connector->use_digital = 1; | ||
| 357 | else | ||
| 358 | radeon_connector->use_digital = 0; | ||
| 359 | drm_mode_connector_update_edid_property(&radeon_connector->base, edid); | ||
| 360 | ret = drm_add_edid_modes(&radeon_connector->base, edid); | ||
| 361 | kfree(edid); | ||
| 362 | return ret; | 350 | return ret; |
| 363 | } | 351 | } |
| 364 | drm_mode_connector_update_edid_property(&radeon_connector->base, NULL); | 352 | drm_mode_connector_update_edid_property(&radeon_connector->base, NULL); |
| @@ -765,7 +753,7 @@ bool radeon_crtc_scaling_mode_fixup(struct drm_crtc *crtc, | |||
| 765 | radeon_crtc->rmx_type = radeon_encoder->rmx_type; | 753 | radeon_crtc->rmx_type = radeon_encoder->rmx_type; |
| 766 | memcpy(&radeon_crtc->native_mode, | 754 | memcpy(&radeon_crtc->native_mode, |
| 767 | &radeon_encoder->native_mode, | 755 | &radeon_encoder->native_mode, |
| 768 | sizeof(struct radeon_native_mode)); | 756 | sizeof(struct drm_display_mode)); |
| 769 | first = false; | 757 | first = false; |
| 770 | } else { | 758 | } else { |
| 771 | if (radeon_crtc->rmx_type != radeon_encoder->rmx_type) { | 759 | if (radeon_crtc->rmx_type != radeon_encoder->rmx_type) { |
| @@ -783,10 +771,10 @@ bool radeon_crtc_scaling_mode_fixup(struct drm_crtc *crtc, | |||
| 783 | if (radeon_crtc->rmx_type != RMX_OFF) { | 771 | if (radeon_crtc->rmx_type != RMX_OFF) { |
| 784 | fixed20_12 a, b; | 772 | fixed20_12 a, b; |
| 785 | a.full = rfixed_const(crtc->mode.vdisplay); | 773 | a.full = rfixed_const(crtc->mode.vdisplay); |
| 786 | b.full = rfixed_const(radeon_crtc->native_mode.panel_xres); | 774 | b.full = rfixed_const(radeon_crtc->native_mode.hdisplay); |
| 787 | radeon_crtc->vsc.full = rfixed_div(a, b); | 775 | radeon_crtc->vsc.full = rfixed_div(a, b); |
| 788 | a.full = rfixed_const(crtc->mode.hdisplay); | 776 | a.full = rfixed_const(crtc->mode.hdisplay); |
| 789 | b.full = rfixed_const(radeon_crtc->native_mode.panel_yres); | 777 | b.full = rfixed_const(radeon_crtc->native_mode.vdisplay); |
| 790 | radeon_crtc->hsc.full = rfixed_div(a, b); | 778 | radeon_crtc->hsc.full = rfixed_div(a, b); |
| 791 | } else { | 779 | } else { |
| 792 | radeon_crtc->vsc.full = rfixed_const(1); | 780 | radeon_crtc->vsc.full = rfixed_const(1); |
diff --git a/drivers/gpu/drm/radeon/radeon_encoders.c b/drivers/gpu/drm/radeon/radeon_encoders.c index a65ab1a0dad2..d42bc512d75a 100644 --- a/drivers/gpu/drm/radeon/radeon_encoders.c +++ b/drivers/gpu/drm/radeon/radeon_encoders.c | |||
| @@ -31,6 +31,10 @@ | |||
| 31 | 31 | ||
| 32 | extern int atom_debug; | 32 | extern int atom_debug; |
| 33 | 33 | ||
| 34 | /* evil but including atombios.h is much worse */ | ||
| 35 | bool radeon_atom_get_tv_timings(struct radeon_device *rdev, int index, | ||
| 36 | struct drm_display_mode *mode); | ||
| 37 | |||
| 34 | uint32_t | 38 | uint32_t |
| 35 | radeon_get_encoder_id(struct drm_device *dev, uint32_t supported_device, uint8_t dac) | 39 | radeon_get_encoder_id(struct drm_device *dev, uint32_t supported_device, uint8_t dac) |
| 36 | { | 40 | { |
| @@ -167,49 +171,17 @@ void radeon_rmx_mode_fixup(struct drm_encoder *encoder, | |||
| 167 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); | 171 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 168 | struct drm_device *dev = encoder->dev; | 172 | struct drm_device *dev = encoder->dev; |
| 169 | struct radeon_device *rdev = dev->dev_private; | 173 | struct radeon_device *rdev = dev->dev_private; |
| 170 | struct radeon_native_mode *native_mode = &radeon_encoder->native_mode; | 174 | struct drm_display_mode *native_mode = &radeon_encoder->native_mode; |
| 171 | 175 | ||
| 172 | if (mode->hdisplay < native_mode->panel_xres || | 176 | if (mode->hdisplay < native_mode->hdisplay || |
| 173 | mode->vdisplay < native_mode->panel_yres) { | 177 | mode->vdisplay < native_mode->vdisplay) { |
| 174 | if (ASIC_IS_AVIVO(rdev)) { | 178 | int mode_id = adjusted_mode->base.id; |
| 175 | adjusted_mode->hdisplay = native_mode->panel_xres; | 179 | *adjusted_mode = *native_mode; |
| 176 | adjusted_mode->vdisplay = native_mode->panel_yres; | 180 | if (!ASIC_IS_AVIVO(rdev)) { |
| 177 | adjusted_mode->htotal = native_mode->panel_xres + native_mode->hblank; | 181 | adjusted_mode->hdisplay = mode->hdisplay; |
| 178 | adjusted_mode->hsync_start = native_mode->panel_xres + native_mode->hoverplus; | 182 | adjusted_mode->vdisplay = mode->vdisplay; |
| 179 | adjusted_mode->hsync_end = adjusted_mode->hsync_start + native_mode->hsync_width; | ||
| 180 | adjusted_mode->vtotal = native_mode->panel_yres + native_mode->vblank; | ||
| 181 | adjusted_mode->vsync_start = native_mode->panel_yres + native_mode->voverplus; | ||
| 182 | adjusted_mode->vsync_end = adjusted_mode->vsync_start + native_mode->vsync_width; | ||
| 183 | /* update crtc values */ | ||
| 184 | drm_mode_set_crtcinfo(adjusted_mode, CRTC_INTERLACE_HALVE_V); | ||
| 185 | /* adjust crtc values */ | ||
| 186 | adjusted_mode->crtc_hdisplay = native_mode->panel_xres; | ||
| 187 | adjusted_mode->crtc_vdisplay = native_mode->panel_yres; | ||
| 188 | adjusted_mode->crtc_htotal = adjusted_mode->crtc_hdisplay + native_mode->hblank; | ||
| 189 | adjusted_mode->crtc_hsync_start = adjusted_mode->crtc_hdisplay + native_mode->hoverplus; | ||
| 190 | adjusted_mode->crtc_hsync_end = adjusted_mode->crtc_hsync_start + native_mode->hsync_width; | ||
| 191 | adjusted_mode->crtc_vtotal = adjusted_mode->crtc_vdisplay + native_mode->vblank; | ||
| 192 | adjusted_mode->crtc_vsync_start = adjusted_mode->crtc_vdisplay + native_mode->voverplus; | ||
| 193 | adjusted_mode->crtc_vsync_end = adjusted_mode->crtc_vsync_start + native_mode->vsync_width; | ||
| 194 | } else { | ||
| 195 | adjusted_mode->htotal = native_mode->panel_xres + native_mode->hblank; | ||
| 196 | adjusted_mode->hsync_start = native_mode->panel_xres + native_mode->hoverplus; | ||
| 197 | adjusted_mode->hsync_end = adjusted_mode->hsync_start + native_mode->hsync_width; | ||
| 198 | adjusted_mode->vtotal = native_mode->panel_yres + native_mode->vblank; | ||
| 199 | adjusted_mode->vsync_start = native_mode->panel_yres + native_mode->voverplus; | ||
| 200 | adjusted_mode->vsync_end = adjusted_mode->vsync_start + native_mode->vsync_width; | ||
| 201 | /* update crtc values */ | ||
| 202 | drm_mode_set_crtcinfo(adjusted_mode, CRTC_INTERLACE_HALVE_V); | ||
| 203 | /* adjust crtc values */ | ||
| 204 | adjusted_mode->crtc_htotal = adjusted_mode->crtc_hdisplay + native_mode->hblank; | ||
| 205 | adjusted_mode->crtc_hsync_start = adjusted_mode->crtc_hdisplay + native_mode->hoverplus; | ||
| 206 | adjusted_mode->crtc_hsync_end = adjusted_mode->crtc_hsync_start + native_mode->hsync_width; | ||
| 207 | adjusted_mode->crtc_vtotal = adjusted_mode->crtc_vdisplay + native_mode->vblank; | ||
| 208 | adjusted_mode->crtc_vsync_start = adjusted_mode->crtc_vdisplay + native_mode->voverplus; | ||
| 209 | adjusted_mode->crtc_vsync_end = adjusted_mode->crtc_vsync_start + native_mode->vsync_width; | ||
| 210 | } | 183 | } |
| 211 | adjusted_mode->flags = native_mode->flags; | 184 | adjusted_mode->base.id = mode_id; |
| 212 | adjusted_mode->clock = native_mode->dotclock; | ||
| 213 | } | 185 | } |
| 214 | } | 186 | } |
| 215 | 187 | ||
| @@ -219,7 +191,11 @@ static bool radeon_atom_mode_fixup(struct drm_encoder *encoder, | |||
| 219 | struct drm_display_mode *adjusted_mode) | 191 | struct drm_display_mode *adjusted_mode) |
| 220 | { | 192 | { |
| 221 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); | 193 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 194 | struct drm_device *dev = encoder->dev; | ||
| 195 | struct radeon_device *rdev = dev->dev_private; | ||
| 222 | 196 | ||
| 197 | /* set the active encoder to connector routing */ | ||
| 198 | radeon_encoder_set_active_device(encoder); | ||
| 223 | drm_mode_set_crtcinfo(adjusted_mode, 0); | 199 | drm_mode_set_crtcinfo(adjusted_mode, 0); |
| 224 | 200 | ||
| 225 | if (radeon_encoder->rmx_type != RMX_OFF) | 201 | if (radeon_encoder->rmx_type != RMX_OFF) |
| @@ -230,6 +206,18 @@ static bool radeon_atom_mode_fixup(struct drm_encoder *encoder, | |||
| 230 | && (mode->crtc_vsync_start < (mode->crtc_vdisplay + 2))) | 206 | && (mode->crtc_vsync_start < (mode->crtc_vdisplay + 2))) |
| 231 | adjusted_mode->crtc_vsync_start = adjusted_mode->crtc_vdisplay + 2; | 207 | adjusted_mode->crtc_vsync_start = adjusted_mode->crtc_vdisplay + 2; |
| 232 | 208 | ||
| 209 | if (radeon_encoder->active_device & (ATOM_DEVICE_TV_SUPPORT)) { | ||
| 210 | struct radeon_encoder_atom_dac *tv_dac = radeon_encoder->enc_priv; | ||
| 211 | if (tv_dac) { | ||
| 212 | if (tv_dac->tv_std == TV_STD_NTSC || | ||
| 213 | tv_dac->tv_std == TV_STD_NTSC_J || | ||
| 214 | tv_dac->tv_std == TV_STD_PAL_M) | ||
| 215 | radeon_atom_get_tv_timings(rdev, 0, adjusted_mode); | ||
| 216 | else | ||
| 217 | radeon_atom_get_tv_timings(rdev, 1, adjusted_mode); | ||
| 218 | } | ||
| 219 | } | ||
| 220 | |||
| 233 | return true; | 221 | return true; |
| 234 | } | 222 | } |
| 235 | 223 | ||
| @@ -461,7 +449,7 @@ atombios_digital_setup(struct drm_encoder *encoder, int action) | |||
| 461 | case 1: | 449 | case 1: |
| 462 | args.v1.ucMisc = 0; | 450 | args.v1.ucMisc = 0; |
| 463 | args.v1.ucAction = action; | 451 | args.v1.ucAction = action; |
| 464 | if (drm_detect_hdmi_monitor((struct edid *)connector->edid_blob_ptr)) | 452 | if (drm_detect_hdmi_monitor(radeon_connector->edid)) |
| 465 | args.v1.ucMisc |= PANEL_ENCODER_MISC_HDMI_TYPE; | 453 | args.v1.ucMisc |= PANEL_ENCODER_MISC_HDMI_TYPE; |
| 466 | args.v1.usPixelClock = cpu_to_le16(radeon_encoder->pixel_clock / 10); | 454 | args.v1.usPixelClock = cpu_to_le16(radeon_encoder->pixel_clock / 10); |
| 467 | if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) { | 455 | if (radeon_encoder->devices & (ATOM_DEVICE_LCD_SUPPORT)) { |
| @@ -486,7 +474,7 @@ atombios_digital_setup(struct drm_encoder *encoder, int action) | |||
| 486 | if (dig->coherent_mode) | 474 | if (dig->coherent_mode) |
| 487 | args.v2.ucMisc |= PANEL_ENCODER_MISC_COHERENT; | 475 | args.v2.ucMisc |= PANEL_ENCODER_MISC_COHERENT; |
| 488 | } | 476 | } |
| 489 | if (drm_detect_hdmi_monitor((struct edid *)connector->edid_blob_ptr)) | 477 | if (drm_detect_hdmi_monitor(radeon_connector->edid)) |
| 490 | args.v2.ucMisc |= PANEL_ENCODER_MISC_HDMI_TYPE; | 478 | args.v2.ucMisc |= PANEL_ENCODER_MISC_HDMI_TYPE; |
| 491 | args.v2.usPixelClock = cpu_to_le16(radeon_encoder->pixel_clock / 10); | 479 | args.v2.usPixelClock = cpu_to_le16(radeon_encoder->pixel_clock / 10); |
| 492 | args.v2.ucTruncate = 0; | 480 | args.v2.ucTruncate = 0; |
| @@ -544,7 +532,7 @@ atombios_get_encoder_mode(struct drm_encoder *encoder) | |||
| 544 | switch (connector->connector_type) { | 532 | switch (connector->connector_type) { |
| 545 | case DRM_MODE_CONNECTOR_DVII: | 533 | case DRM_MODE_CONNECTOR_DVII: |
| 546 | case DRM_MODE_CONNECTOR_HDMIB: /* HDMI-B is basically DL-DVI; analog works fine */ | 534 | case DRM_MODE_CONNECTOR_HDMIB: /* HDMI-B is basically DL-DVI; analog works fine */ |
| 547 | if (drm_detect_hdmi_monitor((struct edid *)connector->edid_blob_ptr)) | 535 | if (drm_detect_hdmi_monitor(radeon_connector->edid)) |
| 548 | return ATOM_ENCODER_MODE_HDMI; | 536 | return ATOM_ENCODER_MODE_HDMI; |
| 549 | else if (radeon_connector->use_digital) | 537 | else if (radeon_connector->use_digital) |
| 550 | return ATOM_ENCODER_MODE_DVI; | 538 | return ATOM_ENCODER_MODE_DVI; |
| @@ -554,7 +542,7 @@ atombios_get_encoder_mode(struct drm_encoder *encoder) | |||
| 554 | case DRM_MODE_CONNECTOR_DVID: | 542 | case DRM_MODE_CONNECTOR_DVID: |
| 555 | case DRM_MODE_CONNECTOR_HDMIA: | 543 | case DRM_MODE_CONNECTOR_HDMIA: |
| 556 | default: | 544 | default: |
| 557 | if (drm_detect_hdmi_monitor((struct edid *)connector->edid_blob_ptr)) | 545 | if (drm_detect_hdmi_monitor(radeon_connector->edid)) |
| 558 | return ATOM_ENCODER_MODE_HDMI; | 546 | return ATOM_ENCODER_MODE_HDMI; |
| 559 | else | 547 | else |
| 560 | return ATOM_ENCODER_MODE_DVI; | 548 | return ATOM_ENCODER_MODE_DVI; |
| @@ -566,7 +554,7 @@ atombios_get_encoder_mode(struct drm_encoder *encoder) | |||
| 566 | /*if (radeon_output->MonType == MT_DP) | 554 | /*if (radeon_output->MonType == MT_DP) |
| 567 | return ATOM_ENCODER_MODE_DP; | 555 | return ATOM_ENCODER_MODE_DP; |
| 568 | else*/ | 556 | else*/ |
| 569 | if (drm_detect_hdmi_monitor((struct edid *)connector->edid_blob_ptr)) | 557 | if (drm_detect_hdmi_monitor(radeon_connector->edid)) |
| 570 | return ATOM_ENCODER_MODE_HDMI; | 558 | return ATOM_ENCODER_MODE_HDMI; |
| 571 | else | 559 | else |
| 572 | return ATOM_ENCODER_MODE_DVI; | 560 | return ATOM_ENCODER_MODE_DVI; |
| @@ -734,14 +722,17 @@ atombios_dig_transmitter_setup(struct drm_encoder *encoder, int action) | |||
| 734 | atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev); | 722 | atom_parse_cmd_header(rdev->mode_info.atom_context, index, &frev, &crev); |
| 735 | 723 | ||
| 736 | args.v1.ucAction = action; | 724 | args.v1.ucAction = action; |
| 737 | 725 | if (action == ATOM_TRANSMITTER_ACTION_INIT) { | |
| 726 | args.v1.usInitInfo = radeon_connector->connector_object_id; | ||
| 727 | } else { | ||
| 728 | if (radeon_encoder->pixel_clock > 165000) | ||
| 729 | args.v1.usPixelClock = cpu_to_le16((radeon_encoder->pixel_clock / 2) / 10); | ||
| 730 | else | ||
| 731 | args.v1.usPixelClock = cpu_to_le16(radeon_encoder->pixel_clock / 10); | ||
| 732 | } | ||
| 738 | if (ASIC_IS_DCE32(rdev)) { | 733 | if (ASIC_IS_DCE32(rdev)) { |
| 739 | if (radeon_encoder->pixel_clock > 165000) { | 734 | if (radeon_encoder->pixel_clock > 165000) |
| 740 | args.v2.usPixelClock = cpu_to_le16((radeon_encoder->pixel_clock * 10 * 2) / 100); | 735 | args.v2.usPixelClock = cpu_to_le16((radeon_encoder->pixel_clock / 2) / 10); |
| 741 | args.v2.acConfig.fDualLinkConnector = 1; | ||
| 742 | } else { | ||
| 743 | args.v2.usPixelClock = cpu_to_le16((radeon_encoder->pixel_clock * 10 * 4) / 100); | ||
| 744 | } | ||
| 745 | if (dig->dig_block) | 736 | if (dig->dig_block) |
| 746 | args.v2.acConfig.ucEncoderSel = 1; | 737 | args.v2.acConfig.ucEncoderSel = 1; |
| 747 | 738 | ||
| @@ -766,7 +757,6 @@ atombios_dig_transmitter_setup(struct drm_encoder *encoder, int action) | |||
| 766 | } | 757 | } |
| 767 | } else { | 758 | } else { |
| 768 | args.v1.ucConfig = ATOM_TRANSMITTER_CONFIG_CLKSRC_PPLL; | 759 | args.v1.ucConfig = ATOM_TRANSMITTER_CONFIG_CLKSRC_PPLL; |
| 769 | args.v1.usPixelClock = cpu_to_le16((radeon_encoder->pixel_clock) / 10); | ||
| 770 | 760 | ||
| 771 | switch (radeon_encoder->encoder_id) { | 761 | switch (radeon_encoder->encoder_id) { |
| 772 | case ENCODER_OBJECT_ID_INTERNAL_UNIPHY: | 762 | case ENCODER_OBJECT_ID_INTERNAL_UNIPHY: |
| @@ -874,16 +864,9 @@ radeon_atom_encoder_dpms(struct drm_encoder *encoder, int mode) | |||
| 874 | DISPLAY_DEVICE_OUTPUT_CONTROL_PS_ALLOCATION args; | 864 | DISPLAY_DEVICE_OUTPUT_CONTROL_PS_ALLOCATION args; |
| 875 | int index = 0; | 865 | int index = 0; |
| 876 | bool is_dig = false; | 866 | bool is_dig = false; |
| 877 | int devices; | ||
| 878 | 867 | ||
| 879 | memset(&args, 0, sizeof(args)); | 868 | memset(&args, 0, sizeof(args)); |
| 880 | 869 | ||
| 881 | /* on DPMS off we have no idea if active device is meaningful */ | ||
| 882 | if (mode != DRM_MODE_DPMS_ON && !radeon_encoder->active_device) | ||
| 883 | devices = radeon_encoder->devices; | ||
| 884 | else | ||
| 885 | devices = radeon_encoder->active_device; | ||
| 886 | |||
| 887 | DRM_DEBUG("encoder dpms %d to mode %d, devices %08x, active_devices %08x\n", | 870 | DRM_DEBUG("encoder dpms %d to mode %d, devices %08x, active_devices %08x\n", |
| 888 | radeon_encoder->encoder_id, mode, radeon_encoder->devices, | 871 | radeon_encoder->encoder_id, mode, radeon_encoder->devices, |
| 889 | radeon_encoder->active_device); | 872 | radeon_encoder->active_device); |
| @@ -914,18 +897,18 @@ radeon_atom_encoder_dpms(struct drm_encoder *encoder, int mode) | |||
| 914 | break; | 897 | break; |
| 915 | case ENCODER_OBJECT_ID_INTERNAL_DAC1: | 898 | case ENCODER_OBJECT_ID_INTERNAL_DAC1: |
| 916 | case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC1: | 899 | case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC1: |
| 917 | if (devices & (ATOM_DEVICE_TV_SUPPORT)) | 900 | if (radeon_encoder->active_device & (ATOM_DEVICE_TV_SUPPORT)) |
| 918 | index = GetIndexIntoMasterTable(COMMAND, TV1OutputControl); | 901 | index = GetIndexIntoMasterTable(COMMAND, TV1OutputControl); |
| 919 | else if (devices & (ATOM_DEVICE_CV_SUPPORT)) | 902 | else if (radeon_encoder->active_device & (ATOM_DEVICE_CV_SUPPORT)) |
| 920 | index = GetIndexIntoMasterTable(COMMAND, CV1OutputControl); | 903 | index = GetIndexIntoMasterTable(COMMAND, CV1OutputControl); |
| 921 | else | 904 | else |
| 922 | index = GetIndexIntoMasterTable(COMMAND, DAC1OutputControl); | 905 | index = GetIndexIntoMasterTable(COMMAND, DAC1OutputControl); |
| 923 | break; | 906 | break; |
| 924 | case ENCODER_OBJECT_ID_INTERNAL_DAC2: | 907 | case ENCODER_OBJECT_ID_INTERNAL_DAC2: |
| 925 | case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC2: | 908 | case ENCODER_OBJECT_ID_INTERNAL_KLDSCP_DAC2: |
| 926 | if (devices & (ATOM_DEVICE_TV_SUPPORT)) | 909 | if (radeon_encoder->active_device & (ATOM_DEVICE_TV_SUPPORT)) |
| 927 | index = GetIndexIntoMasterTable(COMMAND, TV1OutputControl); | 910 | index = GetIndexIntoMasterTable(COMMAND, TV1OutputControl); |
| 928 | else if (devices & (ATOM_DEVICE_CV_SUPPORT)) | 911 | else if (radeon_encoder->active_device & (ATOM_DEVICE_CV_SUPPORT)) |
| 929 | index = GetIndexIntoMasterTable(COMMAND, CV1OutputControl); | 912 | index = GetIndexIntoMasterTable(COMMAND, CV1OutputControl); |
| 930 | else | 913 | else |
| 931 | index = GetIndexIntoMasterTable(COMMAND, DAC2OutputControl); | 914 | index = GetIndexIntoMasterTable(COMMAND, DAC2OutputControl); |
| @@ -1104,8 +1087,11 @@ atombios_apply_encoder_quirks(struct drm_encoder *encoder, | |||
| 1104 | } | 1087 | } |
| 1105 | 1088 | ||
| 1106 | /* set scaler clears this on some chips */ | 1089 | /* set scaler clears this on some chips */ |
| 1107 | if (ASIC_IS_AVIVO(rdev) && (mode->flags & DRM_MODE_FLAG_INTERLACE)) | 1090 | if (!(radeon_encoder->active_device & (ATOM_DEVICE_TV_SUPPORT))) { |
| 1108 | WREG32(AVIVO_D1MODE_DATA_FORMAT + radeon_crtc->crtc_offset, AVIVO_D1MODE_INTERLEAVE_EN); | 1091 | if (ASIC_IS_AVIVO(rdev) && (mode->flags & DRM_MODE_FLAG_INTERLACE)) |
| 1092 | WREG32(AVIVO_D1MODE_DATA_FORMAT + radeon_crtc->crtc_offset, | ||
| 1093 | AVIVO_D1MODE_INTERLEAVE_EN); | ||
| 1094 | } | ||
| 1109 | } | 1095 | } |
| 1110 | 1096 | ||
| 1111 | static void | 1097 | static void |
| @@ -1153,6 +1139,7 @@ radeon_atom_encoder_mode_set(struct drm_encoder *encoder, | |||
| 1153 | 1139 | ||
| 1154 | /* setup and enable the encoder and transmitter */ | 1140 | /* setup and enable the encoder and transmitter */ |
| 1155 | atombios_dig_encoder_setup(encoder, ATOM_ENABLE); | 1141 | atombios_dig_encoder_setup(encoder, ATOM_ENABLE); |
| 1142 | atombios_dig_transmitter_setup(encoder, ATOM_TRANSMITTER_ACTION_INIT); | ||
| 1156 | atombios_dig_transmitter_setup(encoder, ATOM_TRANSMITTER_ACTION_SETUP); | 1143 | atombios_dig_transmitter_setup(encoder, ATOM_TRANSMITTER_ACTION_SETUP); |
| 1157 | atombios_dig_transmitter_setup(encoder, ATOM_TRANSMITTER_ACTION_ENABLE); | 1144 | atombios_dig_transmitter_setup(encoder, ATOM_TRANSMITTER_ACTION_ENABLE); |
| 1158 | break; | 1145 | break; |
| @@ -1268,8 +1255,6 @@ static void radeon_atom_encoder_prepare(struct drm_encoder *encoder) | |||
| 1268 | { | 1255 | { |
| 1269 | radeon_atom_output_lock(encoder, true); | 1256 | radeon_atom_output_lock(encoder, true); |
| 1270 | radeon_atom_encoder_dpms(encoder, DRM_MODE_DPMS_OFF); | 1257 | radeon_atom_encoder_dpms(encoder, DRM_MODE_DPMS_OFF); |
| 1271 | |||
| 1272 | radeon_encoder_set_active_device(encoder); | ||
| 1273 | } | 1258 | } |
| 1274 | 1259 | ||
| 1275 | static void radeon_atom_encoder_commit(struct drm_encoder *encoder) | 1260 | static void radeon_atom_encoder_commit(struct drm_encoder *encoder) |
diff --git a/drivers/gpu/drm/radeon/radeon_gart.c b/drivers/gpu/drm/radeon/radeon_gart.c index a931af065dd4..a68d7566178c 100644 --- a/drivers/gpu/drm/radeon/radeon_gart.c +++ b/drivers/gpu/drm/radeon/radeon_gart.c | |||
| @@ -140,15 +140,15 @@ void radeon_gart_unbind(struct radeon_device *rdev, unsigned offset, | |||
| 140 | WARN(1, "trying to unbind memory to unitialized GART !\n"); | 140 | WARN(1, "trying to unbind memory to unitialized GART !\n"); |
| 141 | return; | 141 | return; |
| 142 | } | 142 | } |
| 143 | t = offset / 4096; | 143 | t = offset / RADEON_GPU_PAGE_SIZE; |
| 144 | p = t / (PAGE_SIZE / 4096); | 144 | p = t / (PAGE_SIZE / RADEON_GPU_PAGE_SIZE); |
| 145 | for (i = 0; i < pages; i++, p++) { | 145 | for (i = 0; i < pages; i++, p++) { |
| 146 | if (rdev->gart.pages[p]) { | 146 | if (rdev->gart.pages[p]) { |
| 147 | pci_unmap_page(rdev->pdev, rdev->gart.pages_addr[p], | 147 | pci_unmap_page(rdev->pdev, rdev->gart.pages_addr[p], |
| 148 | PAGE_SIZE, PCI_DMA_BIDIRECTIONAL); | 148 | PAGE_SIZE, PCI_DMA_BIDIRECTIONAL); |
| 149 | rdev->gart.pages[p] = NULL; | 149 | rdev->gart.pages[p] = NULL; |
| 150 | rdev->gart.pages_addr[p] = 0; | 150 | rdev->gart.pages_addr[p] = 0; |
| 151 | for (j = 0; j < (PAGE_SIZE / 4096); j++, t++) { | 151 | for (j = 0; j < (PAGE_SIZE / RADEON_GPU_PAGE_SIZE); j++, t++) { |
| 152 | radeon_gart_set_page(rdev, t, 0); | 152 | radeon_gart_set_page(rdev, t, 0); |
| 153 | } | 153 | } |
| 154 | } | 154 | } |
| @@ -169,8 +169,8 @@ int radeon_gart_bind(struct radeon_device *rdev, unsigned offset, | |||
| 169 | DRM_ERROR("trying to bind memory to unitialized GART !\n"); | 169 | DRM_ERROR("trying to bind memory to unitialized GART !\n"); |
| 170 | return -EINVAL; | 170 | return -EINVAL; |
| 171 | } | 171 | } |
| 172 | t = offset / 4096; | 172 | t = offset / RADEON_GPU_PAGE_SIZE; |
| 173 | p = t / (PAGE_SIZE / 4096); | 173 | p = t / (PAGE_SIZE / RADEON_GPU_PAGE_SIZE); |
| 174 | 174 | ||
| 175 | for (i = 0; i < pages; i++, p++) { | 175 | for (i = 0; i < pages; i++, p++) { |
| 176 | /* we need to support large memory configurations */ | 176 | /* we need to support large memory configurations */ |
| @@ -185,9 +185,9 @@ int radeon_gart_bind(struct radeon_device *rdev, unsigned offset, | |||
| 185 | } | 185 | } |
| 186 | rdev->gart.pages[p] = pagelist[i]; | 186 | rdev->gart.pages[p] = pagelist[i]; |
| 187 | page_base = rdev->gart.pages_addr[p]; | 187 | page_base = rdev->gart.pages_addr[p]; |
| 188 | for (j = 0; j < (PAGE_SIZE / 4096); j++, t++) { | 188 | for (j = 0; j < (PAGE_SIZE / RADEON_GPU_PAGE_SIZE); j++, t++) { |
| 189 | radeon_gart_set_page(rdev, t, page_base); | 189 | radeon_gart_set_page(rdev, t, page_base); |
| 190 | page_base += 4096; | 190 | page_base += RADEON_GPU_PAGE_SIZE; |
| 191 | } | 191 | } |
| 192 | } | 192 | } |
| 193 | mb(); | 193 | mb(); |
| @@ -200,14 +200,14 @@ int radeon_gart_init(struct radeon_device *rdev) | |||
| 200 | if (rdev->gart.pages) { | 200 | if (rdev->gart.pages) { |
| 201 | return 0; | 201 | return 0; |
| 202 | } | 202 | } |
| 203 | /* We need PAGE_SIZE >= 4096 */ | 203 | /* We need PAGE_SIZE >= RADEON_GPU_PAGE_SIZE */ |
| 204 | if (PAGE_SIZE < 4096) { | 204 | if (PAGE_SIZE < RADEON_GPU_PAGE_SIZE) { |
| 205 | DRM_ERROR("Page size is smaller than GPU page size!\n"); | 205 | DRM_ERROR("Page size is smaller than GPU page size!\n"); |
| 206 | return -EINVAL; | 206 | return -EINVAL; |
| 207 | } | 207 | } |
| 208 | /* Compute table size */ | 208 | /* Compute table size */ |
| 209 | rdev->gart.num_cpu_pages = rdev->mc.gtt_size / PAGE_SIZE; | 209 | rdev->gart.num_cpu_pages = rdev->mc.gtt_size / PAGE_SIZE; |
| 210 | rdev->gart.num_gpu_pages = rdev->mc.gtt_size / 4096; | 210 | rdev->gart.num_gpu_pages = rdev->mc.gtt_size / RADEON_GPU_PAGE_SIZE; |
| 211 | DRM_INFO("GART: num cpu pages %u, num gpu pages %u\n", | 211 | DRM_INFO("GART: num cpu pages %u, num gpu pages %u\n", |
| 212 | rdev->gart.num_cpu_pages, rdev->gart.num_gpu_pages); | 212 | rdev->gart.num_cpu_pages, rdev->gart.num_gpu_pages); |
| 213 | /* Allocate pages table */ | 213 | /* Allocate pages table */ |
diff --git a/drivers/gpu/drm/radeon/radeon_irq_kms.c b/drivers/gpu/drm/radeon/radeon_irq_kms.c index 8e0a8759e428..a0fe6232dcb6 100644 --- a/drivers/gpu/drm/radeon/radeon_irq_kms.c +++ b/drivers/gpu/drm/radeon/radeon_irq_kms.c | |||
| @@ -92,6 +92,13 @@ int radeon_irq_kms_init(struct radeon_device *rdev) | |||
| 92 | if (r) { | 92 | if (r) { |
| 93 | return r; | 93 | return r; |
| 94 | } | 94 | } |
| 95 | /* enable msi */ | ||
| 96 | rdev->msi_enabled = 0; | ||
| 97 | if (rdev->family >= CHIP_RV380) { | ||
| 98 | int ret = pci_enable_msi(rdev->pdev); | ||
| 99 | if (!ret) | ||
| 100 | rdev->msi_enabled = 1; | ||
| 101 | } | ||
| 95 | drm_irq_install(rdev->ddev); | 102 | drm_irq_install(rdev->ddev); |
| 96 | rdev->irq.installed = true; | 103 | rdev->irq.installed = true; |
| 97 | DRM_INFO("radeon: irq initialized.\n"); | 104 | DRM_INFO("radeon: irq initialized.\n"); |
| @@ -103,5 +110,7 @@ void radeon_irq_kms_fini(struct radeon_device *rdev) | |||
| 103 | if (rdev->irq.installed) { | 110 | if (rdev->irq.installed) { |
| 104 | rdev->irq.installed = false; | 111 | rdev->irq.installed = false; |
| 105 | drm_irq_uninstall(rdev->ddev); | 112 | drm_irq_uninstall(rdev->ddev); |
| 113 | if (rdev->msi_enabled) | ||
| 114 | pci_disable_msi(rdev->pdev); | ||
| 106 | } | 115 | } |
| 107 | } | 116 | } |
diff --git a/drivers/gpu/drm/radeon/radeon_legacy_crtc.c b/drivers/gpu/drm/radeon/radeon_legacy_crtc.c index 36410f85d705..8d0b7aa87fa4 100644 --- a/drivers/gpu/drm/radeon/radeon_legacy_crtc.c +++ b/drivers/gpu/drm/radeon/radeon_legacy_crtc.c | |||
| @@ -48,7 +48,7 @@ static void radeon_legacy_rmx_mode_set(struct drm_crtc *crtc, | |||
| 48 | u32 fp_horz_stretch, fp_vert_stretch, fp_horz_vert_active; | 48 | u32 fp_horz_stretch, fp_vert_stretch, fp_horz_vert_active; |
| 49 | u32 fp_h_sync_strt_wid, fp_crtc_h_total_disp; | 49 | u32 fp_h_sync_strt_wid, fp_crtc_h_total_disp; |
| 50 | u32 fp_v_sync_strt_wid, fp_crtc_v_total_disp; | 50 | u32 fp_v_sync_strt_wid, fp_crtc_v_total_disp; |
| 51 | struct radeon_native_mode *native_mode = &radeon_crtc->native_mode; | 51 | struct drm_display_mode *native_mode = &radeon_crtc->native_mode; |
| 52 | 52 | ||
| 53 | fp_vert_stretch = RREG32(RADEON_FP_VERT_STRETCH) & | 53 | fp_vert_stretch = RREG32(RADEON_FP_VERT_STRETCH) & |
| 54 | (RADEON_VERT_STRETCH_RESERVED | | 54 | (RADEON_VERT_STRETCH_RESERVED | |
| @@ -95,19 +95,19 @@ static void radeon_legacy_rmx_mode_set(struct drm_crtc *crtc, | |||
| 95 | 95 | ||
| 96 | fp_horz_vert_active = 0; | 96 | fp_horz_vert_active = 0; |
| 97 | 97 | ||
| 98 | if (native_mode->panel_xres == 0 || | 98 | if (native_mode->hdisplay == 0 || |
| 99 | native_mode->panel_yres == 0) { | 99 | native_mode->vdisplay == 0) { |
| 100 | hscale = false; | 100 | hscale = false; |
| 101 | vscale = false; | 101 | vscale = false; |
| 102 | } else { | 102 | } else { |
| 103 | if (xres > native_mode->panel_xres) | 103 | if (xres > native_mode->hdisplay) |
| 104 | xres = native_mode->panel_xres; | 104 | xres = native_mode->hdisplay; |
| 105 | if (yres > native_mode->panel_yres) | 105 | if (yres > native_mode->vdisplay) |
| 106 | yres = native_mode->panel_yres; | 106 | yres = native_mode->vdisplay; |
| 107 | 107 | ||
| 108 | if (xres == native_mode->panel_xres) | 108 | if (xres == native_mode->hdisplay) |
| 109 | hscale = false; | 109 | hscale = false; |
| 110 | if (yres == native_mode->panel_yres) | 110 | if (yres == native_mode->vdisplay) |
| 111 | vscale = false; | 111 | vscale = false; |
| 112 | } | 112 | } |
| 113 | 113 | ||
| @@ -119,11 +119,11 @@ static void radeon_legacy_rmx_mode_set(struct drm_crtc *crtc, | |||
| 119 | else { | 119 | else { |
| 120 | inc = (fp_horz_stretch & RADEON_HORZ_AUTO_RATIO_INC) ? 1 : 0; | 120 | inc = (fp_horz_stretch & RADEON_HORZ_AUTO_RATIO_INC) ? 1 : 0; |
| 121 | scale = ((xres + inc) * RADEON_HORZ_STRETCH_RATIO_MAX) | 121 | scale = ((xres + inc) * RADEON_HORZ_STRETCH_RATIO_MAX) |
| 122 | / native_mode->panel_xres + 1; | 122 | / native_mode->hdisplay + 1; |
| 123 | fp_horz_stretch |= (((scale) & RADEON_HORZ_STRETCH_RATIO_MASK) | | 123 | fp_horz_stretch |= (((scale) & RADEON_HORZ_STRETCH_RATIO_MASK) | |
| 124 | RADEON_HORZ_STRETCH_BLEND | | 124 | RADEON_HORZ_STRETCH_BLEND | |
| 125 | RADEON_HORZ_STRETCH_ENABLE | | 125 | RADEON_HORZ_STRETCH_ENABLE | |
| 126 | ((native_mode->panel_xres/8-1) << 16)); | 126 | ((native_mode->hdisplay/8-1) << 16)); |
| 127 | } | 127 | } |
| 128 | 128 | ||
| 129 | if (!vscale) | 129 | if (!vscale) |
| @@ -131,11 +131,11 @@ static void radeon_legacy_rmx_mode_set(struct drm_crtc *crtc, | |||
| 131 | else { | 131 | else { |
| 132 | inc = (fp_vert_stretch & RADEON_VERT_AUTO_RATIO_INC) ? 1 : 0; | 132 | inc = (fp_vert_stretch & RADEON_VERT_AUTO_RATIO_INC) ? 1 : 0; |
| 133 | scale = ((yres + inc) * RADEON_VERT_STRETCH_RATIO_MAX) | 133 | scale = ((yres + inc) * RADEON_VERT_STRETCH_RATIO_MAX) |
| 134 | / native_mode->panel_yres + 1; | 134 | / native_mode->vdisplay + 1; |
| 135 | fp_vert_stretch |= (((scale) & RADEON_VERT_STRETCH_RATIO_MASK) | | 135 | fp_vert_stretch |= (((scale) & RADEON_VERT_STRETCH_RATIO_MASK) | |
| 136 | RADEON_VERT_STRETCH_ENABLE | | 136 | RADEON_VERT_STRETCH_ENABLE | |
| 137 | RADEON_VERT_STRETCH_BLEND | | 137 | RADEON_VERT_STRETCH_BLEND | |
| 138 | ((native_mode->panel_yres-1) << 12)); | 138 | ((native_mode->vdisplay-1) << 12)); |
| 139 | } | 139 | } |
| 140 | break; | 140 | break; |
| 141 | case RMX_CENTER: | 141 | case RMX_CENTER: |
| @@ -175,8 +175,8 @@ static void radeon_legacy_rmx_mode_set(struct drm_crtc *crtc, | |||
| 175 | ? RADEON_CRTC_V_SYNC_POL | 175 | ? RADEON_CRTC_V_SYNC_POL |
| 176 | : 0))); | 176 | : 0))); |
| 177 | 177 | ||
| 178 | fp_horz_vert_active = (((native_mode->panel_yres) & 0xfff) | | 178 | fp_horz_vert_active = (((native_mode->vdisplay) & 0xfff) | |
| 179 | (((native_mode->panel_xres / 8) & 0x1ff) << 16)); | 179 | (((native_mode->hdisplay / 8) & 0x1ff) << 16)); |
| 180 | break; | 180 | break; |
| 181 | case RMX_OFF: | 181 | case RMX_OFF: |
| 182 | default: | 182 | default: |
| @@ -532,6 +532,10 @@ int radeon_crtc_set_base(struct drm_crtc *crtc, int x, int y, | |||
| 532 | radeon_fb = to_radeon_framebuffer(old_fb); | 532 | radeon_fb = to_radeon_framebuffer(old_fb); |
| 533 | radeon_gem_object_unpin(radeon_fb->obj); | 533 | radeon_gem_object_unpin(radeon_fb->obj); |
| 534 | } | 534 | } |
| 535 | |||
| 536 | /* Bytes per pixel may have changed */ | ||
| 537 | radeon_bandwidth_update(rdev); | ||
| 538 | |||
| 535 | return 0; | 539 | return 0; |
| 536 | } | 540 | } |
| 537 | 541 | ||
| @@ -664,6 +668,9 @@ static bool radeon_set_crtc_timing(struct drm_crtc *crtc, struct drm_display_mod | |||
| 664 | 668 | ||
| 665 | WREG32(RADEON_DISP2_MERGE_CNTL, disp2_merge_cntl); | 669 | WREG32(RADEON_DISP2_MERGE_CNTL, disp2_merge_cntl); |
| 666 | WREG32(RADEON_CRTC2_GEN_CNTL, crtc2_gen_cntl); | 670 | WREG32(RADEON_CRTC2_GEN_CNTL, crtc2_gen_cntl); |
| 671 | |||
| 672 | WREG32(RADEON_FP_H2_SYNC_STRT_WID, crtc_h_sync_strt_wid); | ||
| 673 | WREG32(RADEON_FP_V2_SYNC_STRT_WID, crtc_v_sync_strt_wid); | ||
| 667 | } else { | 674 | } else { |
| 668 | uint32_t crtc_gen_cntl; | 675 | uint32_t crtc_gen_cntl; |
| 669 | uint32_t crtc_ext_cntl; | 676 | uint32_t crtc_ext_cntl; |
| @@ -1015,14 +1022,11 @@ static int radeon_crtc_mode_set(struct drm_crtc *crtc, | |||
| 1015 | int x, int y, struct drm_framebuffer *old_fb) | 1022 | int x, int y, struct drm_framebuffer *old_fb) |
| 1016 | { | 1023 | { |
| 1017 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); | 1024 | struct radeon_crtc *radeon_crtc = to_radeon_crtc(crtc); |
| 1018 | struct drm_device *dev = crtc->dev; | ||
| 1019 | struct radeon_device *rdev = dev->dev_private; | ||
| 1020 | 1025 | ||
| 1021 | /* TODO TV */ | 1026 | /* TODO TV */ |
| 1022 | radeon_crtc_set_base(crtc, x, y, old_fb); | 1027 | radeon_crtc_set_base(crtc, x, y, old_fb); |
| 1023 | radeon_set_crtc_timing(crtc, adjusted_mode); | 1028 | radeon_set_crtc_timing(crtc, adjusted_mode); |
| 1024 | radeon_set_pll(crtc, adjusted_mode); | 1029 | radeon_set_pll(crtc, adjusted_mode); |
| 1025 | radeon_bandwidth_update(rdev); | ||
| 1026 | if (radeon_crtc->crtc_id == 0) { | 1030 | if (radeon_crtc->crtc_id == 0) { |
| 1027 | radeon_legacy_rmx_mode_set(crtc, mode, adjusted_mode); | 1031 | radeon_legacy_rmx_mode_set(crtc, mode, adjusted_mode); |
| 1028 | } else { | 1032 | } else { |
diff --git a/drivers/gpu/drm/radeon/radeon_legacy_encoders.c b/drivers/gpu/drm/radeon/radeon_legacy_encoders.c index 6ceb958fd194..00382122869b 100644 --- a/drivers/gpu/drm/radeon/radeon_legacy_encoders.c +++ b/drivers/gpu/drm/radeon/radeon_legacy_encoders.c | |||
| @@ -107,8 +107,6 @@ static void radeon_legacy_lvds_prepare(struct drm_encoder *encoder) | |||
| 107 | else | 107 | else |
| 108 | radeon_combios_output_lock(encoder, true); | 108 | radeon_combios_output_lock(encoder, true); |
| 109 | radeon_legacy_lvds_dpms(encoder, DRM_MODE_DPMS_OFF); | 109 | radeon_legacy_lvds_dpms(encoder, DRM_MODE_DPMS_OFF); |
| 110 | |||
| 111 | radeon_encoder_set_active_device(encoder); | ||
| 112 | } | 110 | } |
| 113 | 111 | ||
| 114 | static void radeon_legacy_lvds_commit(struct drm_encoder *encoder) | 112 | static void radeon_legacy_lvds_commit(struct drm_encoder *encoder) |
| @@ -192,6 +190,8 @@ static bool radeon_legacy_lvds_mode_fixup(struct drm_encoder *encoder, | |||
| 192 | { | 190 | { |
| 193 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); | 191 | struct radeon_encoder *radeon_encoder = to_radeon_encoder(encoder); |
| 194 | 192 | ||
| 193 | /* set the active encoder to connector routing */ | ||
| 194 | radeon_encoder_set_active_device(encoder); | ||
| 195 | drm_mode_set_crtcinfo(adjusted_mode, 0); | 195 | drm_mode_set_crtcinfo(adjusted_mode, 0); |
| 196 | 196 | ||
| 197 | if (radeon_encoder->rmx_type != RMX_OFF) | 197 | if (radeon_encoder->rmx_type != RMX_OFF) |
| @@ -218,7 +218,8 @@ static bool radeon_legacy_primary_dac_mode_fixup(struct drm_encoder *encoder, | |||
| 218 | struct drm_display_mode *mode, | 218 | struct drm_display_mode *mode, |
| 219 | struct drm_display_mode *adjusted_mode) | 219 | struct drm_display_mode *adjusted_mode) |
| 220 | { | 220 | { |
| 221 | 221 | /* set the active encoder to connector routing */ | |
| 222 | radeon_encoder_set_active_device(encoder); | ||
| 222 | drm_mode_set_crtcinfo(adjusted_mode, 0); | 223 | drm_mode_set_crtcinfo(adjusted_mode, 0); |
| 223 | 224 | ||
| 224 | return true; | 225 | return true; |
| @@ -272,7 +273,6 @@ static void radeon_legacy_primary_dac_prepare(struct drm_encoder *encoder) | |||
| 272 | else | 273 | else |
| 273 | radeon_combios_output_lock(encoder, true); | 274 | radeon_combios_output_lock(encoder, true); |
| 274 | radeon_legacy_primary_dac_dpms(encoder, DRM_MODE_DPMS_OFF); | 275 | radeon_legacy_primary_dac_dpms(encoder, DRM_MODE_DPMS_OFF); |
| 275 | radeon_encoder_set_active_device(encoder); | ||
| 276 | } | 276 | } |
| 277 | 277 | ||
| 278 | static void radeon_legacy_primary_dac_commit(struct drm_encoder *encoder) | 278 | static void radeon_legacy_primary_dac_commit(struct drm_encoder *encoder) |
| @@ -468,7 +468,6 @@ static void radeon_legacy_tmds_int_prepare(struct drm_encoder *encoder) | |||
| 468 | else | 468 | else |
| 469 | radeon_combios_output_lock(encoder, true); | 469 | radeon_combios_output_lock(encoder, true); |
| 470 | radeon_legacy_tmds_int_dpms(encoder, DRM_MODE_DPMS_OFF); | 470 | radeon_legacy_tmds_int_dpms(encoder, DRM_MODE_DPMS_OFF); |
| 471 | radeon_encoder_set_active_device(encoder); | ||
| 472 | } | 471 | } |
| 473 | 472 | ||
| 474 | static void radeon_legacy_tmds_int_commit(struct drm_encoder *encoder) | 473 | static void radeon_legacy_tmds_int_commit(struct drm_encoder *encoder) |
| @@ -543,6 +542,14 @@ static void radeon_legacy_tmds_int_mode_set(struct drm_encoder *encoder, | |||
| 543 | 542 | ||
| 544 | fp_gen_cntl &= ~(RADEON_FP_FPON | RADEON_FP_TMDS_EN); | 543 | fp_gen_cntl &= ~(RADEON_FP_FPON | RADEON_FP_TMDS_EN); |
| 545 | 544 | ||
| 545 | fp_gen_cntl &= ~(RADEON_FP_RMX_HVSYNC_CONTROL_EN | | ||
| 546 | RADEON_FP_DFP_SYNC_SEL | | ||
| 547 | RADEON_FP_CRT_SYNC_SEL | | ||
| 548 | RADEON_FP_CRTC_LOCK_8DOT | | ||
| 549 | RADEON_FP_USE_SHADOW_EN | | ||
| 550 | RADEON_FP_CRTC_USE_SHADOW_VEND | | ||
| 551 | RADEON_FP_CRT_SYNC_ALT); | ||
| 552 | |||
| 546 | if (1) /* FIXME rgbBits == 8 */ | 553 | if (1) /* FIXME rgbBits == 8 */ |
| 547 | fp_gen_cntl |= RADEON_FP_PANEL_FORMAT; /* 24 bit format */ | 554 | fp_gen_cntl |= RADEON_FP_PANEL_FORMAT; /* 24 bit format */ |
| 548 | else | 555 | else |
| @@ -556,7 +563,7 @@ static void radeon_legacy_tmds_int_mode_set(struct drm_encoder *encoder, | |||
| 556 | else | 563 | else |
| 557 | fp_gen_cntl |= R200_FP_SOURCE_SEL_CRTC1; | 564 | fp_gen_cntl |= R200_FP_SOURCE_SEL_CRTC1; |
| 558 | } else | 565 | } else |
| 559 | fp_gen_cntl |= RADEON_FP_SEL_CRTC1; | 566 | fp_gen_cntl &= ~RADEON_FP_SEL_CRTC2; |
| 560 | } else { | 567 | } else { |
| 561 | if (ASIC_IS_R300(rdev) || rdev->family == CHIP_R200) { | 568 | if (ASIC_IS_R300(rdev) || rdev->family == CHIP_R200) { |
| 562 | fp_gen_cntl &= ~R200_FP_SOURCE_SEL_MASK; | 569 | fp_gen_cntl &= ~R200_FP_SOURCE_SEL_MASK; |
| @@ -593,7 +600,8 @@ static bool radeon_legacy_tmds_ext_mode_fixup(struct drm_encoder *encoder, | |||
| 593 | struct drm_display_mode *mode, | 600 | struct drm_display_mode *mode, |
| 594 | struct drm_display_mode *adjusted_mode) | 601 | struct drm_display_mode *adjusted_mode) |
| 595 | { | 602 | { |
| 596 | 603 | /* set the active encoder to connector routing */ | |
| 604 | radeon_encoder_set_active_device(encoder); | ||
| 597 | drm_mode_set_crtcinfo(adjusted_mode, 0); | 605 | drm_mode_set_crtcinfo(adjusted_mode, 0); |
| 598 | 606 | ||
| 599 | return true; | 607 | return true; |
| @@ -636,7 +644,6 @@ static void radeon_legacy_tmds_ext_prepare(struct drm_encoder *encoder) | |||
| 636 | else | 644 | else |
| 637 | radeon_combios_output_lock(encoder, true); | 645 | radeon_combios_output_lock(encoder, true); |
| 638 | radeon_legacy_tmds_ext_dpms(encoder, DRM_MODE_DPMS_OFF); | 646 | radeon_legacy_tmds_ext_dpms(encoder, DRM_MODE_DPMS_OFF); |
| 639 | radeon_encoder_set_active_device(encoder); | ||
| 640 | } | 647 | } |
| 641 | 648 | ||
| 642 | static void radeon_legacy_tmds_ext_commit(struct drm_encoder *encoder) | 649 | static void radeon_legacy_tmds_ext_commit(struct drm_encoder *encoder) |
| @@ -735,7 +742,8 @@ static bool radeon_legacy_tv_dac_mode_fixup(struct drm_encoder *encoder, | |||
| 735 | struct drm_display_mode *mode, | 742 | struct drm_display_mode *mode, |
| 736 | struct drm_display_mode *adjusted_mode) | 743 | struct drm_display_mode *adjusted_mode) |
| 737 | { | 744 | { |
| 738 | 745 | /* set the active encoder to connector routing */ | |
| 746 | radeon_encoder_set_active_device(encoder); | ||
| 739 | drm_mode_set_crtcinfo(adjusted_mode, 0); | 747 | drm_mode_set_crtcinfo(adjusted_mode, 0); |
| 740 | 748 | ||
| 741 | return true; | 749 | return true; |
| @@ -839,7 +847,6 @@ static void radeon_legacy_tv_dac_prepare(struct drm_encoder *encoder) | |||
| 839 | else | 847 | else |
| 840 | radeon_combios_output_lock(encoder, true); | 848 | radeon_combios_output_lock(encoder, true); |
| 841 | radeon_legacy_tv_dac_dpms(encoder, DRM_MODE_DPMS_OFF); | 849 | radeon_legacy_tv_dac_dpms(encoder, DRM_MODE_DPMS_OFF); |
| 842 | radeon_encoder_set_active_device(encoder); | ||
| 843 | } | 850 | } |
| 844 | 851 | ||
| 845 | static void radeon_legacy_tv_dac_commit(struct drm_encoder *encoder) | 852 | static void radeon_legacy_tv_dac_commit(struct drm_encoder *encoder) |
diff --git a/drivers/gpu/drm/radeon/radeon_mode.h b/drivers/gpu/drm/radeon/radeon_mode.h index e61226817ccf..ace726aa0d76 100644 --- a/drivers/gpu/drm/radeon/radeon_mode.h +++ b/drivers/gpu/drm/radeon/radeon_mode.h | |||
| @@ -172,6 +172,7 @@ enum radeon_connector_table { | |||
| 172 | 172 | ||
| 173 | struct radeon_mode_info { | 173 | struct radeon_mode_info { |
| 174 | struct atom_context *atom_context; | 174 | struct atom_context *atom_context; |
| 175 | struct card_info *atom_card_info; | ||
| 175 | enum radeon_connector_table connector_table; | 176 | enum radeon_connector_table connector_table; |
| 176 | bool mode_config_initialized; | 177 | bool mode_config_initialized; |
| 177 | struct radeon_crtc *crtcs[2]; | 178 | struct radeon_crtc *crtcs[2]; |
| @@ -186,17 +187,6 @@ struct radeon_mode_info { | |||
| 186 | 187 | ||
| 187 | }; | 188 | }; |
| 188 | 189 | ||
| 189 | struct radeon_native_mode { | ||
| 190 | /* preferred mode */ | ||
| 191 | uint32_t panel_xres, panel_yres; | ||
| 192 | uint32_t hoverplus, hsync_width; | ||
| 193 | uint32_t hblank; | ||
| 194 | uint32_t voverplus, vsync_width; | ||
| 195 | uint32_t vblank; | ||
| 196 | uint32_t dotclock; | ||
| 197 | uint32_t flags; | ||
| 198 | }; | ||
| 199 | |||
| 200 | #define MAX_H_CODE_TIMING_LEN 32 | 190 | #define MAX_H_CODE_TIMING_LEN 32 |
| 201 | #define MAX_V_CODE_TIMING_LEN 32 | 191 | #define MAX_V_CODE_TIMING_LEN 32 |
| 202 | 192 | ||
| @@ -228,7 +218,7 @@ struct radeon_crtc { | |||
| 228 | enum radeon_rmx_type rmx_type; | 218 | enum radeon_rmx_type rmx_type; |
| 229 | fixed20_12 vsc; | 219 | fixed20_12 vsc; |
| 230 | fixed20_12 hsc; | 220 | fixed20_12 hsc; |
| 231 | struct radeon_native_mode native_mode; | 221 | struct drm_display_mode native_mode; |
| 232 | }; | 222 | }; |
| 233 | 223 | ||
| 234 | struct radeon_encoder_primary_dac { | 224 | struct radeon_encoder_primary_dac { |
| @@ -248,7 +238,7 @@ struct radeon_encoder_lvds { | |||
| 248 | bool use_bios_dividers; | 238 | bool use_bios_dividers; |
| 249 | uint32_t lvds_gen_cntl; | 239 | uint32_t lvds_gen_cntl; |
| 250 | /* panel mode */ | 240 | /* panel mode */ |
| 251 | struct radeon_native_mode native_mode; | 241 | struct drm_display_mode native_mode; |
| 252 | }; | 242 | }; |
| 253 | 243 | ||
| 254 | struct radeon_encoder_tv_dac { | 244 | struct radeon_encoder_tv_dac { |
| @@ -271,6 +261,16 @@ struct radeon_encoder_int_tmds { | |||
| 271 | struct radeon_tmds_pll tmds_pll[4]; | 261 | struct radeon_tmds_pll tmds_pll[4]; |
| 272 | }; | 262 | }; |
| 273 | 263 | ||
| 264 | /* spread spectrum */ | ||
| 265 | struct radeon_atom_ss { | ||
| 266 | uint16_t percentage; | ||
| 267 | uint8_t type; | ||
| 268 | uint8_t step; | ||
| 269 | uint8_t delay; | ||
| 270 | uint8_t range; | ||
| 271 | uint8_t refdiv; | ||
| 272 | }; | ||
| 273 | |||
| 274 | struct radeon_encoder_atom_dig { | 274 | struct radeon_encoder_atom_dig { |
| 275 | /* atom dig */ | 275 | /* atom dig */ |
| 276 | bool coherent_mode; | 276 | bool coherent_mode; |
| @@ -278,8 +278,9 @@ struct radeon_encoder_atom_dig { | |||
| 278 | /* atom lvds */ | 278 | /* atom lvds */ |
| 279 | uint32_t lvds_misc; | 279 | uint32_t lvds_misc; |
| 280 | uint16_t panel_pwr_delay; | 280 | uint16_t panel_pwr_delay; |
| 281 | struct radeon_atom_ss *ss; | ||
| 281 | /* panel mode */ | 282 | /* panel mode */ |
| 282 | struct radeon_native_mode native_mode; | 283 | struct drm_display_mode native_mode; |
| 283 | }; | 284 | }; |
| 284 | 285 | ||
| 285 | struct radeon_encoder_atom_dac { | 286 | struct radeon_encoder_atom_dac { |
| @@ -294,7 +295,7 @@ struct radeon_encoder { | |||
| 294 | uint32_t flags; | 295 | uint32_t flags; |
| 295 | uint32_t pixel_clock; | 296 | uint32_t pixel_clock; |
| 296 | enum radeon_rmx_type rmx_type; | 297 | enum radeon_rmx_type rmx_type; |
| 297 | struct radeon_native_mode native_mode; | 298 | struct drm_display_mode native_mode; |
| 298 | void *enc_priv; | 299 | void *enc_priv; |
| 299 | }; | 300 | }; |
| 300 | 301 | ||
| @@ -308,12 +309,15 @@ struct radeon_connector { | |||
| 308 | uint32_t connector_id; | 309 | uint32_t connector_id; |
| 309 | uint32_t devices; | 310 | uint32_t devices; |
| 310 | struct radeon_i2c_chan *ddc_bus; | 311 | struct radeon_i2c_chan *ddc_bus; |
| 312 | /* some systems have a an hdmi and vga port with a shared ddc line */ | ||
| 313 | bool shared_ddc; | ||
| 311 | bool use_digital; | 314 | bool use_digital; |
| 312 | /* we need to mind the EDID between detect | 315 | /* we need to mind the EDID between detect |
| 313 | and get modes due to analog/digital/tvencoder */ | 316 | and get modes due to analog/digital/tvencoder */ |
| 314 | struct edid *edid; | 317 | struct edid *edid; |
| 315 | void *con_priv; | 318 | void *con_priv; |
| 316 | bool dac_load_detect; | 319 | bool dac_load_detect; |
| 320 | uint16_t connector_object_id; | ||
| 317 | }; | 321 | }; |
| 318 | 322 | ||
| 319 | struct radeon_framebuffer { | 323 | struct radeon_framebuffer { |
diff --git a/drivers/gpu/drm/radeon/radeon_pm.c b/drivers/gpu/drm/radeon/radeon_pm.c new file mode 100644 index 000000000000..46146c6a2a06 --- /dev/null +++ b/drivers/gpu/drm/radeon/radeon_pm.c | |||
| @@ -0,0 +1,65 @@ | |||
| 1 | /* | ||
| 2 | * Permission is hereby granted, free of charge, to any person obtaining a | ||
| 3 | * copy of this software and associated documentation files (the "Software"), | ||
| 4 | * to deal in the Software without restriction, including without limitation | ||
| 5 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
| 6 | * and/or sell copies of the Software, and to permit persons to whom the | ||
| 7 | * Software is furnished to do so, subject to the following conditions: | ||
| 8 | * | ||
| 9 | * The above copyright notice and this permission notice shall be included in | ||
| 10 | * all copies or substantial portions of the Software. | ||
| 11 | * | ||
| 12 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| 13 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| 14 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
| 15 | * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR | ||
| 16 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | ||
| 17 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | ||
| 18 | * OTHER DEALINGS IN THE SOFTWARE. | ||
| 19 | * | ||
| 20 | * Authors: Rafał Miłecki <zajec5@gmail.com> | ||
| 21 | */ | ||
| 22 | #include "drmP.h" | ||
| 23 | #include "radeon.h" | ||
| 24 | |||
| 25 | int radeon_debugfs_pm_init(struct radeon_device *rdev); | ||
| 26 | |||
| 27 | int radeon_pm_init(struct radeon_device *rdev) | ||
| 28 | { | ||
| 29 | if (radeon_debugfs_pm_init(rdev)) { | ||
| 30 | DRM_ERROR("Failed to register debugfs file for CP !\n"); | ||
| 31 | } | ||
| 32 | |||
| 33 | return 0; | ||
| 34 | } | ||
| 35 | |||
| 36 | /* | ||
| 37 | * Debugfs info | ||
| 38 | */ | ||
| 39 | #if defined(CONFIG_DEBUG_FS) | ||
| 40 | |||
| 41 | static int radeon_debugfs_pm_info(struct seq_file *m, void *data) | ||
| 42 | { | ||
| 43 | struct drm_info_node *node = (struct drm_info_node *) m->private; | ||
| 44 | struct drm_device *dev = node->minor->dev; | ||
| 45 | struct radeon_device *rdev = dev->dev_private; | ||
| 46 | |||
| 47 | seq_printf(m, "engine clock: %u0 Hz\n", radeon_get_engine_clock(rdev)); | ||
| 48 | seq_printf(m, "memory clock: %u0 Hz\n", radeon_get_memory_clock(rdev)); | ||
| 49 | |||
| 50 | return 0; | ||
| 51 | } | ||
| 52 | |||
| 53 | static struct drm_info_list radeon_pm_info_list[] = { | ||
| 54 | {"radeon_pm_info", radeon_debugfs_pm_info, 0, NULL}, | ||
| 55 | }; | ||
| 56 | #endif | ||
| 57 | |||
| 58 | int radeon_debugfs_pm_init(struct radeon_device *rdev) | ||
| 59 | { | ||
| 60 | #if defined(CONFIG_DEBUG_FS) | ||
| 61 | return radeon_debugfs_add_files(rdev, radeon_pm_info_list, ARRAY_SIZE(radeon_pm_info_list)); | ||
| 62 | #else | ||
| 63 | return 0; | ||
| 64 | #endif | ||
| 65 | } | ||
diff --git a/drivers/gpu/drm/radeon/radeon_reg.h b/drivers/gpu/drm/radeon/radeon_reg.h index bfa1ab9c93e1..29ab75903ec1 100644 --- a/drivers/gpu/drm/radeon/radeon_reg.h +++ b/drivers/gpu/drm/radeon/radeon_reg.h | |||
| @@ -290,6 +290,8 @@ | |||
| 290 | #define RADEON_BUS_CNTL 0x0030 | 290 | #define RADEON_BUS_CNTL 0x0030 |
| 291 | # define RADEON_BUS_MASTER_DIS (1 << 6) | 291 | # define RADEON_BUS_MASTER_DIS (1 << 6) |
| 292 | # define RADEON_BUS_BIOS_DIS_ROM (1 << 12) | 292 | # define RADEON_BUS_BIOS_DIS_ROM (1 << 12) |
| 293 | # define RS600_BUS_MASTER_DIS (1 << 14) | ||
| 294 | # define RS600_MSI_REARM (1 << 20) /* rs600/rs690/rs740 */ | ||
| 293 | # define RADEON_BUS_RD_DISCARD_EN (1 << 24) | 295 | # define RADEON_BUS_RD_DISCARD_EN (1 << 24) |
| 294 | # define RADEON_BUS_RD_ABORT_EN (1 << 25) | 296 | # define RADEON_BUS_RD_ABORT_EN (1 << 25) |
| 295 | # define RADEON_BUS_MSTR_DISCONNECT_EN (1 << 28) | 297 | # define RADEON_BUS_MSTR_DISCONNECT_EN (1 << 28) |
| @@ -297,6 +299,9 @@ | |||
| 297 | # define RADEON_BUS_READ_BURST (1 << 30) | 299 | # define RADEON_BUS_READ_BURST (1 << 30) |
| 298 | #define RADEON_BUS_CNTL1 0x0034 | 300 | #define RADEON_BUS_CNTL1 0x0034 |
| 299 | # define RADEON_BUS_WAIT_ON_LOCK_EN (1 << 4) | 301 | # define RADEON_BUS_WAIT_ON_LOCK_EN (1 << 4) |
| 302 | /* rv370/rv380, rv410, r423/r430/r480, r5xx */ | ||
| 303 | #define RADEON_MSI_REARM_EN 0x0160 | ||
| 304 | # define RV370_MSI_REARM_EN (1 << 0) | ||
| 300 | 305 | ||
| 301 | /* #define RADEON_PCIE_INDEX 0x0030 */ | 306 | /* #define RADEON_PCIE_INDEX 0x0030 */ |
| 302 | /* #define RADEON_PCIE_DATA 0x0034 */ | 307 | /* #define RADEON_PCIE_DATA 0x0034 */ |
| @@ -3311,6 +3316,7 @@ | |||
| 3311 | #define RADEON_AIC_CNTL 0x01d0 | 3316 | #define RADEON_AIC_CNTL 0x01d0 |
| 3312 | # define RADEON_PCIGART_TRANSLATE_EN (1 << 0) | 3317 | # define RADEON_PCIGART_TRANSLATE_EN (1 << 0) |
| 3313 | # define RADEON_DIS_OUT_OF_PCI_GART_ACCESS (1 << 1) | 3318 | # define RADEON_DIS_OUT_OF_PCI_GART_ACCESS (1 << 1) |
| 3319 | # define RS400_MSI_REARM (1 << 3) /* rs400/rs480 */ | ||
| 3314 | #define RADEON_AIC_LO_ADDR 0x01dc | 3320 | #define RADEON_AIC_LO_ADDR 0x01dc |
| 3315 | #define RADEON_AIC_PT_BASE 0x01d8 | 3321 | #define RADEON_AIC_PT_BASE 0x01d8 |
| 3316 | #define RADEON_AIC_HI_ADDR 0x01e0 | 3322 | #define RADEON_AIC_HI_ADDR 0x01e0 |
diff --git a/drivers/gpu/drm/radeon/radeon_test.c b/drivers/gpu/drm/radeon/radeon_test.c index 03c33cf4e14c..f8a465d9a1cf 100644 --- a/drivers/gpu/drm/radeon/radeon_test.c +++ b/drivers/gpu/drm/radeon/radeon_test.c | |||
| @@ -42,7 +42,7 @@ void radeon_test_moves(struct radeon_device *rdev) | |||
| 42 | /* Number of tests = | 42 | /* Number of tests = |
| 43 | * (Total GTT - IB pool - writeback page - ring buffer) / test size | 43 | * (Total GTT - IB pool - writeback page - ring buffer) / test size |
| 44 | */ | 44 | */ |
| 45 | n = (rdev->mc.gtt_size - RADEON_IB_POOL_SIZE*64*1024 - 4096 - | 45 | n = (rdev->mc.gtt_size - RADEON_IB_POOL_SIZE*64*1024 - RADEON_GPU_PAGE_SIZE - |
| 46 | rdev->cp.ring_size) / size; | 46 | rdev->cp.ring_size) / size; |
| 47 | 47 | ||
| 48 | gtt_obj = kzalloc(n * sizeof(*gtt_obj), GFP_KERNEL); | 48 | gtt_obj = kzalloc(n * sizeof(*gtt_obj), GFP_KERNEL); |
| @@ -102,7 +102,7 @@ void radeon_test_moves(struct radeon_device *rdev) | |||
| 102 | goto out_cleanup; | 102 | goto out_cleanup; |
| 103 | } | 103 | } |
| 104 | 104 | ||
| 105 | r = radeon_copy(rdev, gtt_addr, vram_addr, size / 4096, fence); | 105 | r = radeon_copy(rdev, gtt_addr, vram_addr, size / RADEON_GPU_PAGE_SIZE, fence); |
| 106 | if (r) { | 106 | if (r) { |
| 107 | DRM_ERROR("Failed GTT->VRAM copy %d\n", i); | 107 | DRM_ERROR("Failed GTT->VRAM copy %d\n", i); |
| 108 | goto out_cleanup; | 108 | goto out_cleanup; |
| @@ -145,7 +145,7 @@ void radeon_test_moves(struct radeon_device *rdev) | |||
| 145 | goto out_cleanup; | 145 | goto out_cleanup; |
| 146 | } | 146 | } |
| 147 | 147 | ||
| 148 | r = radeon_copy(rdev, vram_addr, gtt_addr, size / 4096, fence); | 148 | r = radeon_copy(rdev, vram_addr, gtt_addr, size / RADEON_GPU_PAGE_SIZE, fence); |
| 149 | if (r) { | 149 | if (r) { |
| 150 | DRM_ERROR("Failed VRAM->GTT copy %d\n", i); | 150 | DRM_ERROR("Failed VRAM->GTT copy %d\n", i); |
| 151 | goto out_cleanup; | 151 | goto out_cleanup; |
diff --git a/drivers/gpu/drm/radeon/radeon_ttm.c b/drivers/gpu/drm/radeon/radeon_ttm.c index 765bd184b6fc..1381e06d6af3 100644 --- a/drivers/gpu/drm/radeon/radeon_ttm.c +++ b/drivers/gpu/drm/radeon/radeon_ttm.c | |||
| @@ -295,6 +295,12 @@ static int radeon_move_vram_ram(struct ttm_buffer_object *bo, | |||
| 295 | if (unlikely(r)) { | 295 | if (unlikely(r)) { |
| 296 | return r; | 296 | return r; |
| 297 | } | 297 | } |
| 298 | |||
| 299 | r = ttm_tt_set_placement_caching(bo->ttm, tmp_mem.placement); | ||
| 300 | if (unlikely(r)) { | ||
| 301 | goto out_cleanup; | ||
| 302 | } | ||
| 303 | |||
| 298 | r = ttm_tt_bind(bo->ttm, &tmp_mem); | 304 | r = ttm_tt_bind(bo->ttm, &tmp_mem); |
| 299 | if (unlikely(r)) { | 305 | if (unlikely(r)) { |
| 300 | goto out_cleanup; | 306 | goto out_cleanup; |
diff --git a/drivers/gpu/drm/radeon/rs400.c b/drivers/gpu/drm/radeon/rs400.c index a769c296f6a6..ca037160a582 100644 --- a/drivers/gpu/drm/radeon/rs400.c +++ b/drivers/gpu/drm/radeon/rs400.c | |||
| @@ -418,6 +418,8 @@ int rs400_resume(struct radeon_device *rdev) | |||
| 418 | rs400_gart_disable(rdev); | 418 | rs400_gart_disable(rdev); |
| 419 | /* Resume clock before doing reset */ | 419 | /* Resume clock before doing reset */ |
| 420 | r300_clock_startup(rdev); | 420 | r300_clock_startup(rdev); |
| 421 | /* setup MC before calling post tables */ | ||
| 422 | rs400_mc_program(rdev); | ||
| 421 | /* Reset gpu before posting otherwise ATOM will enter infinite loop */ | 423 | /* Reset gpu before posting otherwise ATOM will enter infinite loop */ |
| 422 | if (radeon_gpu_reset(rdev)) { | 424 | if (radeon_gpu_reset(rdev)) { |
| 423 | dev_warn(rdev->dev, "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n", | 425 | dev_warn(rdev->dev, "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n", |
diff --git a/drivers/gpu/drm/radeon/rs600.c b/drivers/gpu/drm/radeon/rs600.c index 10dfa78762da..5f117cd8736a 100644 --- a/drivers/gpu/drm/radeon/rs600.c +++ b/drivers/gpu/drm/radeon/rs600.c | |||
| @@ -242,7 +242,7 @@ void rs600_irq_disable(struct radeon_device *rdev) | |||
| 242 | 242 | ||
| 243 | int rs600_irq_process(struct radeon_device *rdev) | 243 | int rs600_irq_process(struct radeon_device *rdev) |
| 244 | { | 244 | { |
| 245 | uint32_t status; | 245 | uint32_t status, msi_rearm; |
| 246 | uint32_t r500_disp_int; | 246 | uint32_t r500_disp_int; |
| 247 | 247 | ||
| 248 | status = rs600_irq_ack(rdev, &r500_disp_int); | 248 | status = rs600_irq_ack(rdev, &r500_disp_int); |
| @@ -260,6 +260,22 @@ int rs600_irq_process(struct radeon_device *rdev) | |||
| 260 | drm_handle_vblank(rdev->ddev, 1); | 260 | drm_handle_vblank(rdev->ddev, 1); |
| 261 | status = rs600_irq_ack(rdev, &r500_disp_int); | 261 | status = rs600_irq_ack(rdev, &r500_disp_int); |
| 262 | } | 262 | } |
| 263 | if (rdev->msi_enabled) { | ||
| 264 | switch (rdev->family) { | ||
| 265 | case CHIP_RS600: | ||
| 266 | case CHIP_RS690: | ||
| 267 | case CHIP_RS740: | ||
| 268 | msi_rearm = RREG32(RADEON_BUS_CNTL) & ~RS600_MSI_REARM; | ||
| 269 | WREG32(RADEON_BUS_CNTL, msi_rearm); | ||
| 270 | WREG32(RADEON_BUS_CNTL, msi_rearm | RS600_MSI_REARM); | ||
| 271 | break; | ||
| 272 | default: | ||
| 273 | msi_rearm = RREG32(RADEON_MSI_REARM_EN) & ~RV370_MSI_REARM_EN; | ||
| 274 | WREG32(RADEON_MSI_REARM_EN, msi_rearm); | ||
| 275 | WREG32(RADEON_MSI_REARM_EN, msi_rearm | RV370_MSI_REARM_EN); | ||
| 276 | break; | ||
| 277 | } | ||
| 278 | } | ||
| 263 | return IRQ_HANDLED; | 279 | return IRQ_HANDLED; |
| 264 | } | 280 | } |
| 265 | 281 | ||
| @@ -472,6 +488,8 @@ int rs600_init(struct radeon_device *rdev) | |||
| 472 | } | 488 | } |
| 473 | /* Initialize clocks */ | 489 | /* Initialize clocks */ |
| 474 | radeon_get_clock_info(rdev->ddev); | 490 | radeon_get_clock_info(rdev->ddev); |
| 491 | /* Initialize power management */ | ||
| 492 | radeon_pm_init(rdev); | ||
| 475 | /* Get vram informations */ | 493 | /* Get vram informations */ |
| 476 | rs600_vram_info(rdev); | 494 | rs600_vram_info(rdev); |
| 477 | /* Initialize memory controller (also test AGP) */ | 495 | /* Initialize memory controller (also test AGP) */ |
diff --git a/drivers/gpu/drm/radeon/rs690.c b/drivers/gpu/drm/radeon/rs690.c index 025e3225346c..27547175cf93 100644 --- a/drivers/gpu/drm/radeon/rs690.c +++ b/drivers/gpu/drm/radeon/rs690.c | |||
| @@ -706,6 +706,8 @@ int rs690_init(struct radeon_device *rdev) | |||
| 706 | } | 706 | } |
| 707 | /* Initialize clocks */ | 707 | /* Initialize clocks */ |
| 708 | radeon_get_clock_info(rdev->ddev); | 708 | radeon_get_clock_info(rdev->ddev); |
| 709 | /* Initialize power management */ | ||
| 710 | radeon_pm_init(rdev); | ||
| 709 | /* Get vram informations */ | 711 | /* Get vram informations */ |
| 710 | rs690_vram_info(rdev); | 712 | rs690_vram_info(rdev); |
| 711 | /* Initialize memory controller (also test AGP) */ | 713 | /* Initialize memory controller (also test AGP) */ |
diff --git a/drivers/gpu/drm/radeon/rv515.c b/drivers/gpu/drm/radeon/rv515.c index 41a34c23e6d8..ba68c9fe90a1 100644 --- a/drivers/gpu/drm/radeon/rv515.c +++ b/drivers/gpu/drm/radeon/rv515.c | |||
| @@ -380,7 +380,6 @@ void rv515_mc_stop(struct radeon_device *rdev, struct rv515_mc_save *save) | |||
| 380 | save->d2crtc_control = RREG32(R_006880_D2CRTC_CONTROL); | 380 | save->d2crtc_control = RREG32(R_006880_D2CRTC_CONTROL); |
| 381 | 381 | ||
| 382 | /* Stop all video */ | 382 | /* Stop all video */ |
| 383 | WREG32(R_000330_D1VGA_CONTROL, 0); | ||
| 384 | WREG32(R_0068E8_D2CRTC_UPDATE_LOCK, 0); | 383 | WREG32(R_0068E8_D2CRTC_UPDATE_LOCK, 0); |
| 385 | WREG32(R_000300_VGA_RENDER_CONTROL, 0); | 384 | WREG32(R_000300_VGA_RENDER_CONTROL, 0); |
| 386 | WREG32(R_0060E8_D1CRTC_UPDATE_LOCK, 1); | 385 | WREG32(R_0060E8_D1CRTC_UPDATE_LOCK, 1); |
| @@ -389,6 +388,8 @@ void rv515_mc_stop(struct radeon_device *rdev, struct rv515_mc_save *save) | |||
| 389 | WREG32(R_006880_D2CRTC_CONTROL, 0); | 388 | WREG32(R_006880_D2CRTC_CONTROL, 0); |
| 390 | WREG32(R_0060E8_D1CRTC_UPDATE_LOCK, 0); | 389 | WREG32(R_0060E8_D1CRTC_UPDATE_LOCK, 0); |
| 391 | WREG32(R_0068E8_D2CRTC_UPDATE_LOCK, 0); | 390 | WREG32(R_0068E8_D2CRTC_UPDATE_LOCK, 0); |
| 391 | WREG32(R_000330_D1VGA_CONTROL, 0); | ||
| 392 | WREG32(R_000338_D2VGA_CONTROL, 0); | ||
| 392 | } | 393 | } |
| 393 | 394 | ||
| 394 | void rv515_mc_resume(struct radeon_device *rdev, struct rv515_mc_save *save) | 395 | void rv515_mc_resume(struct radeon_device *rdev, struct rv515_mc_save *save) |
| @@ -402,14 +403,14 @@ void rv515_mc_resume(struct radeon_device *rdev, struct rv515_mc_save *save) | |||
| 402 | WREG32(R_000328_VGA_HDP_CONTROL, save->vga_hdp_control); | 403 | WREG32(R_000328_VGA_HDP_CONTROL, save->vga_hdp_control); |
| 403 | mdelay(1); | 404 | mdelay(1); |
| 404 | /* Restore video state */ | 405 | /* Restore video state */ |
| 406 | WREG32(R_000330_D1VGA_CONTROL, save->d1vga_control); | ||
| 407 | WREG32(R_000338_D2VGA_CONTROL, save->d2vga_control); | ||
| 405 | WREG32(R_0060E8_D1CRTC_UPDATE_LOCK, 1); | 408 | WREG32(R_0060E8_D1CRTC_UPDATE_LOCK, 1); |
| 406 | WREG32(R_0068E8_D2CRTC_UPDATE_LOCK, 1); | 409 | WREG32(R_0068E8_D2CRTC_UPDATE_LOCK, 1); |
| 407 | WREG32(R_006080_D1CRTC_CONTROL, save->d1crtc_control); | 410 | WREG32(R_006080_D1CRTC_CONTROL, save->d1crtc_control); |
| 408 | WREG32(R_006880_D2CRTC_CONTROL, save->d2crtc_control); | 411 | WREG32(R_006880_D2CRTC_CONTROL, save->d2crtc_control); |
| 409 | WREG32(R_0060E8_D1CRTC_UPDATE_LOCK, 0); | 412 | WREG32(R_0060E8_D1CRTC_UPDATE_LOCK, 0); |
| 410 | WREG32(R_0068E8_D2CRTC_UPDATE_LOCK, 0); | 413 | WREG32(R_0068E8_D2CRTC_UPDATE_LOCK, 0); |
| 411 | WREG32(R_000330_D1VGA_CONTROL, save->d1vga_control); | ||
| 412 | WREG32(R_000338_D2VGA_CONTROL, save->d2vga_control); | ||
| 413 | WREG32(R_000300_VGA_RENDER_CONTROL, save->vga_render_control); | 414 | WREG32(R_000300_VGA_RENDER_CONTROL, save->vga_render_control); |
| 414 | } | 415 | } |
| 415 | 416 | ||
| @@ -585,6 +586,8 @@ int rv515_init(struct radeon_device *rdev) | |||
| 585 | } | 586 | } |
| 586 | /* Initialize clocks */ | 587 | /* Initialize clocks */ |
| 587 | radeon_get_clock_info(rdev->ddev); | 588 | radeon_get_clock_info(rdev->ddev); |
| 589 | /* Initialize power management */ | ||
| 590 | radeon_pm_init(rdev); | ||
| 588 | /* Get vram informations */ | 591 | /* Get vram informations */ |
| 589 | rv515_vram_info(rdev); | 592 | rv515_vram_info(rdev); |
| 590 | /* Initialize memory controller (also test AGP) */ | 593 | /* Initialize memory controller (also test AGP) */ |
diff --git a/drivers/gpu/drm/radeon/rv770.c b/drivers/gpu/drm/radeon/rv770.c index 595ac638039d..b0efd0ddae7a 100644 --- a/drivers/gpu/drm/radeon/rv770.c +++ b/drivers/gpu/drm/radeon/rv770.c | |||
| @@ -529,11 +529,11 @@ static void rv770_gpu_init(struct radeon_device *rdev) | |||
| 529 | if (rdev->family == CHIP_RV770) | 529 | if (rdev->family == CHIP_RV770) |
| 530 | gb_tiling_config |= BANK_TILING(1); | 530 | gb_tiling_config |= BANK_TILING(1); |
| 531 | else | 531 | else |
| 532 | gb_tiling_config |= BANK_TILING((mc_arb_ramcfg & NOOFBANK_SHIFT) >> NOOFBANK_MASK); | 532 | gb_tiling_config |= BANK_TILING((mc_arb_ramcfg & NOOFBANK_MASK) >> NOOFBANK_SHIFT); |
| 533 | 533 | ||
| 534 | gb_tiling_config |= GROUP_SIZE(0); | 534 | gb_tiling_config |= GROUP_SIZE(0); |
| 535 | 535 | ||
| 536 | if (((mc_arb_ramcfg & NOOFROWS_MASK) & NOOFROWS_SHIFT) > 3) { | 536 | if (((mc_arb_ramcfg & NOOFROWS_MASK) >> NOOFROWS_SHIFT) > 3) { |
| 537 | gb_tiling_config |= ROW_TILING(3); | 537 | gb_tiling_config |= ROW_TILING(3); |
| 538 | gb_tiling_config |= SAMPLE_SPLIT(3); | 538 | gb_tiling_config |= SAMPLE_SPLIT(3); |
| 539 | } else { | 539 | } else { |
| @@ -579,14 +579,14 @@ static void rv770_gpu_init(struct radeon_device *rdev) | |||
| 579 | 579 | ||
| 580 | /* set HW defaults for 3D engine */ | 580 | /* set HW defaults for 3D engine */ |
| 581 | WREG32(CP_QUEUE_THRESHOLDS, (ROQ_IB1_START(0x16) | | 581 | WREG32(CP_QUEUE_THRESHOLDS, (ROQ_IB1_START(0x16) | |
| 582 | ROQ_IB2_START(0x2b))); | 582 | ROQ_IB2_START(0x2b))); |
| 583 | 583 | ||
| 584 | WREG32(CP_MEQ_THRESHOLDS, STQ_SPLIT(0x30)); | 584 | WREG32(CP_MEQ_THRESHOLDS, STQ_SPLIT(0x30)); |
| 585 | 585 | ||
| 586 | WREG32(TA_CNTL_AUX, (DISABLE_CUBE_ANISO | | 586 | WREG32(TA_CNTL_AUX, (DISABLE_CUBE_ANISO | |
| 587 | SYNC_GRADIENT | | 587 | SYNC_GRADIENT | |
| 588 | SYNC_WALKER | | 588 | SYNC_WALKER | |
| 589 | SYNC_ALIGNER)); | 589 | SYNC_ALIGNER)); |
| 590 | 590 | ||
| 591 | sx_debug_1 = RREG32(SX_DEBUG_1); | 591 | sx_debug_1 = RREG32(SX_DEBUG_1); |
| 592 | sx_debug_1 |= ENABLE_NEW_SMX_ADDRESS; | 592 | sx_debug_1 |= ENABLE_NEW_SMX_ADDRESS; |
| @@ -598,9 +598,9 @@ static void rv770_gpu_init(struct radeon_device *rdev) | |||
| 598 | WREG32(SMX_DC_CTL0, smx_dc_ctl0); | 598 | WREG32(SMX_DC_CTL0, smx_dc_ctl0); |
| 599 | 599 | ||
| 600 | WREG32(SMX_EVENT_CTL, (ES_FLUSH_CTL(4) | | 600 | WREG32(SMX_EVENT_CTL, (ES_FLUSH_CTL(4) | |
| 601 | GS_FLUSH_CTL(4) | | 601 | GS_FLUSH_CTL(4) | |
| 602 | ACK_FLUSH_CTL(3) | | 602 | ACK_FLUSH_CTL(3) | |
| 603 | SYNC_FLUSH_CTL)); | 603 | SYNC_FLUSH_CTL)); |
| 604 | 604 | ||
| 605 | if (rdev->family == CHIP_RV770) | 605 | if (rdev->family == CHIP_RV770) |
| 606 | WREG32(DB_DEBUG3, DB_CLK_OFF_DELAY(0x1f)); | 606 | WREG32(DB_DEBUG3, DB_CLK_OFF_DELAY(0x1f)); |
| @@ -611,12 +611,12 @@ static void rv770_gpu_init(struct radeon_device *rdev) | |||
| 611 | } | 611 | } |
| 612 | 612 | ||
| 613 | WREG32(SX_EXPORT_BUFFER_SIZES, (COLOR_BUFFER_SIZE((rdev->config.rv770.sx_max_export_size / 4) - 1) | | 613 | WREG32(SX_EXPORT_BUFFER_SIZES, (COLOR_BUFFER_SIZE((rdev->config.rv770.sx_max_export_size / 4) - 1) | |
| 614 | POSITION_BUFFER_SIZE((rdev->config.rv770.sx_max_export_pos_size / 4) - 1) | | 614 | POSITION_BUFFER_SIZE((rdev->config.rv770.sx_max_export_pos_size / 4) - 1) | |
| 615 | SMX_BUFFER_SIZE((rdev->config.rv770.sx_max_export_smx_size / 4) - 1))); | 615 | SMX_BUFFER_SIZE((rdev->config.rv770.sx_max_export_smx_size / 4) - 1))); |
| 616 | 616 | ||
| 617 | WREG32(PA_SC_FIFO_SIZE, (SC_PRIM_FIFO_SIZE(rdev->config.rv770.sc_prim_fifo_size) | | 617 | WREG32(PA_SC_FIFO_SIZE, (SC_PRIM_FIFO_SIZE(rdev->config.rv770.sc_prim_fifo_size) | |
| 618 | SC_HIZ_TILE_FIFO_SIZE(rdev->config.rv770.sc_hiz_tile_fifo_size) | | 618 | SC_HIZ_TILE_FIFO_SIZE(rdev->config.rv770.sc_hiz_tile_fifo_size) | |
| 619 | SC_EARLYZ_TILE_FIFO_SIZE(rdev->config.rv770.sc_earlyz_tile_fifo_fize))); | 619 | SC_EARLYZ_TILE_FIFO_SIZE(rdev->config.rv770.sc_earlyz_tile_fifo_fize))); |
| 620 | 620 | ||
| 621 | WREG32(PA_SC_MULTI_CHIP_CNTL, 0); | 621 | WREG32(PA_SC_MULTI_CHIP_CNTL, 0); |
| 622 | 622 | ||
| @@ -774,14 +774,36 @@ int rv770_mc_init(struct radeon_device *rdev) | |||
| 774 | { | 774 | { |
| 775 | fixed20_12 a; | 775 | fixed20_12 a; |
| 776 | u32 tmp; | 776 | u32 tmp; |
| 777 | int chansize, numchan; | ||
| 777 | int r; | 778 | int r; |
| 778 | 779 | ||
| 779 | /* Get VRAM informations */ | 780 | /* Get VRAM informations */ |
| 780 | /* FIXME: Don't know how to determine vram width, need to check | ||
| 781 | * vram_width usage | ||
| 782 | */ | ||
| 783 | rdev->mc.vram_width = 128; | ||
| 784 | rdev->mc.vram_is_ddr = true; | 781 | rdev->mc.vram_is_ddr = true; |
| 782 | tmp = RREG32(MC_ARB_RAMCFG); | ||
| 783 | if (tmp & CHANSIZE_OVERRIDE) { | ||
| 784 | chansize = 16; | ||
| 785 | } else if (tmp & CHANSIZE_MASK) { | ||
| 786 | chansize = 64; | ||
| 787 | } else { | ||
| 788 | chansize = 32; | ||
| 789 | } | ||
| 790 | tmp = RREG32(MC_SHARED_CHMAP); | ||
| 791 | switch ((tmp & NOOFCHAN_MASK) >> NOOFCHAN_SHIFT) { | ||
| 792 | case 0: | ||
| 793 | default: | ||
| 794 | numchan = 1; | ||
| 795 | break; | ||
| 796 | case 1: | ||
| 797 | numchan = 2; | ||
| 798 | break; | ||
| 799 | case 2: | ||
| 800 | numchan = 4; | ||
| 801 | break; | ||
| 802 | case 3: | ||
| 803 | numchan = 8; | ||
| 804 | break; | ||
| 805 | } | ||
| 806 | rdev->mc.vram_width = numchan * chansize; | ||
| 785 | /* Could aper size report 0 ? */ | 807 | /* Could aper size report 0 ? */ |
| 786 | rdev->mc.aper_base = drm_get_resource_start(rdev->ddev, 0); | 808 | rdev->mc.aper_base = drm_get_resource_start(rdev->ddev, 0); |
| 787 | rdev->mc.aper_size = drm_get_resource_len(rdev->ddev, 0); | 809 | rdev->mc.aper_size = drm_get_resource_len(rdev->ddev, 0); |
| @@ -961,10 +983,13 @@ int rv770_init(struct radeon_device *rdev) | |||
| 961 | r600_scratch_init(rdev); | 983 | r600_scratch_init(rdev); |
| 962 | /* Initialize surface registers */ | 984 | /* Initialize surface registers */ |
| 963 | radeon_surface_init(rdev); | 985 | radeon_surface_init(rdev); |
| 986 | /* Initialize clocks */ | ||
| 964 | radeon_get_clock_info(rdev->ddev); | 987 | radeon_get_clock_info(rdev->ddev); |
| 965 | r = radeon_clocks_init(rdev); | 988 | r = radeon_clocks_init(rdev); |
| 966 | if (r) | 989 | if (r) |
| 967 | return r; | 990 | return r; |
| 991 | /* Initialize power management */ | ||
| 992 | radeon_pm_init(rdev); | ||
| 968 | /* Fence driver */ | 993 | /* Fence driver */ |
| 969 | r = radeon_fence_driver_init(rdev); | 994 | r = radeon_fence_driver_init(rdev); |
| 970 | if (r) | 995 | if (r) |
diff --git a/drivers/gpu/drm/radeon/rv770d.h b/drivers/gpu/drm/radeon/rv770d.h index 4b9c3d6396ff..a1367ab6f261 100644 --- a/drivers/gpu/drm/radeon/rv770d.h +++ b/drivers/gpu/drm/radeon/rv770d.h | |||
| @@ -129,6 +129,10 @@ | |||
| 129 | #define HDP_REG_COHERENCY_FLUSH_CNTL 0x54A0 | 129 | #define HDP_REG_COHERENCY_FLUSH_CNTL 0x54A0 |
| 130 | #define HDP_TILING_CONFIG 0x2F3C | 130 | #define HDP_TILING_CONFIG 0x2F3C |
| 131 | 131 | ||
| 132 | #define MC_SHARED_CHMAP 0x2004 | ||
| 133 | #define NOOFCHAN_SHIFT 12 | ||
| 134 | #define NOOFCHAN_MASK 0x00003000 | ||
| 135 | |||
| 132 | #define MC_ARB_RAMCFG 0x2760 | 136 | #define MC_ARB_RAMCFG 0x2760 |
| 133 | #define NOOFBANK_SHIFT 0 | 137 | #define NOOFBANK_SHIFT 0 |
| 134 | #define NOOFBANK_MASK 0x00000003 | 138 | #define NOOFBANK_MASK 0x00000003 |
| @@ -142,6 +146,7 @@ | |||
| 142 | #define CHANSIZE_MASK 0x00000100 | 146 | #define CHANSIZE_MASK 0x00000100 |
| 143 | #define BURSTLENGTH_SHIFT 9 | 147 | #define BURSTLENGTH_SHIFT 9 |
| 144 | #define BURSTLENGTH_MASK 0x00000200 | 148 | #define BURSTLENGTH_MASK 0x00000200 |
| 149 | #define CHANSIZE_OVERRIDE (1 << 11) | ||
| 145 | #define MC_VM_AGP_TOP 0x2028 | 150 | #define MC_VM_AGP_TOP 0x2028 |
| 146 | #define MC_VM_AGP_BOT 0x202C | 151 | #define MC_VM_AGP_BOT 0x202C |
| 147 | #define MC_VM_AGP_BASE 0x2030 | 152 | #define MC_VM_AGP_BASE 0x2030 |
diff --git a/drivers/gpu/drm/ttm/ttm_tt.c b/drivers/gpu/drm/ttm/ttm_tt.c index 90ea46aed050..9c2b1cc5dba5 100644 --- a/drivers/gpu/drm/ttm/ttm_tt.c +++ b/drivers/gpu/drm/ttm/ttm_tt.c | |||
| @@ -280,6 +280,7 @@ int ttm_tt_set_placement_caching(struct ttm_tt *ttm, uint32_t placement) | |||
| 280 | 280 | ||
| 281 | return ttm_tt_set_caching(ttm, state); | 281 | return ttm_tt_set_caching(ttm, state); |
| 282 | } | 282 | } |
| 283 | EXPORT_SYMBOL(ttm_tt_set_placement_caching); | ||
| 283 | 284 | ||
| 284 | static void ttm_tt_free_alloced_pages(struct ttm_tt *ttm) | 285 | static void ttm_tt_free_alloced_pages(struct ttm_tt *ttm) |
| 285 | { | 286 | { |
diff --git a/drivers/hwmon/adt7475.c b/drivers/hwmon/adt7475.c index d39877a7da63..b5a95193c694 100644 --- a/drivers/hwmon/adt7475.c +++ b/drivers/hwmon/adt7475.c | |||
| @@ -350,8 +350,7 @@ static ssize_t show_temp(struct device *dev, struct device_attribute *attr, | |||
| 350 | 350 | ||
| 351 | case FAULT: | 351 | case FAULT: |
| 352 | /* Note - only for remote1 and remote2 */ | 352 | /* Note - only for remote1 and remote2 */ |
| 353 | out = data->alarms & (sattr->index ? 0x8000 : 0x4000); | 353 | out = !!(data->alarms & (sattr->index ? 0x8000 : 0x4000)); |
| 354 | out = out ? 0 : 1; | ||
| 355 | break; | 354 | break; |
| 356 | 355 | ||
| 357 | default: | 356 | default: |
| @@ -863,7 +862,7 @@ static SENSOR_DEVICE_ATTR_2(pwm1_freq, S_IRUGO | S_IWUSR, show_pwmfreq, | |||
| 863 | set_pwmfreq, INPUT, 0); | 862 | set_pwmfreq, INPUT, 0); |
| 864 | static SENSOR_DEVICE_ATTR_2(pwm1_enable, S_IRUGO | S_IWUSR, show_pwmctrl, | 863 | static SENSOR_DEVICE_ATTR_2(pwm1_enable, S_IRUGO | S_IWUSR, show_pwmctrl, |
| 865 | set_pwmctrl, INPUT, 0); | 864 | set_pwmctrl, INPUT, 0); |
| 866 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_channel_temp, S_IRUGO | S_IWUSR, | 865 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_channels_temp, S_IRUGO | S_IWUSR, |
| 867 | show_pwmchan, set_pwmchan, INPUT, 0); | 866 | show_pwmchan, set_pwmchan, INPUT, 0); |
| 868 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_pwm, S_IRUGO | S_IWUSR, show_pwm, | 867 | static SENSOR_DEVICE_ATTR_2(pwm1_auto_point1_pwm, S_IRUGO | S_IWUSR, show_pwm, |
| 869 | set_pwm, MIN, 0); | 868 | set_pwm, MIN, 0); |
| @@ -875,7 +874,7 @@ static SENSOR_DEVICE_ATTR_2(pwm2_freq, S_IRUGO | S_IWUSR, show_pwmfreq, | |||
| 875 | set_pwmfreq, INPUT, 1); | 874 | set_pwmfreq, INPUT, 1); |
| 876 | static SENSOR_DEVICE_ATTR_2(pwm2_enable, S_IRUGO | S_IWUSR, show_pwmctrl, | 875 | static SENSOR_DEVICE_ATTR_2(pwm2_enable, S_IRUGO | S_IWUSR, show_pwmctrl, |
| 877 | set_pwmctrl, INPUT, 1); | 876 | set_pwmctrl, INPUT, 1); |
| 878 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_channel_temp, S_IRUGO | S_IWUSR, | 877 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_channels_temp, S_IRUGO | S_IWUSR, |
| 879 | show_pwmchan, set_pwmchan, INPUT, 1); | 878 | show_pwmchan, set_pwmchan, INPUT, 1); |
| 880 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_pwm, S_IRUGO | S_IWUSR, show_pwm, | 879 | static SENSOR_DEVICE_ATTR_2(pwm2_auto_point1_pwm, S_IRUGO | S_IWUSR, show_pwm, |
| 881 | set_pwm, MIN, 1); | 880 | set_pwm, MIN, 1); |
| @@ -887,7 +886,7 @@ static SENSOR_DEVICE_ATTR_2(pwm3_freq, S_IRUGO | S_IWUSR, show_pwmfreq, | |||
| 887 | set_pwmfreq, INPUT, 2); | 886 | set_pwmfreq, INPUT, 2); |
| 888 | static SENSOR_DEVICE_ATTR_2(pwm3_enable, S_IRUGO | S_IWUSR, show_pwmctrl, | 887 | static SENSOR_DEVICE_ATTR_2(pwm3_enable, S_IRUGO | S_IWUSR, show_pwmctrl, |
| 889 | set_pwmctrl, INPUT, 2); | 888 | set_pwmctrl, INPUT, 2); |
| 890 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_channel_temp, S_IRUGO | S_IWUSR, | 889 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_channels_temp, S_IRUGO | S_IWUSR, |
| 891 | show_pwmchan, set_pwmchan, INPUT, 2); | 890 | show_pwmchan, set_pwmchan, INPUT, 2); |
| 892 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_pwm, S_IRUGO | S_IWUSR, show_pwm, | 891 | static SENSOR_DEVICE_ATTR_2(pwm3_auto_point1_pwm, S_IRUGO | S_IWUSR, show_pwm, |
| 893 | set_pwm, MIN, 2); | 892 | set_pwm, MIN, 2); |
| @@ -947,19 +946,19 @@ static struct attribute *adt7475_attrs[] = { | |||
| 947 | &sensor_dev_attr_pwm1.dev_attr.attr, | 946 | &sensor_dev_attr_pwm1.dev_attr.attr, |
| 948 | &sensor_dev_attr_pwm1_freq.dev_attr.attr, | 947 | &sensor_dev_attr_pwm1_freq.dev_attr.attr, |
| 949 | &sensor_dev_attr_pwm1_enable.dev_attr.attr, | 948 | &sensor_dev_attr_pwm1_enable.dev_attr.attr, |
| 950 | &sensor_dev_attr_pwm1_auto_channel_temp.dev_attr.attr, | 949 | &sensor_dev_attr_pwm1_auto_channels_temp.dev_attr.attr, |
| 951 | &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr, | 950 | &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr, |
| 952 | &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr, | 951 | &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr, |
| 953 | &sensor_dev_attr_pwm2.dev_attr.attr, | 952 | &sensor_dev_attr_pwm2.dev_attr.attr, |
| 954 | &sensor_dev_attr_pwm2_freq.dev_attr.attr, | 953 | &sensor_dev_attr_pwm2_freq.dev_attr.attr, |
| 955 | &sensor_dev_attr_pwm2_enable.dev_attr.attr, | 954 | &sensor_dev_attr_pwm2_enable.dev_attr.attr, |
| 956 | &sensor_dev_attr_pwm2_auto_channel_temp.dev_attr.attr, | 955 | &sensor_dev_attr_pwm2_auto_channels_temp.dev_attr.attr, |
| 957 | &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr, | 956 | &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr, |
| 958 | &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr, | 957 | &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr, |
| 959 | &sensor_dev_attr_pwm3.dev_attr.attr, | 958 | &sensor_dev_attr_pwm3.dev_attr.attr, |
| 960 | &sensor_dev_attr_pwm3_freq.dev_attr.attr, | 959 | &sensor_dev_attr_pwm3_freq.dev_attr.attr, |
| 961 | &sensor_dev_attr_pwm3_enable.dev_attr.attr, | 960 | &sensor_dev_attr_pwm3_enable.dev_attr.attr, |
| 962 | &sensor_dev_attr_pwm3_auto_channel_temp.dev_attr.attr, | 961 | &sensor_dev_attr_pwm3_auto_channels_temp.dev_attr.attr, |
| 963 | &sensor_dev_attr_pwm3_auto_point1_pwm.dev_attr.attr, | 962 | &sensor_dev_attr_pwm3_auto_point1_pwm.dev_attr.attr, |
| 964 | &sensor_dev_attr_pwm3_auto_point2_pwm.dev_attr.attr, | 963 | &sensor_dev_attr_pwm3_auto_point2_pwm.dev_attr.attr, |
| 965 | NULL, | 964 | NULL, |
| @@ -1152,7 +1151,7 @@ static struct adt7475_data *adt7475_update_device(struct device *dev) | |||
| 1152 | } | 1151 | } |
| 1153 | 1152 | ||
| 1154 | /* Limits and settings, should never change update every 60 seconds */ | 1153 | /* Limits and settings, should never change update every 60 seconds */ |
| 1155 | if (time_after(jiffies, data->limits_updated + HZ * 2) || | 1154 | if (time_after(jiffies, data->limits_updated + HZ * 60) || |
| 1156 | !data->valid) { | 1155 | !data->valid) { |
| 1157 | data->config5 = adt7475_read(REG_CONFIG5); | 1156 | data->config5 = adt7475_read(REG_CONFIG5); |
| 1158 | 1157 | ||
diff --git a/drivers/hwmon/s3c-hwmon.c b/drivers/hwmon/s3c-hwmon.c index 3a524f2fe493..71835412529f 100644 --- a/drivers/hwmon/s3c-hwmon.c +++ b/drivers/hwmon/s3c-hwmon.c | |||
| @@ -323,14 +323,21 @@ static int __devinit s3c_hwmon_probe(struct platform_device *dev) | |||
| 323 | } | 323 | } |
| 324 | 324 | ||
| 325 | for (i = 0; i < ARRAY_SIZE(pdata->in); i++) { | 325 | for (i = 0; i < ARRAY_SIZE(pdata->in); i++) { |
| 326 | if (!pdata->in[i]) | 326 | struct s3c24xx_adc_hwmon_incfg *cfg = pdata->in[i]; |
| 327 | |||
| 328 | if (!cfg) | ||
| 327 | continue; | 329 | continue; |
| 328 | 330 | ||
| 329 | if (pdata->in[i]->mult >= 0x10000) | 331 | if (cfg->mult >= 0x10000) |
| 330 | dev_warn(&dev->dev, | 332 | dev_warn(&dev->dev, |
| 331 | "channel %d multiplier too large\n", | 333 | "channel %d multiplier too large\n", |
| 332 | i); | 334 | i); |
| 333 | 335 | ||
| 336 | if (cfg->divider == 0) { | ||
| 337 | dev_err(&dev->dev, "channel %d divider zero\n", i); | ||
| 338 | continue; | ||
| 339 | } | ||
| 340 | |||
| 334 | ret = s3c_hwmon_create_attr(&dev->dev, pdata->in[i], | 341 | ret = s3c_hwmon_create_attr(&dev->dev, pdata->in[i], |
| 335 | &hwmon->attrs[i], i); | 342 | &hwmon->attrs[i], i); |
| 336 | if (ret) { | 343 | if (ret) { |
diff --git a/drivers/i2c/busses/i2c-pnx.c b/drivers/i2c/busses/i2c-pnx.c index 6ff6c20f1e78..fbab6846ae64 100644 --- a/drivers/i2c/busses/i2c-pnx.c +++ b/drivers/i2c/busses/i2c-pnx.c | |||
| @@ -19,7 +19,9 @@ | |||
| 19 | #include <linux/completion.h> | 19 | #include <linux/completion.h> |
| 20 | #include <linux/platform_device.h> | 20 | #include <linux/platform_device.h> |
| 21 | #include <linux/i2c-pnx.h> | 21 | #include <linux/i2c-pnx.h> |
| 22 | #include <linux/io.h> | ||
| 22 | #include <mach/hardware.h> | 23 | #include <mach/hardware.h> |
| 24 | #include <mach/i2c.h> | ||
| 23 | #include <asm/irq.h> | 25 | #include <asm/irq.h> |
| 24 | #include <asm/uaccess.h> | 26 | #include <asm/uaccess.h> |
| 25 | 27 | ||
| @@ -54,6 +56,9 @@ static inline void i2c_pnx_arm_timer(struct i2c_adapter *adap) | |||
| 54 | struct timer_list *timer = &data->mif.timer; | 56 | struct timer_list *timer = &data->mif.timer; |
| 55 | int expires = I2C_PNX_TIMEOUT / (1000 / HZ); | 57 | int expires = I2C_PNX_TIMEOUT / (1000 / HZ); |
| 56 | 58 | ||
| 59 | if (expires <= 1) | ||
| 60 | expires = 2; | ||
| 61 | |||
| 57 | del_timer_sync(timer); | 62 | del_timer_sync(timer); |
| 58 | 63 | ||
| 59 | dev_dbg(&adap->dev, "Timer armed at %lu plus %u jiffies.\n", | 64 | dev_dbg(&adap->dev, "Timer armed at %lu plus %u jiffies.\n", |
| @@ -645,7 +650,7 @@ static int __devinit i2c_pnx_probe(struct platform_device *pdev) | |||
| 645 | return 0; | 650 | return 0; |
| 646 | 651 | ||
| 647 | out_irq: | 652 | out_irq: |
| 648 | free_irq(alg_data->irq, alg_data); | 653 | free_irq(alg_data->irq, i2c_pnx->adapter); |
| 649 | out_clock: | 654 | out_clock: |
| 650 | i2c_pnx->set_clock_stop(pdev); | 655 | i2c_pnx->set_clock_stop(pdev); |
| 651 | out_unmap: | 656 | out_unmap: |
| @@ -664,7 +669,7 @@ static int __devexit i2c_pnx_remove(struct platform_device *pdev) | |||
| 664 | struct i2c_adapter *adap = i2c_pnx->adapter; | 669 | struct i2c_adapter *adap = i2c_pnx->adapter; |
| 665 | struct i2c_pnx_algo_data *alg_data = adap->algo_data; | 670 | struct i2c_pnx_algo_data *alg_data = adap->algo_data; |
| 666 | 671 | ||
| 667 | free_irq(alg_data->irq, alg_data); | 672 | free_irq(alg_data->irq, i2c_pnx->adapter); |
| 668 | i2c_del_adapter(adap); | 673 | i2c_del_adapter(adap); |
| 669 | i2c_pnx->set_clock_stop(pdev); | 674 | i2c_pnx->set_clock_stop(pdev); |
| 670 | iounmap((void *)alg_data->ioaddr); | 675 | iounmap((void *)alg_data->ioaddr); |
diff --git a/drivers/i2c/chips/tsl2550.c b/drivers/i2c/chips/tsl2550.c index aa96bd2d27ea..a0702f36a72f 100644 --- a/drivers/i2c/chips/tsl2550.c +++ b/drivers/i2c/chips/tsl2550.c | |||
| @@ -257,6 +257,7 @@ static DEVICE_ATTR(operating_mode, S_IWUSR | S_IRUGO, | |||
| 257 | 257 | ||
| 258 | static ssize_t __tsl2550_show_lux(struct i2c_client *client, char *buf) | 258 | static ssize_t __tsl2550_show_lux(struct i2c_client *client, char *buf) |
| 259 | { | 259 | { |
| 260 | struct tsl2550_data *data = i2c_get_clientdata(client); | ||
| 260 | u8 ch0, ch1; | 261 | u8 ch0, ch1; |
| 261 | int ret; | 262 | int ret; |
| 262 | 263 | ||
| @@ -274,6 +275,8 @@ static ssize_t __tsl2550_show_lux(struct i2c_client *client, char *buf) | |||
| 274 | ret = tsl2550_calculate_lux(ch0, ch1); | 275 | ret = tsl2550_calculate_lux(ch0, ch1); |
| 275 | if (ret < 0) | 276 | if (ret < 0) |
| 276 | return ret; | 277 | return ret; |
| 278 | if (data->operating_mode == 1) | ||
| 279 | ret *= 5; | ||
| 277 | 280 | ||
| 278 | return sprintf(buf, "%d\n", ret); | 281 | return sprintf(buf, "%d\n", ret); |
| 279 | } | 282 | } |
diff --git a/drivers/i2c/i2c-core.c b/drivers/i2c/i2c-core.c index 8d80fceca6a4..296504355142 100644 --- a/drivers/i2c/i2c-core.c +++ b/drivers/i2c/i2c-core.c | |||
| @@ -762,6 +762,7 @@ int i2c_del_adapter(struct i2c_adapter *adap) | |||
| 762 | { | 762 | { |
| 763 | int res = 0; | 763 | int res = 0; |
| 764 | struct i2c_adapter *found; | 764 | struct i2c_adapter *found; |
| 765 | struct i2c_client *client, *next; | ||
| 765 | 766 | ||
| 766 | /* First make sure that this adapter was ever added */ | 767 | /* First make sure that this adapter was ever added */ |
| 767 | mutex_lock(&core_lock); | 768 | mutex_lock(&core_lock); |
| @@ -781,6 +782,16 @@ int i2c_del_adapter(struct i2c_adapter *adap) | |||
| 781 | if (res) | 782 | if (res) |
| 782 | return res; | 783 | return res; |
| 783 | 784 | ||
| 785 | /* Remove devices instantiated from sysfs */ | ||
| 786 | list_for_each_entry_safe(client, next, &userspace_devices, detected) { | ||
| 787 | if (client->adapter == adap) { | ||
| 788 | dev_dbg(&adap->dev, "Removing %s at 0x%x\n", | ||
| 789 | client->name, client->addr); | ||
| 790 | list_del(&client->detected); | ||
| 791 | i2c_unregister_device(client); | ||
| 792 | } | ||
| 793 | } | ||
| 794 | |||
| 784 | /* Detach any active clients. This can't fail, thus we do not | 795 | /* Detach any active clients. This can't fail, thus we do not |
| 785 | checking the returned value. */ | 796 | checking the returned value. */ |
| 786 | res = device_for_each_child(&adap->dev, NULL, __unregister_client); | 797 | res = device_for_each_child(&adap->dev, NULL, __unregister_client); |
diff --git a/drivers/ide/ide-ioctls.c b/drivers/ide/ide-ioctls.c index d3440b5010a5..6e7ae2b6cfc6 100644 --- a/drivers/ide/ide-ioctls.c +++ b/drivers/ide/ide-ioctls.c | |||
| @@ -162,7 +162,7 @@ static int ide_cmd_ioctl(ide_drive_t *drive, unsigned long arg) | |||
| 162 | if (tf->command == ATA_CMD_SET_FEATURES && | 162 | if (tf->command == ATA_CMD_SET_FEATURES && |
| 163 | tf->feature == SETFEATURES_XFER && | 163 | tf->feature == SETFEATURES_XFER && |
| 164 | tf->nsect >= XFER_SW_DMA_0) { | 164 | tf->nsect >= XFER_SW_DMA_0) { |
| 165 | xfer_rate = ide_find_dma_mode(drive, XFER_UDMA_6); | 165 | xfer_rate = ide_find_dma_mode(drive, tf->nsect); |
| 166 | if (xfer_rate != tf->nsect) { | 166 | if (xfer_rate != tf->nsect) { |
| 167 | err = -EINVAL; | 167 | err = -EINVAL; |
| 168 | goto abort; | 168 | goto abort; |
diff --git a/drivers/ieee802154/fakehard.c b/drivers/ieee802154/fakehard.c index 96a2959ce877..7c544f7c74c4 100644 --- a/drivers/ieee802154/fakehard.c +++ b/drivers/ieee802154/fakehard.c | |||
| @@ -260,15 +260,12 @@ static int ieee802154_fake_close(struct net_device *dev) | |||
| 260 | static netdev_tx_t ieee802154_fake_xmit(struct sk_buff *skb, | 260 | static netdev_tx_t ieee802154_fake_xmit(struct sk_buff *skb, |
| 261 | struct net_device *dev) | 261 | struct net_device *dev) |
| 262 | { | 262 | { |
| 263 | skb->iif = dev->ifindex; | ||
| 264 | skb->dev = dev; | ||
| 265 | dev->stats.tx_packets++; | 263 | dev->stats.tx_packets++; |
| 266 | dev->stats.tx_bytes += skb->len; | 264 | dev->stats.tx_bytes += skb->len; |
| 267 | 265 | ||
| 268 | dev->trans_start = jiffies; | ||
| 269 | |||
| 270 | /* FIXME: do hardware work here ... */ | 266 | /* FIXME: do hardware work here ... */ |
| 271 | 267 | ||
| 268 | dev_kfree_skb(skb); | ||
| 272 | return NETDEV_TX_OK; | 269 | return NETDEV_TX_OK; |
| 273 | } | 270 | } |
| 274 | 271 | ||
diff --git a/drivers/input/ff-core.c b/drivers/input/ff-core.c index 72c63e5dd630..38df81fcdc3a 100644 --- a/drivers/input/ff-core.c +++ b/drivers/input/ff-core.c | |||
| @@ -337,16 +337,16 @@ int input_ff_create(struct input_dev *dev, int max_effects) | |||
| 337 | dev->ff = ff; | 337 | dev->ff = ff; |
| 338 | dev->flush = flush_effects; | 338 | dev->flush = flush_effects; |
| 339 | dev->event = input_ff_event; | 339 | dev->event = input_ff_event; |
| 340 | set_bit(EV_FF, dev->evbit); | 340 | __set_bit(EV_FF, dev->evbit); |
| 341 | 341 | ||
| 342 | /* Copy "true" bits into ff device bitmap */ | 342 | /* Copy "true" bits into ff device bitmap */ |
| 343 | for (i = 0; i <= FF_MAX; i++) | 343 | for (i = 0; i <= FF_MAX; i++) |
| 344 | if (test_bit(i, dev->ffbit)) | 344 | if (test_bit(i, dev->ffbit)) |
| 345 | set_bit(i, ff->ffbit); | 345 | __set_bit(i, ff->ffbit); |
| 346 | 346 | ||
| 347 | /* we can emulate RUMBLE with periodic effects */ | 347 | /* we can emulate RUMBLE with periodic effects */ |
| 348 | if (test_bit(FF_PERIODIC, ff->ffbit)) | 348 | if (test_bit(FF_PERIODIC, ff->ffbit)) |
| 349 | set_bit(FF_RUMBLE, dev->ffbit); | 349 | __set_bit(FF_RUMBLE, dev->ffbit); |
| 350 | 350 | ||
| 351 | return 0; | 351 | return 0; |
| 352 | } | 352 | } |
| @@ -362,12 +362,14 @@ EXPORT_SYMBOL_GPL(input_ff_create); | |||
| 362 | */ | 362 | */ |
| 363 | void input_ff_destroy(struct input_dev *dev) | 363 | void input_ff_destroy(struct input_dev *dev) |
| 364 | { | 364 | { |
| 365 | clear_bit(EV_FF, dev->evbit); | 365 | struct ff_device *ff = dev->ff; |
| 366 | if (dev->ff) { | 366 | |
| 367 | if (dev->ff->destroy) | 367 | __clear_bit(EV_FF, dev->evbit); |
| 368 | dev->ff->destroy(dev->ff); | 368 | if (ff) { |
| 369 | kfree(dev->ff->private); | 369 | if (ff->destroy) |
| 370 | kfree(dev->ff); | 370 | ff->destroy(ff); |
| 371 | kfree(ff->private); | ||
| 372 | kfree(ff); | ||
| 371 | dev->ff = NULL; | 373 | dev->ff = NULL; |
| 372 | } | 374 | } |
| 373 | } | 375 | } |
diff --git a/drivers/input/ff-memless.c b/drivers/input/ff-memless.c index 2d1415e16834..b483b2995fa9 100644 --- a/drivers/input/ff-memless.c +++ b/drivers/input/ff-memless.c | |||
| @@ -61,7 +61,6 @@ struct ml_device { | |||
| 61 | struct ml_effect_state states[FF_MEMLESS_EFFECTS]; | 61 | struct ml_effect_state states[FF_MEMLESS_EFFECTS]; |
| 62 | int gain; | 62 | int gain; |
| 63 | struct timer_list timer; | 63 | struct timer_list timer; |
| 64 | spinlock_t timer_lock; | ||
| 65 | struct input_dev *dev; | 64 | struct input_dev *dev; |
| 66 | 65 | ||
| 67 | int (*play_effect)(struct input_dev *dev, void *data, | 66 | int (*play_effect)(struct input_dev *dev, void *data, |
| @@ -368,38 +367,38 @@ static void ml_effect_timer(unsigned long timer_data) | |||
| 368 | { | 367 | { |
| 369 | struct input_dev *dev = (struct input_dev *)timer_data; | 368 | struct input_dev *dev = (struct input_dev *)timer_data; |
| 370 | struct ml_device *ml = dev->ff->private; | 369 | struct ml_device *ml = dev->ff->private; |
| 370 | unsigned long flags; | ||
| 371 | 371 | ||
| 372 | debug("timer: updating effects"); | 372 | debug("timer: updating effects"); |
| 373 | 373 | ||
| 374 | spin_lock(&ml->timer_lock); | 374 | spin_lock_irqsave(&dev->event_lock, flags); |
| 375 | ml_play_effects(ml); | 375 | ml_play_effects(ml); |
| 376 | spin_unlock(&ml->timer_lock); | 376 | spin_unlock_irqrestore(&dev->event_lock, flags); |
| 377 | } | 377 | } |
| 378 | 378 | ||
| 379 | /* | ||
| 380 | * Sets requested gain for FF effects. Called with dev->event_lock held. | ||
| 381 | */ | ||
| 379 | static void ml_ff_set_gain(struct input_dev *dev, u16 gain) | 382 | static void ml_ff_set_gain(struct input_dev *dev, u16 gain) |
| 380 | { | 383 | { |
| 381 | struct ml_device *ml = dev->ff->private; | 384 | struct ml_device *ml = dev->ff->private; |
| 382 | int i; | 385 | int i; |
| 383 | 386 | ||
| 384 | spin_lock_bh(&ml->timer_lock); | ||
| 385 | |||
| 386 | ml->gain = gain; | 387 | ml->gain = gain; |
| 387 | 388 | ||
| 388 | for (i = 0; i < FF_MEMLESS_EFFECTS; i++) | 389 | for (i = 0; i < FF_MEMLESS_EFFECTS; i++) |
| 389 | __clear_bit(FF_EFFECT_PLAYING, &ml->states[i].flags); | 390 | __clear_bit(FF_EFFECT_PLAYING, &ml->states[i].flags); |
| 390 | 391 | ||
| 391 | ml_play_effects(ml); | 392 | ml_play_effects(ml); |
| 392 | |||
| 393 | spin_unlock_bh(&ml->timer_lock); | ||
| 394 | } | 393 | } |
| 395 | 394 | ||
| 395 | /* | ||
| 396 | * Start/stop specified FF effect. Called with dev->event_lock held. | ||
| 397 | */ | ||
| 396 | static int ml_ff_playback(struct input_dev *dev, int effect_id, int value) | 398 | static int ml_ff_playback(struct input_dev *dev, int effect_id, int value) |
| 397 | { | 399 | { |
| 398 | struct ml_device *ml = dev->ff->private; | 400 | struct ml_device *ml = dev->ff->private; |
| 399 | struct ml_effect_state *state = &ml->states[effect_id]; | 401 | struct ml_effect_state *state = &ml->states[effect_id]; |
| 400 | unsigned long flags; | ||
| 401 | |||
| 402 | spin_lock_irqsave(&ml->timer_lock, flags); | ||
| 403 | 402 | ||
| 404 | if (value > 0) { | 403 | if (value > 0) { |
| 405 | debug("initiated play"); | 404 | debug("initiated play"); |
| @@ -425,8 +424,6 @@ static int ml_ff_playback(struct input_dev *dev, int effect_id, int value) | |||
| 425 | ml_play_effects(ml); | 424 | ml_play_effects(ml); |
| 426 | } | 425 | } |
| 427 | 426 | ||
| 428 | spin_unlock_irqrestore(&ml->timer_lock, flags); | ||
| 429 | |||
| 430 | return 0; | 427 | return 0; |
| 431 | } | 428 | } |
| 432 | 429 | ||
| @@ -436,7 +433,7 @@ static int ml_ff_upload(struct input_dev *dev, | |||
| 436 | struct ml_device *ml = dev->ff->private; | 433 | struct ml_device *ml = dev->ff->private; |
| 437 | struct ml_effect_state *state = &ml->states[effect->id]; | 434 | struct ml_effect_state *state = &ml->states[effect->id]; |
| 438 | 435 | ||
| 439 | spin_lock_bh(&ml->timer_lock); | 436 | spin_lock_irq(&dev->event_lock); |
| 440 | 437 | ||
| 441 | if (test_bit(FF_EFFECT_STARTED, &state->flags)) { | 438 | if (test_bit(FF_EFFECT_STARTED, &state->flags)) { |
| 442 | __clear_bit(FF_EFFECT_PLAYING, &state->flags); | 439 | __clear_bit(FF_EFFECT_PLAYING, &state->flags); |
| @@ -448,7 +445,7 @@ static int ml_ff_upload(struct input_dev *dev, | |||
| 448 | ml_schedule_timer(ml); | 445 | ml_schedule_timer(ml); |
| 449 | } | 446 | } |
| 450 | 447 | ||
| 451 | spin_unlock_bh(&ml->timer_lock); | 448 | spin_unlock_irq(&dev->event_lock); |
| 452 | 449 | ||
| 453 | return 0; | 450 | return 0; |
| 454 | } | 451 | } |
| @@ -482,7 +479,6 @@ int input_ff_create_memless(struct input_dev *dev, void *data, | |||
| 482 | ml->private = data; | 479 | ml->private = data; |
| 483 | ml->play_effect = play_effect; | 480 | ml->play_effect = play_effect; |
| 484 | ml->gain = 0xffff; | 481 | ml->gain = 0xffff; |
| 485 | spin_lock_init(&ml->timer_lock); | ||
| 486 | setup_timer(&ml->timer, ml_effect_timer, (unsigned long)dev); | 482 | setup_timer(&ml->timer, ml_effect_timer, (unsigned long)dev); |
| 487 | 483 | ||
| 488 | set_bit(FF_GAIN, dev->ffbit); | 484 | set_bit(FF_GAIN, dev->ffbit); |
diff --git a/drivers/input/input.c b/drivers/input/input.c index cc763c96fada..2266ecbfbc01 100644 --- a/drivers/input/input.c +++ b/drivers/input/input.c | |||
| @@ -1292,17 +1292,24 @@ static int input_dev_uevent(struct device *device, struct kobj_uevent_env *env) | |||
| 1292 | return 0; | 1292 | return 0; |
| 1293 | } | 1293 | } |
| 1294 | 1294 | ||
| 1295 | #define INPUT_DO_TOGGLE(dev, type, bits, on) \ | 1295 | #define INPUT_DO_TOGGLE(dev, type, bits, on) \ |
| 1296 | do { \ | 1296 | do { \ |
| 1297 | int i; \ | 1297 | int i; \ |
| 1298 | if (!test_bit(EV_##type, dev->evbit)) \ | 1298 | bool active; \ |
| 1299 | break; \ | 1299 | \ |
| 1300 | for (i = 0; i < type##_MAX; i++) { \ | 1300 | if (!test_bit(EV_##type, dev->evbit)) \ |
| 1301 | if (!test_bit(i, dev->bits##bit) || \ | 1301 | break; \ |
| 1302 | !test_bit(i, dev->bits)) \ | 1302 | \ |
| 1303 | continue; \ | 1303 | for (i = 0; i < type##_MAX; i++) { \ |
| 1304 | dev->event(dev, EV_##type, i, on); \ | 1304 | if (!test_bit(i, dev->bits##bit)) \ |
| 1305 | } \ | 1305 | continue; \ |
| 1306 | \ | ||
| 1307 | active = test_bit(i, dev->bits); \ | ||
| 1308 | if (!active && !on) \ | ||
| 1309 | continue; \ | ||
| 1310 | \ | ||
| 1311 | dev->event(dev, EV_##type, i, on ? active : 0); \ | ||
| 1312 | } \ | ||
| 1306 | } while (0) | 1313 | } while (0) |
| 1307 | 1314 | ||
| 1308 | #ifdef CONFIG_PM | 1315 | #ifdef CONFIG_PM |
diff --git a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c index 4452eabbee6d..28e6110d1ff8 100644 --- a/drivers/input/keyboard/atkbd.c +++ b/drivers/input/keyboard/atkbd.c | |||
| @@ -1174,6 +1174,18 @@ static int atkbd_reconnect(struct serio *serio) | |||
| 1174 | return -1; | 1174 | return -1; |
| 1175 | 1175 | ||
| 1176 | atkbd_activate(atkbd); | 1176 | atkbd_activate(atkbd); |
| 1177 | |||
| 1178 | /* | ||
| 1179 | * Restore LED state and repeat rate. While input core | ||
| 1180 | * will do this for us at resume time reconnect may happen | ||
| 1181 | * because user requested it via sysfs or simply because | ||
| 1182 | * keyboard was unplugged and plugged in again so we need | ||
| 1183 | * to do it ourselves here. | ||
| 1184 | */ | ||
| 1185 | atkbd_set_leds(atkbd); | ||
| 1186 | if (!atkbd->softrepeat) | ||
| 1187 | atkbd_set_repeat_rate(atkbd); | ||
| 1188 | |||
| 1177 | } | 1189 | } |
| 1178 | 1190 | ||
| 1179 | atkbd_enable(atkbd); | 1191 | atkbd_enable(atkbd); |
| @@ -1422,6 +1434,7 @@ static ssize_t atkbd_set_set(struct atkbd *atkbd, const char *buf, size_t count) | |||
| 1422 | 1434 | ||
| 1423 | atkbd->dev = new_dev; | 1435 | atkbd->dev = new_dev; |
| 1424 | atkbd->set = atkbd_select_set(atkbd, value, atkbd->extra); | 1436 | atkbd->set = atkbd_select_set(atkbd, value, atkbd->extra); |
| 1437 | atkbd_reset_state(atkbd); | ||
| 1425 | atkbd_activate(atkbd); | 1438 | atkbd_activate(atkbd); |
| 1426 | atkbd_set_keycode_table(atkbd); | 1439 | atkbd_set_keycode_table(atkbd); |
| 1427 | atkbd_set_device_attrs(atkbd); | 1440 | atkbd_set_device_attrs(atkbd); |
diff --git a/drivers/input/mouse/lifebook.c b/drivers/input/mouse/lifebook.c index 5e6308694408..82811558ec33 100644 --- a/drivers/input/mouse/lifebook.c +++ b/drivers/input/mouse/lifebook.c | |||
| @@ -107,8 +107,7 @@ static const struct dmi_system_id lifebook_dmi_table[] = { | |||
| 107 | .matches = { | 107 | .matches = { |
| 108 | DMI_MATCH(DMI_PRODUCT_NAME, "CF-72"), | 108 | DMI_MATCH(DMI_PRODUCT_NAME, "CF-72"), |
| 109 | }, | 109 | }, |
| 110 | .callback = lifebook_set_serio_phys, | 110 | .callback = lifebook_set_6byte_proto, |
| 111 | .driver_data = "isa0060/serio3", | ||
| 112 | }, | 111 | }, |
| 113 | { | 112 | { |
| 114 | .ident = "Lifebook B142", | 113 | .ident = "Lifebook B142", |
diff --git a/drivers/input/mouse/psmouse-base.c b/drivers/input/mouse/psmouse-base.c index 690aed905436..07c53798301a 100644 --- a/drivers/input/mouse/psmouse-base.c +++ b/drivers/input/mouse/psmouse-base.c | |||
| @@ -581,7 +581,7 @@ static int cortron_detect(struct psmouse *psmouse, bool set_properties) | |||
| 581 | static int psmouse_extensions(struct psmouse *psmouse, | 581 | static int psmouse_extensions(struct psmouse *psmouse, |
| 582 | unsigned int max_proto, bool set_properties) | 582 | unsigned int max_proto, bool set_properties) |
| 583 | { | 583 | { |
| 584 | bool synaptics_hardware = true; | 584 | bool synaptics_hardware = false; |
| 585 | 585 | ||
| 586 | /* | 586 | /* |
| 587 | * We always check for lifebook because it does not disturb mouse | 587 | * We always check for lifebook because it does not disturb mouse |
| @@ -1673,7 +1673,7 @@ static int psmouse_get_maxproto(char *buffer, struct kernel_param *kp) | |||
| 1673 | { | 1673 | { |
| 1674 | int type = *((unsigned int *)kp->arg); | 1674 | int type = *((unsigned int *)kp->arg); |
| 1675 | 1675 | ||
| 1676 | return sprintf(buffer, "%s\n", psmouse_protocol_by_type(type)->name); | 1676 | return sprintf(buffer, "%s", psmouse_protocol_by_type(type)->name); |
| 1677 | } | 1677 | } |
| 1678 | 1678 | ||
| 1679 | static int __init psmouse_init(void) | 1679 | static int __init psmouse_init(void) |
diff --git a/drivers/input/serio/i8042-x86ia64io.h b/drivers/input/serio/i8042-x86ia64io.h index a537925f7651..2bcf1ace27c0 100644 --- a/drivers/input/serio/i8042-x86ia64io.h +++ b/drivers/input/serio/i8042-x86ia64io.h | |||
| @@ -447,6 +447,27 @@ static struct dmi_system_id __initdata i8042_dmi_reset_table[] = { | |||
| 447 | DMI_MATCH(DMI_PRODUCT_NAME, "N10"), | 447 | DMI_MATCH(DMI_PRODUCT_NAME, "N10"), |
| 448 | }, | 448 | }, |
| 449 | }, | 449 | }, |
| 450 | { | ||
| 451 | .ident = "Dell Vostro 1320", | ||
| 452 | .matches = { | ||
| 453 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
| 454 | DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 1320"), | ||
| 455 | }, | ||
| 456 | }, | ||
| 457 | { | ||
| 458 | .ident = "Dell Vostro 1520", | ||
| 459 | .matches = { | ||
| 460 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
| 461 | DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 1520"), | ||
| 462 | }, | ||
| 463 | }, | ||
| 464 | { | ||
| 465 | .ident = "Dell Vostro 1720", | ||
| 466 | .matches = { | ||
| 467 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), | ||
| 468 | DMI_MATCH(DMI_PRODUCT_NAME, "Vostro 1720"), | ||
| 469 | }, | ||
| 470 | }, | ||
| 450 | { } | 471 | { } |
| 451 | }; | 472 | }; |
| 452 | 473 | ||
diff --git a/drivers/isdn/hardware/mISDN/hfcmulti.c b/drivers/isdn/hardware/mISDN/hfcmulti.c index faed794cf75a..a6624ad252c5 100644 --- a/drivers/isdn/hardware/mISDN/hfcmulti.c +++ b/drivers/isdn/hardware/mISDN/hfcmulti.c | |||
| @@ -5481,7 +5481,7 @@ HFCmulti_init(void) | |||
| 5481 | if (err) { | 5481 | if (err) { |
| 5482 | printk(KERN_ERR "error registering embedded driver: " | 5482 | printk(KERN_ERR "error registering embedded driver: " |
| 5483 | "%x\n", err); | 5483 | "%x\n", err); |
| 5484 | return -err; | 5484 | return err; |
| 5485 | } | 5485 | } |
| 5486 | HFC_cnt++; | 5486 | HFC_cnt++; |
| 5487 | printk(KERN_INFO "%d devices registered\n", HFC_cnt); | 5487 | printk(KERN_INFO "%d devices registered\n", HFC_cnt); |
diff --git a/drivers/isdn/i4l/isdn_ppp.c b/drivers/isdn/i4l/isdn_ppp.c index 2d14b64202a3..642d5aaf53ce 100644 --- a/drivers/isdn/i4l/isdn_ppp.c +++ b/drivers/isdn/i4l/isdn_ppp.c | |||
| @@ -1535,10 +1535,8 @@ static int isdn_ppp_mp_bundle_array_init(void) | |||
| 1535 | int sz = ISDN_MAX_CHANNELS*sizeof(ippp_bundle); | 1535 | int sz = ISDN_MAX_CHANNELS*sizeof(ippp_bundle); |
| 1536 | if( (isdn_ppp_bundle_arr = kzalloc(sz, GFP_KERNEL)) == NULL ) | 1536 | if( (isdn_ppp_bundle_arr = kzalloc(sz, GFP_KERNEL)) == NULL ) |
| 1537 | return -ENOMEM; | 1537 | return -ENOMEM; |
| 1538 | for (i = 0; i < ISDN_MAX_CHANNELS; i++) { | 1538 | for( i = 0; i < ISDN_MAX_CHANNELS; i++ ) |
| 1539 | spin_lock_init(&isdn_ppp_bundle_arr[i].lock); | 1539 | spin_lock_init(&isdn_ppp_bundle_arr[i].lock); |
| 1540 | skb_queue_head_init(&isdn_ppp_bundle_arr[i].frags); | ||
| 1541 | } | ||
| 1542 | return 0; | 1540 | return 0; |
| 1543 | } | 1541 | } |
| 1544 | 1542 | ||
| @@ -1571,7 +1569,7 @@ static int isdn_ppp_mp_init( isdn_net_local * lp, ippp_bundle * add_to ) | |||
| 1571 | if ((lp->netdev->pb = isdn_ppp_mp_bundle_alloc()) == NULL) | 1569 | if ((lp->netdev->pb = isdn_ppp_mp_bundle_alloc()) == NULL) |
| 1572 | return -ENOMEM; | 1570 | return -ENOMEM; |
| 1573 | lp->next = lp->last = lp; /* nobody else in a queue */ | 1571 | lp->next = lp->last = lp; /* nobody else in a queue */ |
| 1574 | skb_queue_head_init(&lp->netdev->pb->frags); | 1572 | lp->netdev->pb->frags = NULL; |
| 1575 | lp->netdev->pb->frames = 0; | 1573 | lp->netdev->pb->frames = 0; |
| 1576 | lp->netdev->pb->seq = UINT_MAX; | 1574 | lp->netdev->pb->seq = UINT_MAX; |
| 1577 | } | 1575 | } |
| @@ -1583,29 +1581,28 @@ static int isdn_ppp_mp_init( isdn_net_local * lp, ippp_bundle * add_to ) | |||
| 1583 | 1581 | ||
| 1584 | static u32 isdn_ppp_mp_get_seq( int short_seq, | 1582 | static u32 isdn_ppp_mp_get_seq( int short_seq, |
| 1585 | struct sk_buff * skb, u32 last_seq ); | 1583 | struct sk_buff * skb, u32 last_seq ); |
| 1586 | static void isdn_ppp_mp_discard(ippp_bundle *mp, struct sk_buff *from, | 1584 | static struct sk_buff * isdn_ppp_mp_discard( ippp_bundle * mp, |
| 1587 | struct sk_buff *to); | 1585 | struct sk_buff * from, struct sk_buff * to ); |
| 1588 | static void isdn_ppp_mp_reassembly(isdn_net_dev *net_dev, isdn_net_local *lp, | 1586 | static void isdn_ppp_mp_reassembly( isdn_net_dev * net_dev, isdn_net_local * lp, |
| 1589 | struct sk_buff *from, struct sk_buff *to, | 1587 | struct sk_buff * from, struct sk_buff * to ); |
| 1590 | u32 lastseq); | 1588 | static void isdn_ppp_mp_free_skb( ippp_bundle * mp, struct sk_buff * skb ); |
| 1591 | static void isdn_ppp_mp_free_skb(ippp_bundle *mp, struct sk_buff *skb); | ||
| 1592 | static void isdn_ppp_mp_print_recv_pkt( int slot, struct sk_buff * skb ); | 1589 | static void isdn_ppp_mp_print_recv_pkt( int slot, struct sk_buff * skb ); |
| 1593 | 1590 | ||
| 1594 | static void isdn_ppp_mp_receive(isdn_net_dev * net_dev, isdn_net_local * lp, | 1591 | static void isdn_ppp_mp_receive(isdn_net_dev * net_dev, isdn_net_local * lp, |
| 1595 | struct sk_buff *skb) | 1592 | struct sk_buff *skb) |
| 1596 | { | 1593 | { |
| 1597 | struct sk_buff *newfrag, *frag, *start, *nextf; | ||
| 1598 | u32 newseq, minseq, thisseq; | ||
| 1599 | isdn_mppp_stats *stats; | ||
| 1600 | struct ippp_struct *is; | 1594 | struct ippp_struct *is; |
| 1595 | isdn_net_local * lpq; | ||
| 1596 | ippp_bundle * mp; | ||
| 1597 | isdn_mppp_stats * stats; | ||
| 1598 | struct sk_buff * newfrag, * frag, * start, *nextf; | ||
| 1599 | u32 newseq, minseq, thisseq; | ||
| 1601 | unsigned long flags; | 1600 | unsigned long flags; |
| 1602 | isdn_net_local *lpq; | ||
| 1603 | ippp_bundle *mp; | ||
| 1604 | int slot; | 1601 | int slot; |
| 1605 | 1602 | ||
| 1606 | spin_lock_irqsave(&net_dev->pb->lock, flags); | 1603 | spin_lock_irqsave(&net_dev->pb->lock, flags); |
| 1607 | mp = net_dev->pb; | 1604 | mp = net_dev->pb; |
| 1608 | stats = &mp->stats; | 1605 | stats = &mp->stats; |
| 1609 | slot = lp->ppp_slot; | 1606 | slot = lp->ppp_slot; |
| 1610 | if (slot < 0 || slot >= ISDN_MAX_CHANNELS) { | 1607 | if (slot < 0 || slot >= ISDN_MAX_CHANNELS) { |
| 1611 | printk(KERN_ERR "%s: lp->ppp_slot(%d)\n", | 1608 | printk(KERN_ERR "%s: lp->ppp_slot(%d)\n", |
| @@ -1616,19 +1613,20 @@ static void isdn_ppp_mp_receive(isdn_net_dev * net_dev, isdn_net_local * lp, | |||
| 1616 | return; | 1613 | return; |
| 1617 | } | 1614 | } |
| 1618 | is = ippp_table[slot]; | 1615 | is = ippp_table[slot]; |
| 1619 | if (++mp->frames > stats->max_queue_len) | 1616 | if( ++mp->frames > stats->max_queue_len ) |
| 1620 | stats->max_queue_len = mp->frames; | 1617 | stats->max_queue_len = mp->frames; |
| 1621 | 1618 | ||
| 1622 | if (is->debug & 0x8) | 1619 | if (is->debug & 0x8) |
| 1623 | isdn_ppp_mp_print_recv_pkt(lp->ppp_slot, skb); | 1620 | isdn_ppp_mp_print_recv_pkt(lp->ppp_slot, skb); |
| 1624 | 1621 | ||
| 1625 | newseq = isdn_ppp_mp_get_seq(is->mpppcfg & SC_IN_SHORT_SEQ, | 1622 | newseq = isdn_ppp_mp_get_seq(is->mpppcfg & SC_IN_SHORT_SEQ, |
| 1626 | skb, is->last_link_seqno); | 1623 | skb, is->last_link_seqno); |
| 1624 | |||
| 1627 | 1625 | ||
| 1628 | /* if this packet seq # is less than last already processed one, | 1626 | /* if this packet seq # is less than last already processed one, |
| 1629 | * toss it right away, but check for sequence start case first | 1627 | * toss it right away, but check for sequence start case first |
| 1630 | */ | 1628 | */ |
| 1631 | if (mp->seq > MP_LONGSEQ_MAX && (newseq & MP_LONGSEQ_MAXBIT)) { | 1629 | if( mp->seq > MP_LONGSEQ_MAX && (newseq & MP_LONGSEQ_MAXBIT) ) { |
| 1632 | mp->seq = newseq; /* the first packet: required for | 1630 | mp->seq = newseq; /* the first packet: required for |
| 1633 | * rfc1990 non-compliant clients -- | 1631 | * rfc1990 non-compliant clients -- |
| 1634 | * prevents constant packet toss */ | 1632 | * prevents constant packet toss */ |
| @@ -1638,7 +1636,7 @@ static void isdn_ppp_mp_receive(isdn_net_dev * net_dev, isdn_net_local * lp, | |||
| 1638 | spin_unlock_irqrestore(&mp->lock, flags); | 1636 | spin_unlock_irqrestore(&mp->lock, flags); |
| 1639 | return; | 1637 | return; |
| 1640 | } | 1638 | } |
| 1641 | 1639 | ||
| 1642 | /* find the minimum received sequence number over all links */ | 1640 | /* find the minimum received sequence number over all links */ |
| 1643 | is->last_link_seqno = minseq = newseq; | 1641 | is->last_link_seqno = minseq = newseq; |
| 1644 | for (lpq = net_dev->queue;;) { | 1642 | for (lpq = net_dev->queue;;) { |
| @@ -1659,31 +1657,22 @@ static void isdn_ppp_mp_receive(isdn_net_dev * net_dev, isdn_net_local * lp, | |||
| 1659 | * packets */ | 1657 | * packets */ |
| 1660 | newfrag = skb; | 1658 | newfrag = skb; |
| 1661 | 1659 | ||
| 1662 | /* Insert new fragment into the proper sequence slot. */ | 1660 | /* if this new fragment is before the first one, then enqueue it now. */ |
| 1663 | skb_queue_walk(&mp->frags, frag) { | 1661 | if ((frag = mp->frags) == NULL || MP_LT(newseq, MP_SEQ(frag))) { |
| 1664 | if (MP_SEQ(frag) == newseq) { | 1662 | newfrag->next = frag; |
| 1665 | isdn_ppp_mp_free_skb(mp, newfrag); | 1663 | mp->frags = frag = newfrag; |
| 1666 | newfrag = NULL; | 1664 | newfrag = NULL; |
| 1667 | break; | 1665 | } |
| 1668 | } | ||
| 1669 | if (MP_LT(newseq, MP_SEQ(frag))) { | ||
| 1670 | __skb_queue_before(&mp->frags, frag, newfrag); | ||
| 1671 | newfrag = NULL; | ||
| 1672 | break; | ||
| 1673 | } | ||
| 1674 | } | ||
| 1675 | if (newfrag) | ||
| 1676 | __skb_queue_tail(&mp->frags, newfrag); | ||
| 1677 | 1666 | ||
| 1678 | frag = skb_peek(&mp->frags); | 1667 | start = MP_FLAGS(frag) & MP_BEGIN_FRAG && |
| 1679 | start = ((MP_FLAGS(frag) & MP_BEGIN_FRAG) && | 1668 | MP_SEQ(frag) == mp->seq ? frag : NULL; |
| 1680 | (MP_SEQ(frag) == mp->seq)) ? frag : NULL; | ||
| 1681 | if (!start) | ||
| 1682 | goto check_overflow; | ||
| 1683 | 1669 | ||
| 1684 | /* main fragment traversing loop | 1670 | /* |
| 1671 | * main fragment traversing loop | ||
| 1685 | * | 1672 | * |
| 1686 | * try to accomplish several tasks: | 1673 | * try to accomplish several tasks: |
| 1674 | * - insert new fragment into the proper sequence slot (once that's done | ||
| 1675 | * newfrag will be set to NULL) | ||
| 1687 | * - reassemble any complete fragment sequence (non-null 'start' | 1676 | * - reassemble any complete fragment sequence (non-null 'start' |
| 1688 | * indicates there is a continguous sequence present) | 1677 | * indicates there is a continguous sequence present) |
| 1689 | * - discard any incomplete sequences that are below minseq -- due | 1678 | * - discard any incomplete sequences that are below minseq -- due |
| @@ -1692,46 +1681,71 @@ static void isdn_ppp_mp_receive(isdn_net_dev * net_dev, isdn_net_local * lp, | |||
| 1692 | * come to complete such sequence and it should be discarded | 1681 | * come to complete such sequence and it should be discarded |
| 1693 | * | 1682 | * |
| 1694 | * loop completes when we accomplished the following tasks: | 1683 | * loop completes when we accomplished the following tasks: |
| 1684 | * - new fragment is inserted in the proper sequence ('newfrag' is | ||
| 1685 | * set to NULL) | ||
| 1695 | * - we hit a gap in the sequence, so no reassembly/processing is | 1686 | * - we hit a gap in the sequence, so no reassembly/processing is |
| 1696 | * possible ('start' would be set to NULL) | 1687 | * possible ('start' would be set to NULL) |
| 1697 | * | 1688 | * |
| 1698 | * algorithm for this code is derived from code in the book | 1689 | * algorithm for this code is derived from code in the book |
| 1699 | * 'PPP Design And Debugging' by James Carlson (Addison-Wesley) | 1690 | * 'PPP Design And Debugging' by James Carlson (Addison-Wesley) |
| 1700 | */ | 1691 | */ |
| 1701 | skb_queue_walk_safe(&mp->frags, frag, nextf) { | 1692 | while (start != NULL || newfrag != NULL) { |
| 1702 | thisseq = MP_SEQ(frag); | 1693 | |
| 1703 | 1694 | thisseq = MP_SEQ(frag); | |
| 1704 | /* check for misplaced start */ | 1695 | nextf = frag->next; |
| 1705 | if (start != frag && (MP_FLAGS(frag) & MP_BEGIN_FRAG)) { | 1696 | |
| 1706 | printk(KERN_WARNING"isdn_mppp(seq %d): new " | 1697 | /* drop any duplicate fragments */ |
| 1707 | "BEGIN flag with no prior END", thisseq); | 1698 | if (newfrag != NULL && thisseq == newseq) { |
| 1708 | stats->seqerrs++; | 1699 | isdn_ppp_mp_free_skb(mp, newfrag); |
| 1709 | stats->frame_drops++; | 1700 | newfrag = NULL; |
| 1710 | isdn_ppp_mp_discard(mp, start, frag); | 1701 | } |
| 1711 | start = frag; | 1702 | |
| 1712 | } else if (MP_LE(thisseq, minseq)) { | 1703 | /* insert new fragment before next element if possible. */ |
| 1713 | if (MP_FLAGS(frag) & MP_BEGIN_FRAG) | 1704 | if (newfrag != NULL && (nextf == NULL || |
| 1705 | MP_LT(newseq, MP_SEQ(nextf)))) { | ||
| 1706 | newfrag->next = nextf; | ||
| 1707 | frag->next = nextf = newfrag; | ||
| 1708 | newfrag = NULL; | ||
| 1709 | } | ||
| 1710 | |||
| 1711 | if (start != NULL) { | ||
| 1712 | /* check for misplaced start */ | ||
| 1713 | if (start != frag && (MP_FLAGS(frag) & MP_BEGIN_FRAG)) { | ||
| 1714 | printk(KERN_WARNING"isdn_mppp(seq %d): new " | ||
| 1715 | "BEGIN flag with no prior END", thisseq); | ||
| 1716 | stats->seqerrs++; | ||
| 1717 | stats->frame_drops++; | ||
| 1718 | start = isdn_ppp_mp_discard(mp, start,frag); | ||
| 1719 | nextf = frag->next; | ||
| 1720 | } | ||
| 1721 | } else if (MP_LE(thisseq, minseq)) { | ||
| 1722 | if (MP_FLAGS(frag) & MP_BEGIN_FRAG) | ||
| 1714 | start = frag; | 1723 | start = frag; |
| 1715 | else { | 1724 | else { |
| 1716 | if (MP_FLAGS(frag) & MP_END_FRAG) | 1725 | if (MP_FLAGS(frag) & MP_END_FRAG) |
| 1717 | stats->frame_drops++; | 1726 | stats->frame_drops++; |
| 1718 | __skb_unlink(skb, &mp->frags); | 1727 | if( mp->frags == frag ) |
| 1728 | mp->frags = nextf; | ||
| 1719 | isdn_ppp_mp_free_skb(mp, frag); | 1729 | isdn_ppp_mp_free_skb(mp, frag); |
| 1730 | frag = nextf; | ||
| 1720 | continue; | 1731 | continue; |
| 1721 | } | 1732 | } |
| 1722 | } | 1733 | } |
| 1723 | 1734 | ||
| 1724 | /* if we have end fragment, then we have full reassembly | 1735 | /* if start is non-null and we have end fragment, then |
| 1725 | * sequence -- reassemble and process packet now | 1736 | * we have full reassembly sequence -- reassemble |
| 1737 | * and process packet now | ||
| 1726 | */ | 1738 | */ |
| 1727 | if (MP_FLAGS(frag) & MP_END_FRAG) { | 1739 | if (start != NULL && (MP_FLAGS(frag) & MP_END_FRAG)) { |
| 1728 | minseq = mp->seq = (thisseq+1) & MP_LONGSEQ_MASK; | 1740 | minseq = mp->seq = (thisseq+1) & MP_LONGSEQ_MASK; |
| 1729 | /* Reassemble the packet then dispatch it */ | 1741 | /* Reassemble the packet then dispatch it */ |
| 1730 | isdn_ppp_mp_reassembly(net_dev, lp, start, frag, thisseq); | 1742 | isdn_ppp_mp_reassembly(net_dev, lp, start, nextf); |
| 1743 | |||
| 1744 | start = NULL; | ||
| 1745 | frag = NULL; | ||
| 1731 | 1746 | ||
| 1732 | start = NULL; | 1747 | mp->frags = nextf; |
| 1733 | frag = NULL; | 1748 | } |
| 1734 | } | ||
| 1735 | 1749 | ||
| 1736 | /* check if need to update start pointer: if we just | 1750 | /* check if need to update start pointer: if we just |
| 1737 | * reassembled the packet and sequence is contiguous | 1751 | * reassembled the packet and sequence is contiguous |
| @@ -1742,25 +1756,26 @@ static void isdn_ppp_mp_receive(isdn_net_dev * net_dev, isdn_net_local * lp, | |||
| 1742 | * below low watermark and set start to the next frag or | 1756 | * below low watermark and set start to the next frag or |
| 1743 | * clear start ptr. | 1757 | * clear start ptr. |
| 1744 | */ | 1758 | */ |
| 1745 | if (nextf != (struct sk_buff *)&mp->frags && | 1759 | if (nextf != NULL && |
| 1746 | ((thisseq+1) & MP_LONGSEQ_MASK) == MP_SEQ(nextf)) { | 1760 | ((thisseq+1) & MP_LONGSEQ_MASK) == MP_SEQ(nextf)) { |
| 1747 | /* if we just reassembled and the next one is here, | 1761 | /* if we just reassembled and the next one is here, |
| 1748 | * then start another reassembly. | 1762 | * then start another reassembly. */ |
| 1749 | */ | 1763 | |
| 1750 | if (frag == NULL) { | 1764 | if (frag == NULL) { |
| 1751 | if (MP_FLAGS(nextf) & MP_BEGIN_FRAG) | 1765 | if (MP_FLAGS(nextf) & MP_BEGIN_FRAG) |
| 1752 | start = nextf; | 1766 | start = nextf; |
| 1753 | else { | 1767 | else |
| 1754 | printk(KERN_WARNING"isdn_mppp(seq %d):" | 1768 | { |
| 1755 | " END flag with no following " | 1769 | printk(KERN_WARNING"isdn_mppp(seq %d):" |
| 1756 | "BEGIN", thisseq); | 1770 | " END flag with no following " |
| 1771 | "BEGIN", thisseq); | ||
| 1757 | stats->seqerrs++; | 1772 | stats->seqerrs++; |
| 1758 | } | 1773 | } |
| 1759 | } | 1774 | } |
| 1760 | } else { | 1775 | |
| 1761 | if (nextf != (struct sk_buff *)&mp->frags && | 1776 | } else { |
| 1762 | frag != NULL && | 1777 | if ( nextf != NULL && frag != NULL && |
| 1763 | MP_LT(thisseq, minseq)) { | 1778 | MP_LT(thisseq, minseq)) { |
| 1764 | /* we've got a break in the sequence | 1779 | /* we've got a break in the sequence |
| 1765 | * and we not at the end yet | 1780 | * and we not at the end yet |
| 1766 | * and we did not just reassembled | 1781 | * and we did not just reassembled |
| @@ -1769,39 +1784,41 @@ static void isdn_ppp_mp_receive(isdn_net_dev * net_dev, isdn_net_local * lp, | |||
| 1769 | * discard all the frames below low watermark | 1784 | * discard all the frames below low watermark |
| 1770 | * and start over */ | 1785 | * and start over */ |
| 1771 | stats->frame_drops++; | 1786 | stats->frame_drops++; |
| 1772 | isdn_ppp_mp_discard(mp, start, nextf); | 1787 | mp->frags = isdn_ppp_mp_discard(mp,start,nextf); |
| 1773 | } | 1788 | } |
| 1774 | /* break in the sequence, no reassembly */ | 1789 | /* break in the sequence, no reassembly */ |
| 1775 | start = NULL; | 1790 | start = NULL; |
| 1776 | } | 1791 | } |
| 1777 | if (!start) | 1792 | |
| 1778 | break; | 1793 | frag = nextf; |
| 1779 | } | 1794 | } /* while -- main loop */ |
| 1780 | 1795 | ||
| 1781 | check_overflow: | 1796 | if (mp->frags == NULL) |
| 1797 | mp->frags = frag; | ||
| 1798 | |||
| 1782 | /* rather straighforward way to deal with (not very) possible | 1799 | /* rather straighforward way to deal with (not very) possible |
| 1783 | * queue overflow | 1800 | * queue overflow */ |
| 1784 | */ | ||
| 1785 | if (mp->frames > MP_MAX_QUEUE_LEN) { | 1801 | if (mp->frames > MP_MAX_QUEUE_LEN) { |
| 1786 | stats->overflows++; | 1802 | stats->overflows++; |
| 1787 | skb_queue_walk_safe(&mp->frags, frag, nextf) { | 1803 | while (mp->frames > MP_MAX_QUEUE_LEN) { |
| 1788 | if (mp->frames <= MP_MAX_QUEUE_LEN) | 1804 | frag = mp->frags->next; |
| 1789 | break; | 1805 | isdn_ppp_mp_free_skb(mp, mp->frags); |
| 1790 | __skb_unlink(frag, &mp->frags); | 1806 | mp->frags = frag; |
| 1791 | isdn_ppp_mp_free_skb(mp, frag); | ||
| 1792 | } | 1807 | } |
| 1793 | } | 1808 | } |
| 1794 | spin_unlock_irqrestore(&mp->lock, flags); | 1809 | spin_unlock_irqrestore(&mp->lock, flags); |
| 1795 | } | 1810 | } |
| 1796 | 1811 | ||
| 1797 | static void isdn_ppp_mp_cleanup(isdn_net_local *lp) | 1812 | static void isdn_ppp_mp_cleanup( isdn_net_local * lp ) |
| 1798 | { | 1813 | { |
| 1799 | struct sk_buff *skb, *tmp; | 1814 | struct sk_buff * frag = lp->netdev->pb->frags; |
| 1800 | 1815 | struct sk_buff * nextfrag; | |
| 1801 | skb_queue_walk_safe(&lp->netdev->pb->frags, skb, tmp) { | 1816 | while( frag ) { |
| 1802 | __skb_unlink(skb, &lp->netdev->pb->frags); | 1817 | nextfrag = frag->next; |
| 1803 | isdn_ppp_mp_free_skb(lp->netdev->pb, skb); | 1818 | isdn_ppp_mp_free_skb(lp->netdev->pb, frag); |
| 1804 | } | 1819 | frag = nextfrag; |
| 1820 | } | ||
| 1821 | lp->netdev->pb->frags = NULL; | ||
| 1805 | } | 1822 | } |
| 1806 | 1823 | ||
| 1807 | static u32 isdn_ppp_mp_get_seq( int short_seq, | 1824 | static u32 isdn_ppp_mp_get_seq( int short_seq, |
| @@ -1838,115 +1855,72 @@ static u32 isdn_ppp_mp_get_seq( int short_seq, | |||
| 1838 | return seq; | 1855 | return seq; |
| 1839 | } | 1856 | } |
| 1840 | 1857 | ||
| 1841 | static void isdn_ppp_mp_discard(ippp_bundle *mp, struct sk_buff *from, | 1858 | struct sk_buff * isdn_ppp_mp_discard( ippp_bundle * mp, |
| 1842 | struct sk_buff *to) | 1859 | struct sk_buff * from, struct sk_buff * to ) |
| 1843 | { | 1860 | { |
| 1844 | if (from) { | 1861 | if( from ) |
| 1845 | struct sk_buff *skb, *tmp; | 1862 | while (from != to) { |
| 1846 | int freeing = 0; | 1863 | struct sk_buff * next = from->next; |
| 1847 | 1864 | isdn_ppp_mp_free_skb(mp, from); | |
| 1848 | skb_queue_walk_safe(&mp->frags, skb, tmp) { | 1865 | from = next; |
| 1849 | if (skb == to) | ||
| 1850 | break; | ||
| 1851 | if (skb == from) | ||
| 1852 | freeing = 1; | ||
| 1853 | if (!freeing) | ||
| 1854 | continue; | ||
| 1855 | __skb_unlink(skb, &mp->frags); | ||
| 1856 | isdn_ppp_mp_free_skb(mp, skb); | ||
| 1857 | } | 1866 | } |
| 1858 | } | 1867 | return from; |
| 1859 | } | ||
| 1860 | |||
| 1861 | static unsigned int calc_tot_len(struct sk_buff_head *queue, | ||
| 1862 | struct sk_buff *from, struct sk_buff *to) | ||
| 1863 | { | ||
| 1864 | unsigned int tot_len = 0; | ||
| 1865 | struct sk_buff *skb; | ||
| 1866 | int found_start = 0; | ||
| 1867 | |||
| 1868 | skb_queue_walk(queue, skb) { | ||
| 1869 | if (skb == from) | ||
| 1870 | found_start = 1; | ||
| 1871 | if (!found_start) | ||
| 1872 | continue; | ||
| 1873 | tot_len += skb->len - MP_HEADER_LEN; | ||
| 1874 | if (skb == to) | ||
| 1875 | break; | ||
| 1876 | } | ||
| 1877 | return tot_len; | ||
| 1878 | } | 1868 | } |
| 1879 | 1869 | ||
| 1880 | /* Reassemble packet using fragments in the reassembly queue from | 1870 | void isdn_ppp_mp_reassembly( isdn_net_dev * net_dev, isdn_net_local * lp, |
| 1881 | * 'from' until 'to', inclusive. | 1871 | struct sk_buff * from, struct sk_buff * to ) |
| 1882 | */ | ||
| 1883 | static void isdn_ppp_mp_reassembly(isdn_net_dev *net_dev, isdn_net_local *lp, | ||
| 1884 | struct sk_buff *from, struct sk_buff *to, | ||
| 1885 | u32 lastseq) | ||
| 1886 | { | 1872 | { |
| 1887 | ippp_bundle *mp = net_dev->pb; | 1873 | ippp_bundle * mp = net_dev->pb; |
| 1888 | unsigned int tot_len; | ||
| 1889 | struct sk_buff *skb; | ||
| 1890 | int proto; | 1874 | int proto; |
| 1875 | struct sk_buff * skb; | ||
| 1876 | unsigned int tot_len; | ||
| 1891 | 1877 | ||
| 1892 | if (lp->ppp_slot < 0 || lp->ppp_slot >= ISDN_MAX_CHANNELS) { | 1878 | if (lp->ppp_slot < 0 || lp->ppp_slot >= ISDN_MAX_CHANNELS) { |
| 1893 | printk(KERN_ERR "%s: lp->ppp_slot(%d) out of range\n", | 1879 | printk(KERN_ERR "%s: lp->ppp_slot(%d) out of range\n", |
| 1894 | __func__, lp->ppp_slot); | 1880 | __func__, lp->ppp_slot); |
| 1895 | return; | 1881 | return; |
| 1896 | } | 1882 | } |
| 1897 | 1883 | if( MP_FLAGS(from) == (MP_BEGIN_FRAG | MP_END_FRAG) ) { | |
| 1898 | tot_len = calc_tot_len(&mp->frags, from, to); | 1884 | if( ippp_table[lp->ppp_slot]->debug & 0x40 ) |
| 1899 | |||
| 1900 | if (MP_FLAGS(from) == (MP_BEGIN_FRAG | MP_END_FRAG)) { | ||
| 1901 | if (ippp_table[lp->ppp_slot]->debug & 0x40) | ||
| 1902 | printk(KERN_DEBUG "isdn_mppp: reassembly: frame %d, " | 1885 | printk(KERN_DEBUG "isdn_mppp: reassembly: frame %d, " |
| 1903 | "len %d\n", MP_SEQ(from), from->len); | 1886 | "len %d\n", MP_SEQ(from), from->len ); |
| 1904 | skb = from; | 1887 | skb = from; |
| 1905 | skb_pull(skb, MP_HEADER_LEN); | 1888 | skb_pull(skb, MP_HEADER_LEN); |
| 1906 | __skb_unlink(skb, &mp->frags); | ||
| 1907 | mp->frames--; | 1889 | mp->frames--; |
| 1908 | } else { | 1890 | } else { |
| 1909 | struct sk_buff *walk, *tmp; | 1891 | struct sk_buff * frag; |
| 1910 | int found_start = 0; | 1892 | int n; |
| 1911 | 1893 | ||
| 1912 | if (ippp_table[lp->ppp_slot]->debug & 0x40) | 1894 | for(tot_len=n=0, frag=from; frag != to; frag=frag->next, n++) |
| 1913 | printk(KERN_DEBUG"isdn_mppp: reassembling frames %d " | 1895 | tot_len += frag->len - MP_HEADER_LEN; |
| 1914 | "to %d, len %d\n", MP_SEQ(from), lastseq, | ||
| 1915 | tot_len); | ||
| 1916 | 1896 | ||
| 1917 | skb = dev_alloc_skb(tot_len); | 1897 | if( ippp_table[lp->ppp_slot]->debug & 0x40 ) |
| 1918 | if (!skb) | 1898 | printk(KERN_DEBUG"isdn_mppp: reassembling frames %d " |
| 1899 | "to %d, len %d\n", MP_SEQ(from), | ||
| 1900 | (MP_SEQ(from)+n-1) & MP_LONGSEQ_MASK, tot_len ); | ||
| 1901 | if( (skb = dev_alloc_skb(tot_len)) == NULL ) { | ||
| 1919 | printk(KERN_ERR "isdn_mppp: cannot allocate sk buff " | 1902 | printk(KERN_ERR "isdn_mppp: cannot allocate sk buff " |
| 1920 | "of size %d\n", tot_len); | 1903 | "of size %d\n", tot_len); |
| 1921 | 1904 | isdn_ppp_mp_discard(mp, from, to); | |
| 1922 | found_start = 0; | 1905 | return; |
| 1923 | skb_queue_walk_safe(&mp->frags, walk, tmp) { | 1906 | } |
| 1924 | if (walk == from) | ||
| 1925 | found_start = 1; | ||
| 1926 | if (!found_start) | ||
| 1927 | continue; | ||
| 1928 | 1907 | ||
| 1929 | if (skb) { | 1908 | while( from != to ) { |
| 1930 | unsigned int len = walk->len - MP_HEADER_LEN; | 1909 | unsigned int len = from->len - MP_HEADER_LEN; |
| 1931 | skb_copy_from_linear_data_offset(walk, MP_HEADER_LEN, | ||
| 1932 | skb_put(skb, len), | ||
| 1933 | len); | ||
| 1934 | } | ||
| 1935 | __skb_unlink(walk, &mp->frags); | ||
| 1936 | isdn_ppp_mp_free_skb(mp, walk); | ||
| 1937 | 1910 | ||
| 1938 | if (walk == to) | 1911 | skb_copy_from_linear_data_offset(from, MP_HEADER_LEN, |
| 1939 | break; | 1912 | skb_put(skb,len), |
| 1913 | len); | ||
| 1914 | frag = from->next; | ||
| 1915 | isdn_ppp_mp_free_skb(mp, from); | ||
| 1916 | from = frag; | ||
| 1940 | } | 1917 | } |
| 1941 | } | 1918 | } |
| 1942 | if (!skb) | ||
| 1943 | return; | ||
| 1944 | |||
| 1945 | proto = isdn_ppp_strip_proto(skb); | 1919 | proto = isdn_ppp_strip_proto(skb); |
| 1946 | isdn_ppp_push_higher(net_dev, lp, skb, proto); | 1920 | isdn_ppp_push_higher(net_dev, lp, skb, proto); |
| 1947 | } | 1921 | } |
| 1948 | 1922 | ||
| 1949 | static void isdn_ppp_mp_free_skb(ippp_bundle *mp, struct sk_buff *skb) | 1923 | static void isdn_ppp_mp_free_skb(ippp_bundle * mp, struct sk_buff * skb) |
| 1950 | { | 1924 | { |
| 1951 | dev_kfree_skb(skb); | 1925 | dev_kfree_skb(skb); |
| 1952 | mp->frames--; | 1926 | mp->frames--; |
diff --git a/drivers/leds/leds-gpio.c b/drivers/leds/leds-gpio.c index 7467980b8cf9..e5225d28f392 100644 --- a/drivers/leds/leds-gpio.c +++ b/drivers/leds/leds-gpio.c | |||
| @@ -78,6 +78,8 @@ static int __devinit create_gpio_led(const struct gpio_led *template, | |||
| 78 | { | 78 | { |
| 79 | int ret, state; | 79 | int ret, state; |
| 80 | 80 | ||
| 81 | led_dat->gpio = -1; | ||
| 82 | |||
| 81 | /* skip leds that aren't available */ | 83 | /* skip leds that aren't available */ |
| 82 | if (!gpio_is_valid(template->gpio)) { | 84 | if (!gpio_is_valid(template->gpio)) { |
| 83 | printk(KERN_INFO "Skipping unavailable LED gpio %d (%s)\n", | 85 | printk(KERN_INFO "Skipping unavailable LED gpio %d (%s)\n", |
diff --git a/drivers/md/md.c b/drivers/md/md.c index e64c971038d1..b182f86a19dd 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c | |||
| @@ -944,6 +944,14 @@ static int super_90_validate(mddev_t *mddev, mdk_rdev_t *rdev) | |||
| 944 | desc->raid_disk < mddev->raid_disks */) { | 944 | desc->raid_disk < mddev->raid_disks */) { |
| 945 | set_bit(In_sync, &rdev->flags); | 945 | set_bit(In_sync, &rdev->flags); |
| 946 | rdev->raid_disk = desc->raid_disk; | 946 | rdev->raid_disk = desc->raid_disk; |
| 947 | } else if (desc->state & (1<<MD_DISK_ACTIVE)) { | ||
| 948 | /* active but not in sync implies recovery up to | ||
| 949 | * reshape position. We don't know exactly where | ||
| 950 | * that is, so set to zero for now */ | ||
| 951 | if (mddev->minor_version >= 91) { | ||
| 952 | rdev->recovery_offset = 0; | ||
| 953 | rdev->raid_disk = desc->raid_disk; | ||
| 954 | } | ||
| 947 | } | 955 | } |
| 948 | if (desc->state & (1<<MD_DISK_WRITEMOSTLY)) | 956 | if (desc->state & (1<<MD_DISK_WRITEMOSTLY)) |
| 949 | set_bit(WriteMostly, &rdev->flags); | 957 | set_bit(WriteMostly, &rdev->flags); |
| @@ -1032,8 +1040,19 @@ static void super_90_sync(mddev_t *mddev, mdk_rdev_t *rdev) | |||
| 1032 | list_for_each_entry(rdev2, &mddev->disks, same_set) { | 1040 | list_for_each_entry(rdev2, &mddev->disks, same_set) { |
| 1033 | mdp_disk_t *d; | 1041 | mdp_disk_t *d; |
| 1034 | int desc_nr; | 1042 | int desc_nr; |
| 1035 | if (rdev2->raid_disk >= 0 && test_bit(In_sync, &rdev2->flags) | 1043 | int is_active = test_bit(In_sync, &rdev2->flags); |
| 1036 | && !test_bit(Faulty, &rdev2->flags)) | 1044 | |
| 1045 | if (rdev2->raid_disk >= 0 && | ||
| 1046 | sb->minor_version >= 91) | ||
| 1047 | /* we have nowhere to store the recovery_offset, | ||
| 1048 | * but if it is not below the reshape_position, | ||
| 1049 | * we can piggy-back on that. | ||
| 1050 | */ | ||
| 1051 | is_active = 1; | ||
| 1052 | if (rdev2->raid_disk < 0 || | ||
| 1053 | test_bit(Faulty, &rdev2->flags)) | ||
| 1054 | is_active = 0; | ||
| 1055 | if (is_active) | ||
| 1037 | desc_nr = rdev2->raid_disk; | 1056 | desc_nr = rdev2->raid_disk; |
| 1038 | else | 1057 | else |
| 1039 | desc_nr = next_spare++; | 1058 | desc_nr = next_spare++; |
| @@ -1043,16 +1062,16 @@ static void super_90_sync(mddev_t *mddev, mdk_rdev_t *rdev) | |||
| 1043 | d->number = rdev2->desc_nr; | 1062 | d->number = rdev2->desc_nr; |
| 1044 | d->major = MAJOR(rdev2->bdev->bd_dev); | 1063 | d->major = MAJOR(rdev2->bdev->bd_dev); |
| 1045 | d->minor = MINOR(rdev2->bdev->bd_dev); | 1064 | d->minor = MINOR(rdev2->bdev->bd_dev); |
| 1046 | if (rdev2->raid_disk >= 0 && test_bit(In_sync, &rdev2->flags) | 1065 | if (is_active) |
| 1047 | && !test_bit(Faulty, &rdev2->flags)) | ||
| 1048 | d->raid_disk = rdev2->raid_disk; | 1066 | d->raid_disk = rdev2->raid_disk; |
| 1049 | else | 1067 | else |
| 1050 | d->raid_disk = rdev2->desc_nr; /* compatibility */ | 1068 | d->raid_disk = rdev2->desc_nr; /* compatibility */ |
| 1051 | if (test_bit(Faulty, &rdev2->flags)) | 1069 | if (test_bit(Faulty, &rdev2->flags)) |
| 1052 | d->state = (1<<MD_DISK_FAULTY); | 1070 | d->state = (1<<MD_DISK_FAULTY); |
| 1053 | else if (test_bit(In_sync, &rdev2->flags)) { | 1071 | else if (is_active) { |
| 1054 | d->state = (1<<MD_DISK_ACTIVE); | 1072 | d->state = (1<<MD_DISK_ACTIVE); |
| 1055 | d->state |= (1<<MD_DISK_SYNC); | 1073 | if (test_bit(In_sync, &rdev2->flags)) |
| 1074 | d->state |= (1<<MD_DISK_SYNC); | ||
| 1056 | active++; | 1075 | active++; |
| 1057 | working++; | 1076 | working++; |
| 1058 | } else { | 1077 | } else { |
| @@ -1382,8 +1401,6 @@ static void super_1_sync(mddev_t *mddev, mdk_rdev_t *rdev) | |||
| 1382 | 1401 | ||
| 1383 | if (rdev->raid_disk >= 0 && | 1402 | if (rdev->raid_disk >= 0 && |
| 1384 | !test_bit(In_sync, &rdev->flags)) { | 1403 | !test_bit(In_sync, &rdev->flags)) { |
| 1385 | if (mddev->curr_resync_completed > rdev->recovery_offset) | ||
| 1386 | rdev->recovery_offset = mddev->curr_resync_completed; | ||
| 1387 | if (rdev->recovery_offset > 0) { | 1404 | if (rdev->recovery_offset > 0) { |
| 1388 | sb->feature_map |= | 1405 | sb->feature_map |= |
| 1389 | cpu_to_le32(MD_FEATURE_RECOVERY_OFFSET); | 1406 | cpu_to_le32(MD_FEATURE_RECOVERY_OFFSET); |
| @@ -1917,6 +1934,14 @@ static void sync_sbs(mddev_t * mddev, int nospares) | |||
| 1917 | */ | 1934 | */ |
| 1918 | mdk_rdev_t *rdev; | 1935 | mdk_rdev_t *rdev; |
| 1919 | 1936 | ||
| 1937 | /* First make sure individual recovery_offsets are correct */ | ||
| 1938 | list_for_each_entry(rdev, &mddev->disks, same_set) { | ||
| 1939 | if (rdev->raid_disk >= 0 && | ||
| 1940 | !test_bit(In_sync, &rdev->flags) && | ||
| 1941 | mddev->curr_resync_completed > rdev->recovery_offset) | ||
| 1942 | rdev->recovery_offset = mddev->curr_resync_completed; | ||
| 1943 | |||
| 1944 | } | ||
| 1920 | list_for_each_entry(rdev, &mddev->disks, same_set) { | 1945 | list_for_each_entry(rdev, &mddev->disks, same_set) { |
| 1921 | if (rdev->sb_events == mddev->events || | 1946 | if (rdev->sb_events == mddev->events || |
| 1922 | (nospares && | 1947 | (nospares && |
diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c index a053423785c9..e07ce2e033a9 100644 --- a/drivers/md/raid1.c +++ b/drivers/md/raid1.c | |||
| @@ -1650,11 +1650,12 @@ static void raid1d(mddev_t *mddev) | |||
| 1650 | r1_bio->sector, | 1650 | r1_bio->sector, |
| 1651 | r1_bio->sectors); | 1651 | r1_bio->sectors); |
| 1652 | unfreeze_array(conf); | 1652 | unfreeze_array(conf); |
| 1653 | } | 1653 | } else |
| 1654 | md_error(mddev, | ||
| 1655 | conf->mirrors[r1_bio->read_disk].rdev); | ||
| 1654 | 1656 | ||
| 1655 | bio = r1_bio->bios[r1_bio->read_disk]; | 1657 | bio = r1_bio->bios[r1_bio->read_disk]; |
| 1656 | if ((disk=read_balance(conf, r1_bio)) == -1 || | 1658 | if ((disk=read_balance(conf, r1_bio)) == -1) { |
| 1657 | disk == r1_bio->read_disk) { | ||
| 1658 | printk(KERN_ALERT "raid1: %s: unrecoverable I/O" | 1659 | printk(KERN_ALERT "raid1: %s: unrecoverable I/O" |
| 1659 | " read error for block %llu\n", | 1660 | " read error for block %llu\n", |
| 1660 | bdevname(bio->bi_bdev,b), | 1661 | bdevname(bio->bi_bdev,b), |
diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c index dcce204b6c73..d29215d966da 100644 --- a/drivers/md/raid5.c +++ b/drivers/md/raid5.c | |||
| @@ -4823,11 +4823,40 @@ static raid5_conf_t *setup_conf(mddev_t *mddev) | |||
| 4823 | return ERR_PTR(-ENOMEM); | 4823 | return ERR_PTR(-ENOMEM); |
| 4824 | } | 4824 | } |
| 4825 | 4825 | ||
| 4826 | |||
| 4827 | static int only_parity(int raid_disk, int algo, int raid_disks, int max_degraded) | ||
| 4828 | { | ||
| 4829 | switch (algo) { | ||
| 4830 | case ALGORITHM_PARITY_0: | ||
| 4831 | if (raid_disk < max_degraded) | ||
| 4832 | return 1; | ||
| 4833 | break; | ||
| 4834 | case ALGORITHM_PARITY_N: | ||
| 4835 | if (raid_disk >= raid_disks - max_degraded) | ||
| 4836 | return 1; | ||
| 4837 | break; | ||
| 4838 | case ALGORITHM_PARITY_0_6: | ||
| 4839 | if (raid_disk == 0 || | ||
| 4840 | raid_disk == raid_disks - 1) | ||
| 4841 | return 1; | ||
| 4842 | break; | ||
| 4843 | case ALGORITHM_LEFT_ASYMMETRIC_6: | ||
| 4844 | case ALGORITHM_RIGHT_ASYMMETRIC_6: | ||
| 4845 | case ALGORITHM_LEFT_SYMMETRIC_6: | ||
| 4846 | case ALGORITHM_RIGHT_SYMMETRIC_6: | ||
| 4847 | if (raid_disk == raid_disks - 1) | ||
| 4848 | return 1; | ||
| 4849 | } | ||
| 4850 | return 0; | ||
| 4851 | } | ||
| 4852 | |||
| 4826 | static int run(mddev_t *mddev) | 4853 | static int run(mddev_t *mddev) |
| 4827 | { | 4854 | { |
| 4828 | raid5_conf_t *conf; | 4855 | raid5_conf_t *conf; |
| 4829 | int working_disks = 0, chunk_size; | 4856 | int working_disks = 0, chunk_size; |
| 4857 | int dirty_parity_disks = 0; | ||
| 4830 | mdk_rdev_t *rdev; | 4858 | mdk_rdev_t *rdev; |
| 4859 | sector_t reshape_offset = 0; | ||
| 4831 | 4860 | ||
| 4832 | if (mddev->recovery_cp != MaxSector) | 4861 | if (mddev->recovery_cp != MaxSector) |
| 4833 | printk(KERN_NOTICE "raid5: %s is not clean" | 4862 | printk(KERN_NOTICE "raid5: %s is not clean" |
| @@ -4861,6 +4890,7 @@ static int run(mddev_t *mddev) | |||
| 4861 | "on a stripe boundary\n"); | 4890 | "on a stripe boundary\n"); |
| 4862 | return -EINVAL; | 4891 | return -EINVAL; |
| 4863 | } | 4892 | } |
| 4893 | reshape_offset = here_new * mddev->new_chunk_sectors; | ||
| 4864 | /* here_new is the stripe we will write to */ | 4894 | /* here_new is the stripe we will write to */ |
| 4865 | here_old = mddev->reshape_position; | 4895 | here_old = mddev->reshape_position; |
| 4866 | sector_div(here_old, mddev->chunk_sectors * | 4896 | sector_div(here_old, mddev->chunk_sectors * |
| @@ -4916,10 +4946,51 @@ static int run(mddev_t *mddev) | |||
| 4916 | /* | 4946 | /* |
| 4917 | * 0 for a fully functional array, 1 or 2 for a degraded array. | 4947 | * 0 for a fully functional array, 1 or 2 for a degraded array. |
| 4918 | */ | 4948 | */ |
| 4919 | list_for_each_entry(rdev, &mddev->disks, same_set) | 4949 | list_for_each_entry(rdev, &mddev->disks, same_set) { |
| 4920 | if (rdev->raid_disk >= 0 && | 4950 | if (rdev->raid_disk < 0) |
| 4921 | test_bit(In_sync, &rdev->flags)) | 4951 | continue; |
| 4952 | if (test_bit(In_sync, &rdev->flags)) | ||
| 4922 | working_disks++; | 4953 | working_disks++; |
| 4954 | /* This disc is not fully in-sync. However if it | ||
| 4955 | * just stored parity (beyond the recovery_offset), | ||
| 4956 | * when we don't need to be concerned about the | ||
| 4957 | * array being dirty. | ||
| 4958 | * When reshape goes 'backwards', we never have | ||
| 4959 | * partially completed devices, so we only need | ||
| 4960 | * to worry about reshape going forwards. | ||
| 4961 | */ | ||
| 4962 | /* Hack because v0.91 doesn't store recovery_offset properly. */ | ||
| 4963 | if (mddev->major_version == 0 && | ||
| 4964 | mddev->minor_version > 90) | ||
| 4965 | rdev->recovery_offset = reshape_offset; | ||
| 4966 | |||
| 4967 | printk("%d: w=%d pa=%d pr=%d m=%d a=%d r=%d op1=%d op2=%d\n", | ||
| 4968 | rdev->raid_disk, working_disks, conf->prev_algo, | ||
| 4969 | conf->previous_raid_disks, conf->max_degraded, | ||
| 4970 | conf->algorithm, conf->raid_disks, | ||
| 4971 | only_parity(rdev->raid_disk, | ||
| 4972 | conf->prev_algo, | ||
| 4973 | conf->previous_raid_disks, | ||
| 4974 | conf->max_degraded), | ||
| 4975 | only_parity(rdev->raid_disk, | ||
| 4976 | conf->algorithm, | ||
| 4977 | conf->raid_disks, | ||
| 4978 | conf->max_degraded)); | ||
| 4979 | if (rdev->recovery_offset < reshape_offset) { | ||
| 4980 | /* We need to check old and new layout */ | ||
| 4981 | if (!only_parity(rdev->raid_disk, | ||
| 4982 | conf->algorithm, | ||
| 4983 | conf->raid_disks, | ||
| 4984 | conf->max_degraded)) | ||
| 4985 | continue; | ||
| 4986 | } | ||
| 4987 | if (!only_parity(rdev->raid_disk, | ||
| 4988 | conf->prev_algo, | ||
| 4989 | conf->previous_raid_disks, | ||
| 4990 | conf->max_degraded)) | ||
| 4991 | continue; | ||
| 4992 | dirty_parity_disks++; | ||
| 4993 | } | ||
| 4923 | 4994 | ||
| 4924 | mddev->degraded = (max(conf->raid_disks, conf->previous_raid_disks) | 4995 | mddev->degraded = (max(conf->raid_disks, conf->previous_raid_disks) |
| 4925 | - working_disks); | 4996 | - working_disks); |
| @@ -4935,7 +5006,7 @@ static int run(mddev_t *mddev) | |||
| 4935 | mddev->dev_sectors &= ~(mddev->chunk_sectors - 1); | 5006 | mddev->dev_sectors &= ~(mddev->chunk_sectors - 1); |
| 4936 | mddev->resync_max_sectors = mddev->dev_sectors; | 5007 | mddev->resync_max_sectors = mddev->dev_sectors; |
| 4937 | 5008 | ||
| 4938 | if (mddev->degraded > 0 && | 5009 | if (mddev->degraded > dirty_parity_disks && |
| 4939 | mddev->recovery_cp != MaxSector) { | 5010 | mddev->recovery_cp != MaxSector) { |
| 4940 | if (mddev->ok_start_degraded) | 5011 | if (mddev->ok_start_degraded) |
| 4941 | printk(KERN_WARNING | 5012 | printk(KERN_WARNING |
| @@ -5361,9 +5432,11 @@ static int raid5_start_reshape(mddev_t *mddev) | |||
| 5361 | !test_bit(Faulty, &rdev->flags)) { | 5432 | !test_bit(Faulty, &rdev->flags)) { |
| 5362 | if (raid5_add_disk(mddev, rdev) == 0) { | 5433 | if (raid5_add_disk(mddev, rdev) == 0) { |
| 5363 | char nm[20]; | 5434 | char nm[20]; |
| 5364 | set_bit(In_sync, &rdev->flags); | 5435 | if (rdev->raid_disk >= conf->previous_raid_disks) |
| 5436 | set_bit(In_sync, &rdev->flags); | ||
| 5437 | else | ||
| 5438 | rdev->recovery_offset = 0; | ||
| 5365 | added_devices++; | 5439 | added_devices++; |
| 5366 | rdev->recovery_offset = 0; | ||
| 5367 | sprintf(nm, "rd%d", rdev->raid_disk); | 5440 | sprintf(nm, "rd%d", rdev->raid_disk); |
| 5368 | if (sysfs_create_link(&mddev->kobj, | 5441 | if (sysfs_create_link(&mddev->kobj, |
| 5369 | &rdev->kobj, nm)) | 5442 | &rdev->kobj, nm)) |
diff --git a/drivers/media/common/ir-functions.c b/drivers/media/common/ir-functions.c index 655474b29e21..abd4791acb0e 100644 --- a/drivers/media/common/ir-functions.c +++ b/drivers/media/common/ir-functions.c | |||
| @@ -64,7 +64,7 @@ void ir_input_init(struct input_dev *dev, struct ir_input_state *ir, | |||
| 64 | 64 | ||
| 65 | ir->ir_type = ir_type; | 65 | ir->ir_type = ir_type; |
| 66 | 66 | ||
| 67 | memset(ir->ir_codes, sizeof(ir->ir_codes), 0); | 67 | memset(ir->ir_codes, 0, sizeof(ir->ir_codes)); |
| 68 | 68 | ||
| 69 | /* | 69 | /* |
| 70 | * FIXME: This is a temporary workaround to use the new IR tables | 70 | * FIXME: This is a temporary workaround to use the new IR tables |
diff --git a/drivers/media/common/tuners/tda18271-fe.c b/drivers/media/common/tuners/tda18271-fe.c index 64595112000d..3a50ce96fcb9 100644 --- a/drivers/media/common/tuners/tda18271-fe.c +++ b/drivers/media/common/tuners/tda18271-fe.c | |||
| @@ -616,13 +616,13 @@ static int tda18271_rf_tracking_filters_init(struct dvb_frontend *fe, u32 freq) | |||
| 616 | case RF2: | 616 | case RF2: |
| 617 | map[i].rf_a1 = (prog_cal[RF2] - prog_tab[RF2] - | 617 | map[i].rf_a1 = (prog_cal[RF2] - prog_tab[RF2] - |
| 618 | prog_cal[RF1] + prog_tab[RF1]) / | 618 | prog_cal[RF1] + prog_tab[RF1]) / |
| 619 | ((rf_freq[RF2] - rf_freq[RF1]) / 1000); | 619 | (s32)((rf_freq[RF2] - rf_freq[RF1]) / 1000); |
| 620 | map[i].rf2 = rf_freq[RF2] / 1000; | 620 | map[i].rf2 = rf_freq[RF2] / 1000; |
| 621 | break; | 621 | break; |
| 622 | case RF3: | 622 | case RF3: |
| 623 | map[i].rf_a2 = (prog_cal[RF3] - prog_tab[RF3] - | 623 | map[i].rf_a2 = (prog_cal[RF3] - prog_tab[RF3] - |
| 624 | prog_cal[RF2] + prog_tab[RF2]) / | 624 | prog_cal[RF2] + prog_tab[RF2]) / |
| 625 | ((rf_freq[RF3] - rf_freq[RF2]) / 1000); | 625 | (s32)((rf_freq[RF3] - rf_freq[RF2]) / 1000); |
| 626 | map[i].rf_b2 = prog_cal[RF2] - prog_tab[RF2]; | 626 | map[i].rf_b2 = prog_cal[RF2] - prog_tab[RF2]; |
| 627 | map[i].rf3 = rf_freq[RF3] / 1000; | 627 | map[i].rf3 = rf_freq[RF3] / 1000; |
| 628 | break; | 628 | break; |
| @@ -1000,12 +1000,12 @@ static int tda18271_set_analog_params(struct dvb_frontend *fe, | |||
| 1000 | struct tda18271_std_map_item *map; | 1000 | struct tda18271_std_map_item *map; |
| 1001 | char *mode; | 1001 | char *mode; |
| 1002 | int ret; | 1002 | int ret; |
| 1003 | u32 freq = params->frequency * 62500; | 1003 | u32 freq = params->frequency * 125 * |
| 1004 | ((params->mode == V4L2_TUNER_RADIO) ? 1 : 1000) / 2; | ||
| 1004 | 1005 | ||
| 1005 | priv->mode = TDA18271_ANALOG; | 1006 | priv->mode = TDA18271_ANALOG; |
| 1006 | 1007 | ||
| 1007 | if (params->mode == V4L2_TUNER_RADIO) { | 1008 | if (params->mode == V4L2_TUNER_RADIO) { |
| 1008 | freq = freq / 1000; | ||
| 1009 | map = &std_map->fm_radio; | 1009 | map = &std_map->fm_radio; |
| 1010 | mode = "fm"; | 1010 | mode = "fm"; |
| 1011 | } else if (params->std & V4L2_STD_MN) { | 1011 | } else if (params->std & V4L2_STD_MN) { |
diff --git a/drivers/media/dvb/dvb-core/dvb_frontend.c b/drivers/media/dvb/dvb-core/dvb_frontend.c index ddf639ed2fd8..98082416aa52 100644 --- a/drivers/media/dvb/dvb-core/dvb_frontend.c +++ b/drivers/media/dvb/dvb-core/dvb_frontend.c | |||
| @@ -31,6 +31,7 @@ | |||
| 31 | #include <linux/wait.h> | 31 | #include <linux/wait.h> |
| 32 | #include <linux/slab.h> | 32 | #include <linux/slab.h> |
| 33 | #include <linux/poll.h> | 33 | #include <linux/poll.h> |
| 34 | #include <linux/semaphore.h> | ||
| 34 | #include <linux/module.h> | 35 | #include <linux/module.h> |
| 35 | #include <linux/list.h> | 36 | #include <linux/list.h> |
| 36 | #include <linux/freezer.h> | 37 | #include <linux/freezer.h> |
diff --git a/drivers/media/dvb/dvb-usb/Kconfig b/drivers/media/dvb/dvb-usb/Kconfig index 9744b0692417..0e4b97fba384 100644 --- a/drivers/media/dvb/dvb-usb/Kconfig +++ b/drivers/media/dvb/dvb-usb/Kconfig | |||
| @@ -75,7 +75,7 @@ config DVB_USB_DIB0700 | |||
| 75 | select DVB_DIB3000MC if !DVB_FE_CUSTOMISE | 75 | select DVB_DIB3000MC if !DVB_FE_CUSTOMISE |
| 76 | select DVB_S5H1411 if !DVB_FE_CUSTOMISE | 76 | select DVB_S5H1411 if !DVB_FE_CUSTOMISE |
| 77 | select DVB_LGDT3305 if !DVB_FE_CUSTOMISE | 77 | select DVB_LGDT3305 if !DVB_FE_CUSTOMISE |
| 78 | select DVB_TUNER_DIB0070 | 78 | select DVB_TUNER_DIB0070 if !DVB_FE_CUSTOMISE |
| 79 | select MEDIA_TUNER_MT2060 if !MEDIA_TUNER_CUSTOMISE | 79 | select MEDIA_TUNER_MT2060 if !MEDIA_TUNER_CUSTOMISE |
| 80 | select MEDIA_TUNER_MT2266 if !MEDIA_TUNER_CUSTOMISE | 80 | select MEDIA_TUNER_MT2266 if !MEDIA_TUNER_CUSTOMISE |
| 81 | select MEDIA_TUNER_XC2028 if !MEDIA_TUNER_CUSTOMISE | 81 | select MEDIA_TUNER_XC2028 if !MEDIA_TUNER_CUSTOMISE |
diff --git a/drivers/media/dvb/dvb-usb/ce6230.c b/drivers/media/dvb/dvb-usb/ce6230.c index 0737c6377892..3df2045b7d2d 100644 --- a/drivers/media/dvb/dvb-usb/ce6230.c +++ b/drivers/media/dvb/dvb-usb/ce6230.c | |||
| @@ -105,7 +105,7 @@ static int ce6230_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msg[], | |||
| 105 | int i = 0; | 105 | int i = 0; |
| 106 | struct req_t req; | 106 | struct req_t req; |
| 107 | int ret = 0; | 107 | int ret = 0; |
| 108 | memset(&req, 0, sizeof(&req)); | 108 | memset(&req, 0, sizeof(req)); |
| 109 | 109 | ||
| 110 | if (num > 2) | 110 | if (num > 2) |
| 111 | return -EINVAL; | 111 | return -EINVAL; |
diff --git a/drivers/media/dvb/dvb-usb/cxusb.c b/drivers/media/dvb/dvb-usb/cxusb.c index f65591fb7cec..2a53dd096eef 100644 --- a/drivers/media/dvb/dvb-usb/cxusb.c +++ b/drivers/media/dvb/dvb-usb/cxusb.c | |||
| @@ -663,6 +663,14 @@ static struct zl10353_config cxusb_zl10353_xc3028_config = { | |||
| 663 | .parallel_ts = 1, | 663 | .parallel_ts = 1, |
| 664 | }; | 664 | }; |
| 665 | 665 | ||
| 666 | static struct zl10353_config cxusb_zl10353_xc3028_config_no_i2c_gate = { | ||
| 667 | .demod_address = 0x0f, | ||
| 668 | .if2 = 45600, | ||
| 669 | .no_tuner = 1, | ||
| 670 | .parallel_ts = 1, | ||
| 671 | .disable_i2c_gate_ctrl = 1, | ||
| 672 | }; | ||
| 673 | |||
| 666 | static struct mt352_config cxusb_mt352_xc3028_config = { | 674 | static struct mt352_config cxusb_mt352_xc3028_config = { |
| 667 | .demod_address = 0x0f, | 675 | .demod_address = 0x0f, |
| 668 | .if2 = 4560, | 676 | .if2 = 4560, |
| @@ -894,7 +902,7 @@ static int cxusb_dualdig4_frontend_attach(struct dvb_usb_adapter *adap) | |||
| 894 | cxusb_bluebird_gpio_pulse(adap->dev, 0x02, 1); | 902 | cxusb_bluebird_gpio_pulse(adap->dev, 0x02, 1); |
| 895 | 903 | ||
| 896 | if ((adap->fe = dvb_attach(zl10353_attach, | 904 | if ((adap->fe = dvb_attach(zl10353_attach, |
| 897 | &cxusb_zl10353_xc3028_config, | 905 | &cxusb_zl10353_xc3028_config_no_i2c_gate, |
| 898 | &adap->dev->i2c_adap)) == NULL) | 906 | &adap->dev->i2c_adap)) == NULL) |
| 899 | return -EIO; | 907 | return -EIO; |
| 900 | 908 | ||
diff --git a/drivers/media/dvb/dvb-usb/dib0700_devices.c b/drivers/media/dvb/dvb-usb/dib0700_devices.c index 0b2812aa30a4..6bd8951ea02b 100644 --- a/drivers/media/dvb/dvb-usb/dib0700_devices.c +++ b/drivers/media/dvb/dvb-usb/dib0700_devices.c | |||
| @@ -1925,7 +1925,7 @@ struct dvb_usb_device_properties dib0700_devices[] = { | |||
| 1925 | { NULL }, | 1925 | { NULL }, |
| 1926 | }, | 1926 | }, |
| 1927 | { "Leadtek Winfast DTV Dongle (STK7700P based)", | 1927 | { "Leadtek Winfast DTV Dongle (STK7700P based)", |
| 1928 | { &dib0700_usb_id_table[8] }, | 1928 | { &dib0700_usb_id_table[8], &dib0700_usb_id_table[34] }, |
| 1929 | { NULL }, | 1929 | { NULL }, |
| 1930 | }, | 1930 | }, |
| 1931 | { "AVerMedia AVerTV DVB-T Express", | 1931 | { "AVerMedia AVerTV DVB-T Express", |
| @@ -2064,7 +2064,7 @@ struct dvb_usb_device_properties dib0700_devices[] = { | |||
| 2064 | }, | 2064 | }, |
| 2065 | }, | 2065 | }, |
| 2066 | 2066 | ||
| 2067 | .num_device_descs = 12, | 2067 | .num_device_descs = 11, |
| 2068 | .devices = { | 2068 | .devices = { |
| 2069 | { "DiBcom STK7070P reference design", | 2069 | { "DiBcom STK7070P reference design", |
| 2070 | { &dib0700_usb_id_table[15], NULL }, | 2070 | { &dib0700_usb_id_table[15], NULL }, |
| @@ -2098,11 +2098,6 @@ struct dvb_usb_device_properties dib0700_devices[] = { | |||
| 2098 | { &dib0700_usb_id_table[30], NULL }, | 2098 | { &dib0700_usb_id_table[30], NULL }, |
| 2099 | { NULL }, | 2099 | { NULL }, |
| 2100 | }, | 2100 | }, |
| 2101 | { "Terratec Cinergy T USB XXS/ T3", | ||
| 2102 | { &dib0700_usb_id_table[33], | ||
| 2103 | &dib0700_usb_id_table[52], NULL }, | ||
| 2104 | { NULL }, | ||
| 2105 | }, | ||
| 2106 | { "Elgato EyeTV DTT", | 2101 | { "Elgato EyeTV DTT", |
| 2107 | { &dib0700_usb_id_table[49], NULL }, | 2102 | { &dib0700_usb_id_table[49], NULL }, |
| 2108 | { NULL }, | 2103 | { NULL }, |
| @@ -2343,8 +2338,10 @@ struct dvb_usb_device_properties dib0700_devices[] = { | |||
| 2343 | { &dib0700_usb_id_table[59], NULL }, | 2338 | { &dib0700_usb_id_table[59], NULL }, |
| 2344 | { NULL }, | 2339 | { NULL }, |
| 2345 | }, | 2340 | }, |
| 2346 | { "Terratec Cinergy T USB XXS (HD)", | 2341 | { "Terratec Cinergy T USB XXS (HD)/ T3", |
| 2347 | { &dib0700_usb_id_table[34], &dib0700_usb_id_table[60] }, | 2342 | { &dib0700_usb_id_table[33], |
| 2343 | &dib0700_usb_id_table[52], | ||
| 2344 | &dib0700_usb_id_table[60], NULL}, | ||
| 2348 | { NULL }, | 2345 | { NULL }, |
| 2349 | }, | 2346 | }, |
| 2350 | }, | 2347 | }, |
diff --git a/drivers/media/dvb/firewire/firedtv-avc.c b/drivers/media/dvb/firewire/firedtv-avc.c index d1b67fe0f011..485d061319ab 100644 --- a/drivers/media/dvb/firewire/firedtv-avc.c +++ b/drivers/media/dvb/firewire/firedtv-avc.c | |||
| @@ -1050,28 +1050,28 @@ int avc_ca_pmt(struct firedtv *fdtv, char *msg, int length) | |||
| 1050 | c->operand[4] = 0; /* slot */ | 1050 | c->operand[4] = 0; /* slot */ |
| 1051 | c->operand[5] = SFE_VENDOR_TAG_CA_PMT; /* ca tag */ | 1051 | c->operand[5] = SFE_VENDOR_TAG_CA_PMT; /* ca tag */ |
| 1052 | c->operand[6] = 0; /* more/last */ | 1052 | c->operand[6] = 0; /* more/last */ |
| 1053 | /* c->operand[7] = XXXprogram_info_length + 17; */ /* length */ | 1053 | /* Use three bytes for length field in case length > 127 */ |
| 1054 | c->operand[8] = list_management; | 1054 | c->operand[10] = list_management; |
| 1055 | c->operand[9] = 0x01; /* pmt_cmd=OK_descramble */ | 1055 | c->operand[11] = 0x01; /* pmt_cmd=OK_descramble */ |
| 1056 | 1056 | ||
| 1057 | /* TS program map table */ | 1057 | /* TS program map table */ |
| 1058 | 1058 | ||
| 1059 | c->operand[10] = 0x02; /* Table id=2 */ | 1059 | c->operand[12] = 0x02; /* Table id=2 */ |
| 1060 | c->operand[11] = 0x80; /* Section syntax + length */ | 1060 | c->operand[13] = 0x80; /* Section syntax + length */ |
| 1061 | /* c->operand[12] = XXXprogram_info_length + 12; */ | 1061 | /* c->operand[14] = XXXprogram_info_length + 12; */ |
| 1062 | c->operand[13] = msg[1]; /* Program number */ | 1062 | c->operand[15] = msg[1]; /* Program number */ |
| 1063 | c->operand[14] = msg[2]; | 1063 | c->operand[16] = msg[2]; |
| 1064 | c->operand[15] = 0x01; /* Version number=0 + current/next=1 */ | 1064 | c->operand[17] = 0x01; /* Version number=0 + current/next=1 */ |
| 1065 | c->operand[16] = 0x00; /* Section number=0 */ | 1065 | c->operand[18] = 0x00; /* Section number=0 */ |
| 1066 | c->operand[17] = 0x00; /* Last section number=0 */ | 1066 | c->operand[19] = 0x00; /* Last section number=0 */ |
| 1067 | c->operand[18] = 0x1f; /* PCR_PID=1FFF */ | 1067 | c->operand[20] = 0x1f; /* PCR_PID=1FFF */ |
| 1068 | c->operand[19] = 0xff; | 1068 | c->operand[21] = 0xff; |
| 1069 | c->operand[20] = (program_info_length >> 8); /* Program info length */ | 1069 | c->operand[22] = (program_info_length >> 8); /* Program info length */ |
| 1070 | c->operand[21] = (program_info_length & 0xff); | 1070 | c->operand[23] = (program_info_length & 0xff); |
| 1071 | 1071 | ||
| 1072 | /* CA descriptors at programme level */ | 1072 | /* CA descriptors at programme level */ |
| 1073 | read_pos = 6; | 1073 | read_pos = 6; |
| 1074 | write_pos = 22; | 1074 | write_pos = 24; |
| 1075 | if (program_info_length > 0) { | 1075 | if (program_info_length > 0) { |
| 1076 | pmt_cmd_id = msg[read_pos++]; | 1076 | pmt_cmd_id = msg[read_pos++]; |
| 1077 | if (pmt_cmd_id != 1 && pmt_cmd_id != 4) | 1077 | if (pmt_cmd_id != 1 && pmt_cmd_id != 4) |
| @@ -1113,8 +1113,10 @@ int avc_ca_pmt(struct firedtv *fdtv, char *msg, int length) | |||
| 1113 | c->operand[write_pos++] = 0x00; | 1113 | c->operand[write_pos++] = 0x00; |
| 1114 | c->operand[write_pos++] = 0x00; | 1114 | c->operand[write_pos++] = 0x00; |
| 1115 | 1115 | ||
| 1116 | c->operand[7] = write_pos - 8; | 1116 | c->operand[7] = 0x82; |
| 1117 | c->operand[12] = write_pos - 13; | 1117 | c->operand[8] = (write_pos - 10) >> 8; |
| 1118 | c->operand[9] = (write_pos - 10) & 0xff; | ||
| 1119 | c->operand[14] = write_pos - 15; | ||
| 1118 | 1120 | ||
| 1119 | crc32_csum = crc32_be(0, &c->operand[10], c->operand[12] - 1); | 1121 | crc32_csum = crc32_be(0, &c->operand[10], c->operand[12] - 1); |
| 1120 | c->operand[write_pos - 4] = (crc32_csum >> 24) & 0xff; | 1122 | c->operand[write_pos - 4] = (crc32_csum >> 24) & 0xff; |
diff --git a/drivers/media/dvb/firewire/firedtv-fe.c b/drivers/media/dvb/firewire/firedtv-fe.c index 7ba43630a25d..e49cdc88b0c7 100644 --- a/drivers/media/dvb/firewire/firedtv-fe.c +++ b/drivers/media/dvb/firewire/firedtv-fe.c | |||
| @@ -141,18 +141,12 @@ static int fdtv_read_uncorrected_blocks(struct dvb_frontend *fe, u32 *ucblocks) | |||
| 141 | return -EOPNOTSUPP; | 141 | return -EOPNOTSUPP; |
| 142 | } | 142 | } |
| 143 | 143 | ||
| 144 | #define ACCEPTED 0x9 | ||
| 145 | |||
| 146 | static int fdtv_set_frontend(struct dvb_frontend *fe, | 144 | static int fdtv_set_frontend(struct dvb_frontend *fe, |
| 147 | struct dvb_frontend_parameters *params) | 145 | struct dvb_frontend_parameters *params) |
| 148 | { | 146 | { |
| 149 | struct firedtv *fdtv = fe->sec_priv; | 147 | struct firedtv *fdtv = fe->sec_priv; |
| 150 | 148 | ||
| 151 | /* FIXME: avc_tuner_dsd never returns ACCEPTED. Check status? */ | 149 | return avc_tuner_dsd(fdtv, params); |
| 152 | if (avc_tuner_dsd(fdtv, params) != ACCEPTED) | ||
| 153 | return -EINVAL; | ||
| 154 | else | ||
| 155 | return 0; /* not sure of this... */ | ||
| 156 | } | 150 | } |
| 157 | 151 | ||
| 158 | static int fdtv_get_frontend(struct dvb_frontend *fe, | 152 | static int fdtv_get_frontend(struct dvb_frontend *fe, |
diff --git a/drivers/media/dvb/frontends/dib0070.h b/drivers/media/dvb/frontends/dib0070.h index 8a2e1e710adb..eec9e52ffa75 100644 --- a/drivers/media/dvb/frontends/dib0070.h +++ b/drivers/media/dvb/frontends/dib0070.h | |||
| @@ -51,6 +51,7 @@ struct dib0070_config { | |||
| 51 | #if defined(CONFIG_DVB_TUNER_DIB0070) || (defined(CONFIG_DVB_TUNER_DIB0070_MODULE) && defined(MODULE)) | 51 | #if defined(CONFIG_DVB_TUNER_DIB0070) || (defined(CONFIG_DVB_TUNER_DIB0070_MODULE) && defined(MODULE)) |
| 52 | extern struct dvb_frontend *dib0070_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c, struct dib0070_config *cfg); | 52 | extern struct dvb_frontend *dib0070_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c, struct dib0070_config *cfg); |
| 53 | extern u16 dib0070_wbd_offset(struct dvb_frontend *); | 53 | extern u16 dib0070_wbd_offset(struct dvb_frontend *); |
| 54 | extern void dib0070_ctrl_agc_filter(struct dvb_frontend *, u8 open); | ||
| 54 | #else | 55 | #else |
| 55 | static inline struct dvb_frontend *dib0070_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c, struct dib0070_config *cfg) | 56 | static inline struct dvb_frontend *dib0070_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c, struct dib0070_config *cfg) |
| 56 | { | 57 | { |
| @@ -63,7 +64,11 @@ static inline u16 dib0070_wbd_offset(struct dvb_frontend *fe) | |||
| 63 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); | 64 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); |
| 64 | return -ENODEV; | 65 | return -ENODEV; |
| 65 | } | 66 | } |
| 67 | |||
| 68 | static inline void dib0070_ctrl_agc_filter(struct dvb_frontend *fe, u8 open) | ||
| 69 | { | ||
| 70 | printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__); | ||
| 71 | } | ||
| 66 | #endif | 72 | #endif |
| 67 | extern void dib0070_ctrl_agc_filter(struct dvb_frontend *, u8 open); | ||
| 68 | 73 | ||
| 69 | #endif | 74 | #endif |
diff --git a/drivers/media/dvb/frontends/dib7000p.c b/drivers/media/dvb/frontends/dib7000p.c index 55ef6eeb0769..0781f94e05d2 100644 --- a/drivers/media/dvb/frontends/dib7000p.c +++ b/drivers/media/dvb/frontends/dib7000p.c | |||
| @@ -1375,6 +1375,11 @@ struct dvb_frontend * dib7000p_attach(struct i2c_adapter *i2c_adap, u8 i2c_addr, | |||
| 1375 | if (dib7000p_identify(st) != 0) | 1375 | if (dib7000p_identify(st) != 0) |
| 1376 | goto error; | 1376 | goto error; |
| 1377 | 1377 | ||
| 1378 | /* FIXME: make sure the dev.parent field is initialized, or else | ||
| 1379 | request_firmware() will hit an OOPS (this should be moved somewhere | ||
| 1380 | more common) */ | ||
| 1381 | st->i2c_master.gated_tuner_i2c_adap.dev.parent = i2c_adap->dev.parent; | ||
| 1382 | |||
| 1378 | dibx000_init_i2c_master(&st->i2c_master, DIB7000P, st->i2c_adap, st->i2c_addr); | 1383 | dibx000_init_i2c_master(&st->i2c_master, DIB7000P, st->i2c_adap, st->i2c_addr); |
| 1379 | 1384 | ||
| 1380 | dib7000p_demod_reset(st); | 1385 | dib7000p_demod_reset(st); |
diff --git a/drivers/media/dvb/pt1/pt1.c b/drivers/media/dvb/pt1/pt1.c index 81e623a90f09..1fd8306371e2 100644 --- a/drivers/media/dvb/pt1/pt1.c +++ b/drivers/media/dvb/pt1/pt1.c | |||
| @@ -27,6 +27,7 @@ | |||
| 27 | #include <linux/pci.h> | 27 | #include <linux/pci.h> |
| 28 | #include <linux/kthread.h> | 28 | #include <linux/kthread.h> |
| 29 | #include <linux/freezer.h> | 29 | #include <linux/freezer.h> |
| 30 | #include <linux/vmalloc.h> | ||
| 30 | 31 | ||
| 31 | #include "dvbdev.h" | 32 | #include "dvbdev.h" |
| 32 | #include "dvb_demux.h" | 33 | #include "dvb_demux.h" |
diff --git a/drivers/media/dvb/siano/Kconfig b/drivers/media/dvb/siano/Kconfig index 8c1aed77ea30..85a222c4eaa0 100644 --- a/drivers/media/dvb/siano/Kconfig +++ b/drivers/media/dvb/siano/Kconfig | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | config SMS_SIANO_MDTV | 5 | config SMS_SIANO_MDTV |
| 6 | tristate "Siano SMS1xxx based MDTV receiver" | 6 | tristate "Siano SMS1xxx based MDTV receiver" |
| 7 | depends on DVB_CORE && INPUT | 7 | depends on DVB_CORE && INPUT && HAS_DMA |
| 8 | ---help--- | 8 | ---help--- |
| 9 | Choose Y or M here if you have MDTV receiver with a Siano chipset. | 9 | Choose Y or M here if you have MDTV receiver with a Siano chipset. |
| 10 | 10 | ||
diff --git a/drivers/media/dvb/siano/smsusb.c b/drivers/media/dvb/siano/smsusb.c index cb8a358b7310..8f88a586b0dd 100644 --- a/drivers/media/dvb/siano/smsusb.c +++ b/drivers/media/dvb/siano/smsusb.c | |||
| @@ -529,6 +529,12 @@ struct usb_device_id smsusb_id_table[] = { | |||
| 529 | .driver_info = SMS1XXX_BOARD_SIANO_NICE }, | 529 | .driver_info = SMS1XXX_BOARD_SIANO_NICE }, |
| 530 | { USB_DEVICE(0x187f, 0x0301), | 530 | { USB_DEVICE(0x187f, 0x0301), |
| 531 | .driver_info = SMS1XXX_BOARD_SIANO_VENICE }, | 531 | .driver_info = SMS1XXX_BOARD_SIANO_VENICE }, |
| 532 | { USB_DEVICE(0x2040, 0xb900), | ||
| 533 | .driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM }, | ||
| 534 | { USB_DEVICE(0x2040, 0xb910), | ||
| 535 | .driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM }, | ||
| 536 | { USB_DEVICE(0x2040, 0xc000), | ||
| 537 | .driver_info = SMS1XXX_BOARD_HAUPPAUGE_WINDHAM }, | ||
| 532 | { } /* Terminating entry */ | 538 | { } /* Terminating entry */ |
| 533 | }; | 539 | }; |
| 534 | 540 | ||
diff --git a/drivers/media/radio/radio-gemtek-pci.c b/drivers/media/radio/radio-gemtek-pci.c index c3f579de6e71..c6cf11661868 100644 --- a/drivers/media/radio/radio-gemtek-pci.c +++ b/drivers/media/radio/radio-gemtek-pci.c | |||
| @@ -181,12 +181,10 @@ static void gemtek_pci_mute(struct gemtek_pci *card) | |||
| 181 | 181 | ||
| 182 | static void gemtek_pci_unmute(struct gemtek_pci *card) | 182 | static void gemtek_pci_unmute(struct gemtek_pci *card) |
| 183 | { | 183 | { |
| 184 | mutex_lock(&card->lock); | ||
| 185 | if (card->mute) { | 184 | if (card->mute) { |
| 186 | gemtek_pci_setfrequency(card, card->current_frequency); | 185 | gemtek_pci_setfrequency(card, card->current_frequency); |
| 187 | card->mute = false; | 186 | card->mute = false; |
| 188 | } | 187 | } |
| 189 | mutex_unlock(&card->lock); | ||
| 190 | } | 188 | } |
| 191 | 189 | ||
| 192 | static int gemtek_pci_getsignal(struct gemtek_pci *card) | 190 | static int gemtek_pci_getsignal(struct gemtek_pci *card) |
diff --git a/drivers/media/video/bt8xx/bttv-driver.c b/drivers/media/video/bt8xx/bttv-driver.c index 939d1e512974..a6724019c66f 100644 --- a/drivers/media/video/bt8xx/bttv-driver.c +++ b/drivers/media/video/bt8xx/bttv-driver.c | |||
| @@ -1299,7 +1299,7 @@ set_tvnorm(struct bttv *btv, unsigned int norm) | |||
| 1299 | 1299 | ||
| 1300 | tvnorm = &bttv_tvnorms[norm]; | 1300 | tvnorm = &bttv_tvnorms[norm]; |
| 1301 | 1301 | ||
| 1302 | if (!memcmp(&bttv_tvnorms[btv->tvnorm].cropcap, &tvnorm->cropcap, | 1302 | if (memcmp(&bttv_tvnorms[btv->tvnorm].cropcap, &tvnorm->cropcap, |
| 1303 | sizeof (tvnorm->cropcap))) { | 1303 | sizeof (tvnorm->cropcap))) { |
| 1304 | bttv_crop_reset(&btv->crop[0], norm); | 1304 | bttv_crop_reset(&btv->crop[0], norm); |
| 1305 | btv->crop[1] = btv->crop[0]; /* current = default */ | 1305 | btv->crop[1] = btv->crop[0]; /* current = default */ |
| @@ -3800,11 +3800,34 @@ bttv_irq_next_video(struct bttv *btv, struct bttv_buffer_set *set) | |||
| 3800 | if (!V4L2_FIELD_HAS_BOTH(item->vb.field) && | 3800 | if (!V4L2_FIELD_HAS_BOTH(item->vb.field) && |
| 3801 | (item->vb.queue.next != &btv->capture)) { | 3801 | (item->vb.queue.next != &btv->capture)) { |
| 3802 | item = list_entry(item->vb.queue.next, struct bttv_buffer, vb.queue); | 3802 | item = list_entry(item->vb.queue.next, struct bttv_buffer, vb.queue); |
| 3803 | /* Mike Isely <isely@pobox.com> - Only check | ||
| 3804 | * and set up the bottom field in the logic | ||
| 3805 | * below. Don't ever do the top field. This | ||
| 3806 | * of course means that if we set up the | ||
| 3807 | * bottom field in the above code that we'll | ||
| 3808 | * actually skip a field. But that's OK. | ||
| 3809 | * Having processed only a single buffer this | ||
| 3810 | * time, then the next time around the first | ||
| 3811 | * available buffer should be for a top field. | ||
| 3812 | * That will then cause us here to set up a | ||
| 3813 | * top then a bottom field in the normal way. | ||
| 3814 | * The alternative to this understanding is | ||
| 3815 | * that we set up the second available buffer | ||
| 3816 | * as a top field, but that's out of order | ||
| 3817 | * since this driver always processes the top | ||
| 3818 | * field first - the effect will be the two | ||
| 3819 | * buffers being returned in the wrong order, | ||
| 3820 | * with the second buffer also being delayed | ||
| 3821 | * by one field time (owing to the fifo nature | ||
| 3822 | * of videobuf). Worse still, we'll be stuck | ||
| 3823 | * doing fields out of order now every time | ||
| 3824 | * until something else causes a field to be | ||
| 3825 | * dropped. By effectively forcing a field to | ||
| 3826 | * drop this way then we always get back into | ||
| 3827 | * sync within a single frame time. (Out of | ||
| 3828 | * order fields can screw up deinterlacing | ||
| 3829 | * algorithms.) */ | ||
| 3803 | if (!V4L2_FIELD_HAS_BOTH(item->vb.field)) { | 3830 | if (!V4L2_FIELD_HAS_BOTH(item->vb.field)) { |
| 3804 | if (NULL == set->top && | ||
| 3805 | V4L2_FIELD_TOP == item->vb.field) { | ||
| 3806 | set->top = item; | ||
| 3807 | } | ||
| 3808 | if (NULL == set->bottom && | 3831 | if (NULL == set->bottom && |
| 3809 | V4L2_FIELD_BOTTOM == item->vb.field) { | 3832 | V4L2_FIELD_BOTTOM == item->vb.field) { |
| 3810 | set->bottom = item; | 3833 | set->bottom = item; |
diff --git a/drivers/media/video/davinci/vpif_display.c b/drivers/media/video/davinci/vpif_display.c index c015da813dda..d14cfb200ed0 100644 --- a/drivers/media/video/davinci/vpif_display.c +++ b/drivers/media/video/davinci/vpif_display.c | |||
| @@ -1426,7 +1426,6 @@ static __init int vpif_probe(struct platform_device *pdev) | |||
| 1426 | struct vpif_display_config *config; | 1426 | struct vpif_display_config *config; |
| 1427 | int i, j = 0, k, q, m, err = 0; | 1427 | int i, j = 0, k, q, m, err = 0; |
| 1428 | struct i2c_adapter *i2c_adap; | 1428 | struct i2c_adapter *i2c_adap; |
| 1429 | struct vpif_config *config; | ||
| 1430 | struct common_obj *common; | 1429 | struct common_obj *common; |
| 1431 | struct channel_obj *ch; | 1430 | struct channel_obj *ch; |
| 1432 | struct video_device *vfd; | 1431 | struct video_device *vfd; |
diff --git a/drivers/media/video/em28xx/em28xx-audio.c b/drivers/media/video/em28xx/em28xx-audio.c index 7bd8a70f0a0b..ac947aecb9c3 100644 --- a/drivers/media/video/em28xx/em28xx-audio.c +++ b/drivers/media/video/em28xx/em28xx-audio.c | |||
| @@ -383,6 +383,11 @@ static int snd_em28xx_hw_capture_free(struct snd_pcm_substream *substream) | |||
| 383 | 383 | ||
| 384 | static int snd_em28xx_prepare(struct snd_pcm_substream *substream) | 384 | static int snd_em28xx_prepare(struct snd_pcm_substream *substream) |
| 385 | { | 385 | { |
| 386 | struct em28xx *dev = snd_pcm_substream_chip(substream); | ||
| 387 | |||
| 388 | dev->adev.hwptr_done_capture = 0; | ||
| 389 | dev->adev.capture_transfer_done = 0; | ||
| 390 | |||
| 386 | return 0; | 391 | return 0; |
| 387 | } | 392 | } |
| 388 | 393 | ||
diff --git a/drivers/media/video/em28xx/em28xx-cards.c b/drivers/media/video/em28xx/em28xx-cards.c index bdb249bd9d5d..c0fd5c6feeac 100644 --- a/drivers/media/video/em28xx/em28xx-cards.c +++ b/drivers/media/video/em28xx/em28xx-cards.c | |||
| @@ -1584,8 +1584,8 @@ struct em28xx_board em28xx_boards[] = { | |||
| 1584 | [EM2870_BOARD_REDDO_DVB_C_USB_BOX] = { | 1584 | [EM2870_BOARD_REDDO_DVB_C_USB_BOX] = { |
| 1585 | .name = "Reddo DVB-C USB TV Box", | 1585 | .name = "Reddo DVB-C USB TV Box", |
| 1586 | .tuner_type = TUNER_ABSENT, | 1586 | .tuner_type = TUNER_ABSENT, |
| 1587 | .tuner_gpio = reddo_dvb_c_usb_box, | ||
| 1587 | .has_dvb = 1, | 1588 | .has_dvb = 1, |
| 1588 | .dvb_gpio = reddo_dvb_c_usb_box, | ||
| 1589 | }, | 1589 | }, |
| 1590 | }; | 1590 | }; |
| 1591 | const unsigned int em28xx_bcount = ARRAY_SIZE(em28xx_boards); | 1591 | const unsigned int em28xx_bcount = ARRAY_SIZE(em28xx_boards); |
diff --git a/drivers/media/video/gspca/m5602/m5602_s5k4aa.c b/drivers/media/video/gspca/m5602/m5602_s5k4aa.c index 59400e858965..a27afeb6f39b 100644 --- a/drivers/media/video/gspca/m5602/m5602_s5k4aa.c +++ b/drivers/media/video/gspca/m5602/m5602_s5k4aa.c | |||
| @@ -35,12 +35,25 @@ static | |||
| 35 | const | 35 | const |
| 36 | struct dmi_system_id s5k4aa_vflip_dmi_table[] = { | 36 | struct dmi_system_id s5k4aa_vflip_dmi_table[] = { |
| 37 | { | 37 | { |
| 38 | .ident = "BRUNEINIT", | ||
| 39 | .matches = { | ||
| 40 | DMI_MATCH(DMI_SYS_VENDOR, "BRUNENIT"), | ||
| 41 | DMI_MATCH(DMI_PRODUCT_NAME, "BRUNENIT"), | ||
| 42 | DMI_MATCH(DMI_BOARD_VERSION, "00030D0000000001") | ||
| 43 | } | ||
| 44 | }, { | ||
| 38 | .ident = "Fujitsu-Siemens Amilo Xa 2528", | 45 | .ident = "Fujitsu-Siemens Amilo Xa 2528", |
| 39 | .matches = { | 46 | .matches = { |
| 40 | DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"), | 47 | DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"), |
| 41 | DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Xa 2528") | 48 | DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Xa 2528") |
| 42 | } | 49 | } |
| 43 | }, { | 50 | }, { |
| 51 | .ident = "Fujitsu-Siemens Amilo Xi 2528", | ||
| 52 | .matches = { | ||
| 53 | DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"), | ||
| 54 | DMI_MATCH(DMI_PRODUCT_NAME, "AMILO Xi 2528") | ||
| 55 | } | ||
| 56 | }, { | ||
| 44 | .ident = "Fujitsu-Siemens Amilo Xi 2550", | 57 | .ident = "Fujitsu-Siemens Amilo Xi 2550", |
| 45 | .matches = { | 58 | .matches = { |
| 46 | DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"), | 59 | DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"), |
| @@ -57,6 +70,13 @@ static | |||
| 57 | .matches = { | 70 | .matches = { |
| 58 | DMI_MATCH(DMI_SYS_VENDOR, "Micro-Star International"), | 71 | DMI_MATCH(DMI_SYS_VENDOR, "Micro-Star International"), |
| 59 | DMI_MATCH(DMI_PRODUCT_NAME, "GX700"), | 72 | DMI_MATCH(DMI_PRODUCT_NAME, "GX700"), |
| 73 | DMI_MATCH(DMI_BIOS_DATE, "12/02/2008") | ||
| 74 | } | ||
| 75 | }, { | ||
| 76 | .ident = "MSI GX700", | ||
| 77 | .matches = { | ||
| 78 | DMI_MATCH(DMI_SYS_VENDOR, "Micro-Star International"), | ||
| 79 | DMI_MATCH(DMI_PRODUCT_NAME, "GX700"), | ||
| 60 | DMI_MATCH(DMI_BIOS_DATE, "07/26/2007") | 80 | DMI_MATCH(DMI_BIOS_DATE, "07/26/2007") |
| 61 | } | 81 | } |
| 62 | }, { | 82 | }, { |
diff --git a/drivers/media/video/gspca/mr97310a.c b/drivers/media/video/gspca/mr97310a.c index 140c8f320e47..f8328b9efae5 100644 --- a/drivers/media/video/gspca/mr97310a.c +++ b/drivers/media/video/gspca/mr97310a.c | |||
| @@ -483,7 +483,7 @@ static int start_cif_cam(struct gspca_dev *gspca_dev) | |||
| 483 | data[3] = 0x2c; /* reg 2, H size/8 */ | 483 | data[3] = 0x2c; /* reg 2, H size/8 */ |
| 484 | data[4] = 0x48; /* reg 3, V size/4 */ | 484 | data[4] = 0x48; /* reg 3, V size/4 */ |
| 485 | data[6] = 0x06; /* reg 5, H start */ | 485 | data[6] = 0x06; /* reg 5, H start */ |
| 486 | data[8] = 0x06 + sd->sensor_type; /* reg 7, V start */ | 486 | data[8] = 0x06 - sd->sensor_type; /* reg 7, V start */ |
| 487 | break; | 487 | break; |
| 488 | } | 488 | } |
| 489 | err_code = mr_write(gspca_dev, 11); | 489 | err_code = mr_write(gspca_dev, 11); |
diff --git a/drivers/media/video/gspca/ov519.c b/drivers/media/video/gspca/ov519.c index 2f6e135d94bc..a5c190e93799 100644 --- a/drivers/media/video/gspca/ov519.c +++ b/drivers/media/video/gspca/ov519.c | |||
| @@ -2919,7 +2919,7 @@ static void ov518_pkt_scan(struct gspca_dev *gspca_dev, | |||
| 2919 | /* A false positive here is likely, until OVT gives me | 2919 | /* A false positive here is likely, until OVT gives me |
| 2920 | * the definitive SOF/EOF format */ | 2920 | * the definitive SOF/EOF format */ |
| 2921 | if ((!(data[0] | data[1] | data[2] | data[3] | data[5])) && data[6]) { | 2921 | if ((!(data[0] | data[1] | data[2] | data[3] | data[5])) && data[6]) { |
| 2922 | gspca_frame_add(gspca_dev, LAST_PACKET, frame, data, 0); | 2922 | frame = gspca_frame_add(gspca_dev, LAST_PACKET, frame, data, 0); |
| 2923 | gspca_frame_add(gspca_dev, FIRST_PACKET, frame, data, 0); | 2923 | gspca_frame_add(gspca_dev, FIRST_PACKET, frame, data, 0); |
| 2924 | sd->packet_nr = 0; | 2924 | sd->packet_nr = 0; |
| 2925 | } | 2925 | } |
diff --git a/drivers/media/video/gspca/stv06xx/stv06xx.c b/drivers/media/video/gspca/stv06xx/stv06xx.c index 65489d6b0d89..bfae63f5584c 100644 --- a/drivers/media/video/gspca/stv06xx/stv06xx.c +++ b/drivers/media/video/gspca/stv06xx/stv06xx.c | |||
| @@ -394,7 +394,8 @@ frame_data: | |||
| 394 | PDEBUG(D_PACK, "End of frame detected"); | 394 | PDEBUG(D_PACK, "End of frame detected"); |
| 395 | 395 | ||
| 396 | /* Complete the last frame (if any) */ | 396 | /* Complete the last frame (if any) */ |
| 397 | gspca_frame_add(gspca_dev, LAST_PACKET, frame, data, 0); | 397 | frame = gspca_frame_add(gspca_dev, LAST_PACKET, |
| 398 | frame, data, 0); | ||
| 398 | 399 | ||
| 399 | if (chunk_len) | 400 | if (chunk_len) |
| 400 | PDEBUG(D_ERR, "Chunk length is " | 401 | PDEBUG(D_ERR, "Chunk length is " |
diff --git a/drivers/media/video/mx1_camera.c b/drivers/media/video/mx1_camera.c index 5f37952c75cf..72802291e812 100644 --- a/drivers/media/video/mx1_camera.c +++ b/drivers/media/video/mx1_camera.c | |||
| @@ -28,6 +28,7 @@ | |||
| 28 | #include <linux/moduleparam.h> | 28 | #include <linux/moduleparam.h> |
| 29 | #include <linux/mutex.h> | 29 | #include <linux/mutex.h> |
| 30 | #include <linux/platform_device.h> | 30 | #include <linux/platform_device.h> |
| 31 | #include <linux/sched.h> | ||
| 31 | #include <linux/time.h> | 32 | #include <linux/time.h> |
| 32 | #include <linux/version.h> | 33 | #include <linux/version.h> |
| 33 | #include <linux/videodev2.h> | 34 | #include <linux/videodev2.h> |
diff --git a/drivers/media/video/mx3_camera.c b/drivers/media/video/mx3_camera.c index dff2e5e2d8c6..7db82bdf6f31 100644 --- a/drivers/media/video/mx3_camera.c +++ b/drivers/media/video/mx3_camera.c | |||
| @@ -17,6 +17,7 @@ | |||
| 17 | #include <linux/clk.h> | 17 | #include <linux/clk.h> |
| 18 | #include <linux/vmalloc.h> | 18 | #include <linux/vmalloc.h> |
| 19 | #include <linux/interrupt.h> | 19 | #include <linux/interrupt.h> |
| 20 | #include <linux/sched.h> | ||
| 20 | 21 | ||
| 21 | #include <media/v4l2-common.h> | 22 | #include <media/v4l2-common.h> |
| 22 | #include <media/v4l2-dev.h> | 23 | #include <media/v4l2-dev.h> |
diff --git a/drivers/media/video/pxa_camera.c b/drivers/media/video/pxa_camera.c index 6952e9602d5d..51b683c63b70 100644 --- a/drivers/media/video/pxa_camera.c +++ b/drivers/media/video/pxa_camera.c | |||
| @@ -26,6 +26,7 @@ | |||
| 26 | #include <linux/device.h> | 26 | #include <linux/device.h> |
| 27 | #include <linux/platform_device.h> | 27 | #include <linux/platform_device.h> |
| 28 | #include <linux/clk.h> | 28 | #include <linux/clk.h> |
| 29 | #include <linux/sched.h> | ||
| 29 | 30 | ||
| 30 | #include <media/v4l2-common.h> | 31 | #include <media/v4l2-common.h> |
| 31 | #include <media/v4l2-dev.h> | 32 | #include <media/v4l2-dev.h> |
| @@ -1432,7 +1433,9 @@ static int pxa_camera_set_fmt(struct soc_camera_device *icd, | |||
| 1432 | icd->sense = &sense; | 1433 | icd->sense = &sense; |
| 1433 | 1434 | ||
| 1434 | cam_f.fmt.pix.pixelformat = cam_fmt->fourcc; | 1435 | cam_f.fmt.pix.pixelformat = cam_fmt->fourcc; |
| 1435 | ret = v4l2_subdev_call(sd, video, s_fmt, f); | 1436 | ret = v4l2_subdev_call(sd, video, s_fmt, &cam_f); |
| 1437 | cam_f.fmt.pix.pixelformat = pix->pixelformat; | ||
| 1438 | *pix = cam_f.fmt.pix; | ||
| 1436 | 1439 | ||
| 1437 | icd->sense = NULL; | 1440 | icd->sense = NULL; |
| 1438 | 1441 | ||
diff --git a/drivers/media/video/s2255drv.c b/drivers/media/video/s2255drv.c index 9e3262c0ba37..2c0bb06cab3b 100644 --- a/drivers/media/video/s2255drv.c +++ b/drivers/media/video/s2255drv.c | |||
| @@ -598,11 +598,6 @@ static int s2255_got_frame(struct s2255_dev *dev, int chn, int jpgsize) | |||
| 598 | buf = list_entry(dma_q->active.next, | 598 | buf = list_entry(dma_q->active.next, |
| 599 | struct s2255_buffer, vb.queue); | 599 | struct s2255_buffer, vb.queue); |
| 600 | 600 | ||
| 601 | if (!waitqueue_active(&buf->vb.done)) { | ||
| 602 | /* no one active */ | ||
| 603 | rc = -1; | ||
| 604 | goto unlock; | ||
| 605 | } | ||
| 606 | list_del(&buf->vb.queue); | 601 | list_del(&buf->vb.queue); |
| 607 | do_gettimeofday(&buf->vb.ts); | 602 | do_gettimeofday(&buf->vb.ts); |
| 608 | dprintk(100, "[%p/%d] wakeup\n", buf, buf->vb.i); | 603 | dprintk(100, "[%p/%d] wakeup\n", buf, buf->vb.i); |
diff --git a/drivers/media/video/saa7134/saa7134-cards.c b/drivers/media/video/saa7134/saa7134-cards.c index 71145bff94fa..09013229d4aa 100644 --- a/drivers/media/video/saa7134/saa7134-cards.c +++ b/drivers/media/video/saa7134/saa7134-cards.c | |||
| @@ -3428,6 +3428,7 @@ struct saa7134_board saa7134_boards[] = { | |||
| 3428 | .tuner_config = 3, | 3428 | .tuner_config = 3, |
| 3429 | .mpeg = SAA7134_MPEG_DVB, | 3429 | .mpeg = SAA7134_MPEG_DVB, |
| 3430 | .ts_type = SAA7134_MPEG_TS_SERIAL, | 3430 | .ts_type = SAA7134_MPEG_TS_SERIAL, |
| 3431 | .ts_force_val = 1, | ||
| 3431 | .gpiomask = 0x0800100, /* GPIO 21 is an INPUT */ | 3432 | .gpiomask = 0x0800100, /* GPIO 21 is an INPUT */ |
| 3432 | .inputs = {{ | 3433 | .inputs = {{ |
| 3433 | .name = name_tv, | 3434 | .name = name_tv, |
diff --git a/drivers/media/video/saa7134/saa7134-ts.c b/drivers/media/video/saa7134/saa7134-ts.c index 3fa652279ac0..03488ba4c99c 100644 --- a/drivers/media/video/saa7134/saa7134-ts.c +++ b/drivers/media/video/saa7134/saa7134-ts.c | |||
| @@ -262,11 +262,13 @@ int saa7134_ts_start(struct saa7134_dev *dev) | |||
| 262 | switch (saa7134_boards[dev->board].ts_type) { | 262 | switch (saa7134_boards[dev->board].ts_type) { |
| 263 | case SAA7134_MPEG_TS_PARALLEL: | 263 | case SAA7134_MPEG_TS_PARALLEL: |
| 264 | saa_writeb(SAA7134_TS_SERIAL0, 0x40); | 264 | saa_writeb(SAA7134_TS_SERIAL0, 0x40); |
| 265 | saa_writeb(SAA7134_TS_PARALLEL, 0xec); | 265 | saa_writeb(SAA7134_TS_PARALLEL, 0xec | |
| 266 | (saa7134_boards[dev->board].ts_force_val << 4)); | ||
| 266 | break; | 267 | break; |
| 267 | case SAA7134_MPEG_TS_SERIAL: | 268 | case SAA7134_MPEG_TS_SERIAL: |
| 268 | saa_writeb(SAA7134_TS_SERIAL0, 0xd8); | 269 | saa_writeb(SAA7134_TS_SERIAL0, 0xd8); |
| 269 | saa_writeb(SAA7134_TS_PARALLEL, 0x6c); | 270 | saa_writeb(SAA7134_TS_PARALLEL, 0x6c | |
| 271 | (saa7134_boards[dev->board].ts_force_val << 4)); | ||
| 270 | saa_writeb(SAA7134_TS_PARALLEL_SERIAL, 0xbc); | 272 | saa_writeb(SAA7134_TS_PARALLEL_SERIAL, 0xbc); |
| 271 | saa_writeb(SAA7134_TS_SERIAL1, 0x02); | 273 | saa_writeb(SAA7134_TS_SERIAL1, 0x02); |
| 272 | break; | 274 | break; |
diff --git a/drivers/media/video/saa7134/saa7134.h b/drivers/media/video/saa7134/saa7134.h index 6ee3e9b7769e..f8697d46ff5f 100644 --- a/drivers/media/video/saa7134/saa7134.h +++ b/drivers/media/video/saa7134/saa7134.h | |||
| @@ -360,6 +360,7 @@ struct saa7134_board { | |||
| 360 | enum saa7134_mpeg_type mpeg; | 360 | enum saa7134_mpeg_type mpeg; |
| 361 | enum saa7134_mpeg_ts_type ts_type; | 361 | enum saa7134_mpeg_ts_type ts_type; |
| 362 | unsigned int vid_port_opts; | 362 | unsigned int vid_port_opts; |
| 363 | unsigned int ts_force_val:1; | ||
| 363 | }; | 364 | }; |
| 364 | 365 | ||
| 365 | #define card_has_radio(dev) (NULL != saa7134_boards[dev->board].radio.name) | 366 | #define card_has_radio(dev) (NULL != saa7134_boards[dev->board].radio.name) |
diff --git a/drivers/media/video/saa7164/saa7164-cmd.c b/drivers/media/video/saa7164/saa7164-cmd.c index c45966edc0cf..9c1d3ac43869 100644 --- a/drivers/media/video/saa7164/saa7164-cmd.c +++ b/drivers/media/video/saa7164/saa7164-cmd.c | |||
| @@ -347,7 +347,7 @@ int saa7164_cmd_send(struct saa7164_dev *dev, u8 id, tmComResCmd_t command, | |||
| 347 | 347 | ||
| 348 | /* Prepare some basic command/response structures */ | 348 | /* Prepare some basic command/response structures */ |
| 349 | memset(&command_t, 0, sizeof(command_t)); | 349 | memset(&command_t, 0, sizeof(command_t)); |
| 350 | memset(&response_t, 0, sizeof(&response_t)); | 350 | memset(&response_t, 0, sizeof(response_t)); |
| 351 | pcommand_t = &command_t; | 351 | pcommand_t = &command_t; |
| 352 | presponse_t = &response_t; | 352 | presponse_t = &response_t; |
| 353 | command_t.id = id; | 353 | command_t.id = id; |
diff --git a/drivers/media/video/sh_mobile_ceu_camera.c b/drivers/media/video/sh_mobile_ceu_camera.c index 65ac474c517a..9c8b7c7b89ee 100644 --- a/drivers/media/video/sh_mobile_ceu_camera.c +++ b/drivers/media/video/sh_mobile_ceu_camera.c | |||
| @@ -31,6 +31,7 @@ | |||
| 31 | #include <linux/platform_device.h> | 31 | #include <linux/platform_device.h> |
| 32 | #include <linux/videodev2.h> | 32 | #include <linux/videodev2.h> |
| 33 | #include <linux/pm_runtime.h> | 33 | #include <linux/pm_runtime.h> |
| 34 | #include <linux/sched.h> | ||
| 34 | 35 | ||
| 35 | #include <media/v4l2-common.h> | 36 | #include <media/v4l2-common.h> |
| 36 | #include <media/v4l2-dev.h> | 37 | #include <media/v4l2-dev.h> |
| @@ -1173,8 +1174,8 @@ static int get_scales(struct soc_camera_device *icd, | |||
| 1173 | width_in = scale_up(cam->ceu_rect.width, *scale_h); | 1174 | width_in = scale_up(cam->ceu_rect.width, *scale_h); |
| 1174 | height_in = scale_up(cam->ceu_rect.height, *scale_v); | 1175 | height_in = scale_up(cam->ceu_rect.height, *scale_v); |
| 1175 | 1176 | ||
| 1176 | *scale_h = calc_generic_scale(cam->ceu_rect.width, icd->user_width); | 1177 | *scale_h = calc_generic_scale(width_in, icd->user_width); |
| 1177 | *scale_v = calc_generic_scale(cam->ceu_rect.height, icd->user_height); | 1178 | *scale_v = calc_generic_scale(height_in, icd->user_height); |
| 1178 | 1179 | ||
| 1179 | return 0; | 1180 | return 0; |
| 1180 | } | 1181 | } |
| @@ -1723,11 +1724,12 @@ static int __devinit sh_mobile_ceu_probe(struct platform_device *pdev) | |||
| 1723 | 1724 | ||
| 1724 | err = soc_camera_host_register(&pcdev->ici); | 1725 | err = soc_camera_host_register(&pcdev->ici); |
| 1725 | if (err) | 1726 | if (err) |
| 1726 | goto exit_free_irq; | 1727 | goto exit_free_clk; |
| 1727 | 1728 | ||
| 1728 | return 0; | 1729 | return 0; |
| 1729 | 1730 | ||
| 1730 | exit_free_irq: | 1731 | exit_free_clk: |
| 1732 | pm_runtime_disable(&pdev->dev); | ||
| 1731 | free_irq(pcdev->irq, pcdev); | 1733 | free_irq(pcdev->irq, pcdev); |
| 1732 | exit_release_mem: | 1734 | exit_release_mem: |
| 1733 | if (platform_get_resource(pdev, IORESOURCE_MEM, 1)) | 1735 | if (platform_get_resource(pdev, IORESOURCE_MEM, 1)) |
| @@ -1747,6 +1749,7 @@ static int __devexit sh_mobile_ceu_remove(struct platform_device *pdev) | |||
| 1747 | struct sh_mobile_ceu_dev, ici); | 1749 | struct sh_mobile_ceu_dev, ici); |
| 1748 | 1750 | ||
| 1749 | soc_camera_host_unregister(soc_host); | 1751 | soc_camera_host_unregister(soc_host); |
| 1752 | pm_runtime_disable(&pdev->dev); | ||
| 1750 | free_irq(pcdev->irq, pcdev); | 1753 | free_irq(pcdev->irq, pcdev); |
| 1751 | if (platform_get_resource(pdev, IORESOURCE_MEM, 1)) | 1754 | if (platform_get_resource(pdev, IORESOURCE_MEM, 1)) |
| 1752 | dma_release_declared_memory(&pdev->dev); | 1755 | dma_release_declared_memory(&pdev->dev); |
diff --git a/drivers/media/video/soc_camera.c b/drivers/media/video/soc_camera.c index 59aa7a3694c2..95fdeb23c2c1 100644 --- a/drivers/media/video/soc_camera.c +++ b/drivers/media/video/soc_camera.c | |||
| @@ -1097,6 +1097,13 @@ static int default_s_crop(struct soc_camera_device *icd, struct v4l2_crop *a) | |||
| 1097 | return v4l2_subdev_call(sd, video, s_crop, a); | 1097 | return v4l2_subdev_call(sd, video, s_crop, a); |
| 1098 | } | 1098 | } |
| 1099 | 1099 | ||
| 1100 | static void soc_camera_device_init(struct device *dev, void *pdata) | ||
| 1101 | { | ||
| 1102 | dev->platform_data = pdata; | ||
| 1103 | dev->bus = &soc_camera_bus_type; | ||
| 1104 | dev->release = dummy_release; | ||
| 1105 | } | ||
| 1106 | |||
| 1100 | int soc_camera_host_register(struct soc_camera_host *ici) | 1107 | int soc_camera_host_register(struct soc_camera_host *ici) |
| 1101 | { | 1108 | { |
| 1102 | struct soc_camera_host *ix; | 1109 | struct soc_camera_host *ix; |
| @@ -1158,15 +1165,19 @@ void soc_camera_host_unregister(struct soc_camera_host *ici) | |||
| 1158 | 1165 | ||
| 1159 | list_for_each_entry(icd, &devices, list) { | 1166 | list_for_each_entry(icd, &devices, list) { |
| 1160 | if (icd->iface == ici->nr) { | 1167 | if (icd->iface == ici->nr) { |
| 1168 | void *pdata = icd->dev.platform_data; | ||
| 1161 | /* The bus->remove will be called */ | 1169 | /* The bus->remove will be called */ |
| 1162 | device_unregister(&icd->dev); | 1170 | device_unregister(&icd->dev); |
| 1163 | /* Not before device_unregister(), .remove | 1171 | /* |
| 1164 | * needs parent to call ici->ops->remove() */ | 1172 | * Not before device_unregister(), .remove |
| 1165 | icd->dev.parent = NULL; | 1173 | * needs parent to call ici->ops->remove(). |
| 1166 | 1174 | * If the host module is loaded again, device_register() | |
| 1167 | /* If the host module is loaded again, device_register() | 1175 | * would complain "already initialised," since 2.6.32 |
| 1168 | * would complain "already initialised" */ | 1176 | * this is also needed to prevent use-after-free of the |
| 1169 | memset(&icd->dev.kobj, 0, sizeof(icd->dev.kobj)); | 1177 | * device private data. |
| 1178 | */ | ||
| 1179 | memset(&icd->dev, 0, sizeof(icd->dev)); | ||
| 1180 | soc_camera_device_init(&icd->dev, pdata); | ||
| 1170 | } | 1181 | } |
| 1171 | } | 1182 | } |
| 1172 | 1183 | ||
| @@ -1198,10 +1209,7 @@ static int soc_camera_device_register(struct soc_camera_device *icd) | |||
| 1198 | * man, stay reasonable... */ | 1209 | * man, stay reasonable... */ |
| 1199 | return -ENOMEM; | 1210 | return -ENOMEM; |
| 1200 | 1211 | ||
| 1201 | icd->devnum = num; | 1212 | icd->devnum = num; |
| 1202 | icd->dev.bus = &soc_camera_bus_type; | ||
| 1203 | |||
| 1204 | icd->dev.release = dummy_release; | ||
| 1205 | icd->use_count = 0; | 1213 | icd->use_count = 0; |
| 1206 | icd->host_priv = NULL; | 1214 | icd->host_priv = NULL; |
| 1207 | mutex_init(&icd->video_lock); | 1215 | mutex_init(&icd->video_lock); |
| @@ -1309,12 +1317,13 @@ static int __devinit soc_camera_pdrv_probe(struct platform_device *pdev) | |||
| 1309 | icd->iface = icl->bus_id; | 1317 | icd->iface = icl->bus_id; |
| 1310 | icd->pdev = &pdev->dev; | 1318 | icd->pdev = &pdev->dev; |
| 1311 | platform_set_drvdata(pdev, icd); | 1319 | platform_set_drvdata(pdev, icd); |
| 1312 | icd->dev.platform_data = icl; | ||
| 1313 | 1320 | ||
| 1314 | ret = soc_camera_device_register(icd); | 1321 | ret = soc_camera_device_register(icd); |
| 1315 | if (ret < 0) | 1322 | if (ret < 0) |
| 1316 | goto escdevreg; | 1323 | goto escdevreg; |
| 1317 | 1324 | ||
| 1325 | soc_camera_device_init(&icd->dev, icl); | ||
| 1326 | |||
| 1318 | icd->user_width = DEFAULT_WIDTH; | 1327 | icd->user_width = DEFAULT_WIDTH; |
| 1319 | icd->user_height = DEFAULT_HEIGHT; | 1328 | icd->user_height = DEFAULT_HEIGHT; |
| 1320 | 1329 | ||
diff --git a/drivers/media/video/uvc/uvc_ctrl.c b/drivers/media/video/uvc/uvc_ctrl.c index c3225a561748..1b89735e62fd 100644 --- a/drivers/media/video/uvc/uvc_ctrl.c +++ b/drivers/media/video/uvc/uvc_ctrl.c | |||
| @@ -348,7 +348,7 @@ static void uvc_ctrl_set_zoom(struct uvc_control_mapping *mapping, | |||
| 348 | __s32 value, __u8 *data) | 348 | __s32 value, __u8 *data) |
| 349 | { | 349 | { |
| 350 | data[0] = value == 0 ? 0 : (value > 0) ? 1 : 0xff; | 350 | data[0] = value == 0 ? 0 : (value > 0) ? 1 : 0xff; |
| 351 | data[2] = min(abs(value), 0xff); | 351 | data[2] = min((int)abs(value), 0xff); |
| 352 | } | 352 | } |
| 353 | 353 | ||
| 354 | static struct uvc_control_mapping uvc_ctrl_mappings[] = { | 354 | static struct uvc_control_mapping uvc_ctrl_mappings[] = { |
diff --git a/drivers/media/video/uvc/uvc_video.c b/drivers/media/video/uvc/uvc_video.c index f960e8ea4f17..a6e41d12b221 100644 --- a/drivers/media/video/uvc/uvc_video.c +++ b/drivers/media/video/uvc/uvc_video.c | |||
| @@ -90,7 +90,8 @@ static void uvc_fixup_video_ctrl(struct uvc_streaming *stream, | |||
| 90 | ctrl->dwMaxVideoFrameSize = | 90 | ctrl->dwMaxVideoFrameSize = |
| 91 | frame->dwMaxVideoFrameBufferSize; | 91 | frame->dwMaxVideoFrameBufferSize; |
| 92 | 92 | ||
| 93 | if (stream->dev->quirks & UVC_QUIRK_FIX_BANDWIDTH && | 93 | if (!(format->flags & UVC_FMT_FLAG_COMPRESSED) && |
| 94 | stream->dev->quirks & UVC_QUIRK_FIX_BANDWIDTH && | ||
| 94 | stream->intf->num_altsetting > 1) { | 95 | stream->intf->num_altsetting > 1) { |
| 95 | u32 interval; | 96 | u32 interval; |
| 96 | u32 bandwidth; | 97 | u32 bandwidth; |
diff --git a/drivers/media/video/videobuf-dma-contig.c b/drivers/media/video/videobuf-dma-contig.c index 635ffc7b0391..c3065c4bcba9 100644 --- a/drivers/media/video/videobuf-dma-contig.c +++ b/drivers/media/video/videobuf-dma-contig.c | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | #include <linux/mm.h> | 19 | #include <linux/mm.h> |
| 20 | #include <linux/pagemap.h> | 20 | #include <linux/pagemap.h> |
| 21 | #include <linux/dma-mapping.h> | 21 | #include <linux/dma-mapping.h> |
| 22 | #include <linux/sched.h> | ||
| 22 | #include <media/videobuf-dma-contig.h> | 23 | #include <media/videobuf-dma-contig.h> |
| 23 | 24 | ||
| 24 | struct videobuf_dma_contig_memory { | 25 | struct videobuf_dma_contig_memory { |
diff --git a/drivers/mfd/wm831x-core.c b/drivers/mfd/wm831x-core.c index 49b7885c2702..7f27576ca046 100644 --- a/drivers/mfd/wm831x-core.c +++ b/drivers/mfd/wm831x-core.c | |||
| @@ -29,7 +29,7 @@ | |||
| 29 | /* Current settings - values are 2*2^(reg_val/4) microamps. These are | 29 | /* Current settings - values are 2*2^(reg_val/4) microamps. These are |
| 30 | * exported since they are used by multiple drivers. | 30 | * exported since they are used by multiple drivers. |
| 31 | */ | 31 | */ |
| 32 | int wm831x_isinkv_values[WM831X_ISINK_MAX_ISEL] = { | 32 | int wm831x_isinkv_values[WM831X_ISINK_MAX_ISEL + 1] = { |
| 33 | 2, | 33 | 2, |
| 34 | 2, | 34 | 2, |
| 35 | 3, | 35 | 3, |
diff --git a/drivers/misc/eeprom/at24.c b/drivers/misc/eeprom/at24.c index db39f4a52f53..2cb2736d65aa 100644 --- a/drivers/misc/eeprom/at24.c +++ b/drivers/misc/eeprom/at24.c | |||
| @@ -158,6 +158,7 @@ static ssize_t at24_eeprom_read(struct at24_data *at24, char *buf, | |||
| 158 | struct i2c_msg msg[2]; | 158 | struct i2c_msg msg[2]; |
| 159 | u8 msgbuf[2]; | 159 | u8 msgbuf[2]; |
| 160 | struct i2c_client *client; | 160 | struct i2c_client *client; |
| 161 | unsigned long timeout, read_time; | ||
| 161 | int status, i; | 162 | int status, i; |
| 162 | 163 | ||
| 163 | memset(msg, 0, sizeof(msg)); | 164 | memset(msg, 0, sizeof(msg)); |
| @@ -183,47 +184,60 @@ static ssize_t at24_eeprom_read(struct at24_data *at24, char *buf, | |||
| 183 | if (count > io_limit) | 184 | if (count > io_limit) |
| 184 | count = io_limit; | 185 | count = io_limit; |
| 185 | 186 | ||
| 186 | /* Smaller eeproms can work given some SMBus extension calls */ | ||
| 187 | if (at24->use_smbus) { | 187 | if (at24->use_smbus) { |
| 188 | /* Smaller eeproms can work given some SMBus extension calls */ | ||
| 188 | if (count > I2C_SMBUS_BLOCK_MAX) | 189 | if (count > I2C_SMBUS_BLOCK_MAX) |
| 189 | count = I2C_SMBUS_BLOCK_MAX; | 190 | count = I2C_SMBUS_BLOCK_MAX; |
| 190 | status = i2c_smbus_read_i2c_block_data(client, offset, | 191 | } else { |
| 191 | count, buf); | 192 | /* |
| 192 | dev_dbg(&client->dev, "smbus read %zu@%d --> %d\n", | 193 | * When we have a better choice than SMBus calls, use a |
| 193 | count, offset, status); | 194 | * combined I2C message. Write address; then read up to |
| 194 | return (status < 0) ? -EIO : status; | 195 | * io_limit data bytes. Note that read page rollover helps us |
| 196 | * here (unlike writes). msgbuf is u8 and will cast to our | ||
| 197 | * needs. | ||
| 198 | */ | ||
| 199 | i = 0; | ||
| 200 | if (at24->chip.flags & AT24_FLAG_ADDR16) | ||
| 201 | msgbuf[i++] = offset >> 8; | ||
| 202 | msgbuf[i++] = offset; | ||
| 203 | |||
| 204 | msg[0].addr = client->addr; | ||
| 205 | msg[0].buf = msgbuf; | ||
| 206 | msg[0].len = i; | ||
| 207 | |||
| 208 | msg[1].addr = client->addr; | ||
| 209 | msg[1].flags = I2C_M_RD; | ||
| 210 | msg[1].buf = buf; | ||
| 211 | msg[1].len = count; | ||
| 195 | } | 212 | } |
| 196 | 213 | ||
| 197 | /* | 214 | /* |
| 198 | * When we have a better choice than SMBus calls, use a combined | 215 | * Reads fail if the previous write didn't complete yet. We may |
| 199 | * I2C message. Write address; then read up to io_limit data bytes. | 216 | * loop a few times until this one succeeds, waiting at least |
| 200 | * Note that read page rollover helps us here (unlike writes). | 217 | * long enough for one entire page write to work. |
| 201 | * msgbuf is u8 and will cast to our needs. | ||
| 202 | */ | 218 | */ |
| 203 | i = 0; | 219 | timeout = jiffies + msecs_to_jiffies(write_timeout); |
| 204 | if (at24->chip.flags & AT24_FLAG_ADDR16) | 220 | do { |
| 205 | msgbuf[i++] = offset >> 8; | 221 | read_time = jiffies; |
| 206 | msgbuf[i++] = offset; | 222 | if (at24->use_smbus) { |
| 207 | 223 | status = i2c_smbus_read_i2c_block_data(client, offset, | |
| 208 | msg[0].addr = client->addr; | 224 | count, buf); |
| 209 | msg[0].buf = msgbuf; | 225 | } else { |
| 210 | msg[0].len = i; | 226 | status = i2c_transfer(client->adapter, msg, 2); |
| 227 | if (status == 2) | ||
| 228 | status = count; | ||
| 229 | } | ||
| 230 | dev_dbg(&client->dev, "read %zu@%d --> %d (%ld)\n", | ||
| 231 | count, offset, status, jiffies); | ||
| 211 | 232 | ||
| 212 | msg[1].addr = client->addr; | 233 | if (status == count) |
| 213 | msg[1].flags = I2C_M_RD; | 234 | return count; |
| 214 | msg[1].buf = buf; | ||
| 215 | msg[1].len = count; | ||
| 216 | 235 | ||
| 217 | status = i2c_transfer(client->adapter, msg, 2); | 236 | /* REVISIT: at HZ=100, this is sloooow */ |
| 218 | dev_dbg(&client->dev, "i2c read %zu@%d --> %d\n", | 237 | msleep(1); |
| 219 | count, offset, status); | 238 | } while (time_before(read_time, timeout)); |
| 220 | 239 | ||
| 221 | if (status == 2) | 240 | return -ETIMEDOUT; |
| 222 | return count; | ||
| 223 | else if (status >= 0) | ||
| 224 | return -EIO; | ||
| 225 | else | ||
| 226 | return status; | ||
| 227 | } | 241 | } |
| 228 | 242 | ||
| 229 | static ssize_t at24_read(struct at24_data *at24, | 243 | static ssize_t at24_read(struct at24_data *at24, |
diff --git a/drivers/mmc/host/omap.c b/drivers/mmc/host/omap.c index e7a331de5733..b8fd7af1ceeb 100644 --- a/drivers/mmc/host/omap.c +++ b/drivers/mmc/host/omap.c | |||
| @@ -1529,6 +1529,7 @@ static int mmc_omap_remove(struct platform_device *pdev) | |||
| 1529 | host->pdata->cleanup(&pdev->dev); | 1529 | host->pdata->cleanup(&pdev->dev); |
| 1530 | 1530 | ||
| 1531 | mmc_omap_fclk_enable(host, 0); | 1531 | mmc_omap_fclk_enable(host, 0); |
| 1532 | free_irq(host->irq, host); | ||
| 1532 | clk_put(host->fclk); | 1533 | clk_put(host->fclk); |
| 1533 | clk_disable(host->iclk); | 1534 | clk_disable(host->iclk); |
| 1534 | clk_put(host->iclk); | 1535 | clk_put(host->iclk); |
diff --git a/drivers/mmc/host/pxamci.c b/drivers/mmc/host/pxamci.c index b00d67319058..9fb480bb0e0a 100644 --- a/drivers/mmc/host/pxamci.c +++ b/drivers/mmc/host/pxamci.c | |||
| @@ -760,6 +760,8 @@ static int pxamci_remove(struct platform_device *pdev) | |||
| 760 | if (mmc) { | 760 | if (mmc) { |
| 761 | struct pxamci_host *host = mmc_priv(mmc); | 761 | struct pxamci_host *host = mmc_priv(mmc); |
| 762 | 762 | ||
| 763 | mmc_remove_host(mmc); | ||
| 764 | |||
| 763 | if (host->pdata) { | 765 | if (host->pdata) { |
| 764 | gpio_cd = host->pdata->gpio_card_detect; | 766 | gpio_cd = host->pdata->gpio_card_detect; |
| 765 | gpio_ro = host->pdata->gpio_card_ro; | 767 | gpio_ro = host->pdata->gpio_card_ro; |
| @@ -779,8 +781,6 @@ static int pxamci_remove(struct platform_device *pdev) | |||
| 779 | if (host->pdata && host->pdata->exit) | 781 | if (host->pdata && host->pdata->exit) |
| 780 | host->pdata->exit(&pdev->dev, mmc); | 782 | host->pdata->exit(&pdev->dev, mmc); |
| 781 | 783 | ||
| 782 | mmc_remove_host(mmc); | ||
| 783 | |||
| 784 | pxamci_stop_clock(host); | 784 | pxamci_stop_clock(host); |
| 785 | writel(TXFIFO_WR_REQ|RXFIFO_RD_REQ|CLK_IS_OFF|STOP_CMD| | 785 | writel(TXFIFO_WR_REQ|RXFIFO_RD_REQ|CLK_IS_OFF|STOP_CMD| |
| 786 | END_CMD_RES|PRG_DONE|DATA_TRAN_DONE, | 786 | END_CMD_RES|PRG_DONE|DATA_TRAN_DONE, |
diff --git a/drivers/mtd/maps/Makefile b/drivers/mtd/maps/Makefile index 1d5cf8636723..ae2f6dbe43c3 100644 --- a/drivers/mtd/maps/Makefile +++ b/drivers/mtd/maps/Makefile | |||
| @@ -58,4 +58,6 @@ obj-$(CONFIG_MTD_PLATRAM) += plat-ram.o | |||
| 58 | obj-$(CONFIG_MTD_OMAP_NOR) += omap_nor.o | 58 | obj-$(CONFIG_MTD_OMAP_NOR) += omap_nor.o |
| 59 | obj-$(CONFIG_MTD_INTEL_VR_NOR) += intel_vr_nor.o | 59 | obj-$(CONFIG_MTD_INTEL_VR_NOR) += intel_vr_nor.o |
| 60 | obj-$(CONFIG_MTD_BFIN_ASYNC) += bfin-async-flash.o | 60 | obj-$(CONFIG_MTD_BFIN_ASYNC) += bfin-async-flash.o |
| 61 | obj-$(CONFIG_MTD_RBTX4939) += rbtx4939-flash.o | ||
| 62 | obj-$(CONFIG_MTD_VMU) += vmu-flash.o | ||
| 61 | obj-$(CONFIG_MTD_GPIO_ADDR) += gpio-addr-flash.o | 63 | obj-$(CONFIG_MTD_GPIO_ADDR) += gpio-addr-flash.o |
diff --git a/drivers/mtd/maps/sa1100-flash.c b/drivers/mtd/maps/sa1100-flash.c index fdb97f3d30e9..d7a47574d21e 100644 --- a/drivers/mtd/maps/sa1100-flash.c +++ b/drivers/mtd/maps/sa1100-flash.c | |||
| @@ -209,8 +209,8 @@ static int sa1100_probe_subdev(struct sa_subdev_info *subdev, struct resource *r | |||
| 209 | } | 209 | } |
| 210 | subdev->mtd->owner = THIS_MODULE; | 210 | subdev->mtd->owner = THIS_MODULE; |
| 211 | 211 | ||
| 212 | printk(KERN_INFO "SA1100 flash: CFI device at 0x%08lx, %dMiB, " | 212 | printk(KERN_INFO "SA1100 flash: CFI device at 0x%08lx, %uMiB, %d-bit\n", |
| 213 | "%d-bit\n", phys, subdev->mtd->size >> 20, | 213 | phys, (unsigned)(subdev->mtd->size >> 20), |
| 214 | subdev->map.bankwidth * 8); | 214 | subdev->map.bankwidth * 8); |
| 215 | 215 | ||
| 216 | return 0; | 216 | return 0; |
diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig index e19ca4bb7510..b2f71f79baaf 100644 --- a/drivers/net/Kconfig +++ b/drivers/net/Kconfig | |||
| @@ -975,7 +975,7 @@ config ENC28J60_WRITEVERIFY | |||
| 975 | 975 | ||
| 976 | config ETHOC | 976 | config ETHOC |
| 977 | tristate "OpenCores 10/100 Mbps Ethernet MAC support" | 977 | tristate "OpenCores 10/100 Mbps Ethernet MAC support" |
| 978 | depends on NET_ETHERNET && HAS_IOMEM | 978 | depends on NET_ETHERNET && HAS_IOMEM && HAS_DMA |
| 979 | select MII | 979 | select MII |
| 980 | select PHYLIB | 980 | select PHYLIB |
| 981 | select CRC32 | 981 | select CRC32 |
diff --git a/drivers/net/arm/ep93xx_eth.c b/drivers/net/arm/ep93xx_eth.c index 2be49c817995..b25467ac895c 100644 --- a/drivers/net/arm/ep93xx_eth.c +++ b/drivers/net/arm/ep93xx_eth.c | |||
| @@ -628,15 +628,6 @@ static int ep93xx_open(struct net_device *dev) | |||
| 628 | if (ep93xx_alloc_buffers(ep)) | 628 | if (ep93xx_alloc_buffers(ep)) |
| 629 | return -ENOMEM; | 629 | return -ENOMEM; |
| 630 | 630 | ||
| 631 | if (is_zero_ether_addr(dev->dev_addr)) { | ||
| 632 | random_ether_addr(dev->dev_addr); | ||
| 633 | printk(KERN_INFO "%s: generated random MAC address " | ||
| 634 | "%.2x:%.2x:%.2x:%.2x:%.2x:%.2x.\n", dev->name, | ||
| 635 | dev->dev_addr[0], dev->dev_addr[1], | ||
| 636 | dev->dev_addr[2], dev->dev_addr[3], | ||
| 637 | dev->dev_addr[4], dev->dev_addr[5]); | ||
| 638 | } | ||
| 639 | |||
| 640 | napi_enable(&ep->napi); | 631 | napi_enable(&ep->napi); |
| 641 | 632 | ||
| 642 | if (ep93xx_start_hw(dev)) { | 633 | if (ep93xx_start_hw(dev)) { |
| @@ -877,6 +868,9 @@ static int ep93xx_eth_probe(struct platform_device *pdev) | |||
| 877 | ep->mii.mdio_write = ep93xx_mdio_write; | 868 | ep->mii.mdio_write = ep93xx_mdio_write; |
| 878 | ep->mdc_divisor = 40; /* Max HCLK 100 MHz, min MDIO clk 2.5 MHz. */ | 869 | ep->mdc_divisor = 40; /* Max HCLK 100 MHz, min MDIO clk 2.5 MHz. */ |
| 879 | 870 | ||
| 871 | if (is_zero_ether_addr(dev->dev_addr)) | ||
| 872 | random_ether_addr(dev->dev_addr); | ||
| 873 | |||
| 880 | err = register_netdev(dev); | 874 | err = register_netdev(dev); |
| 881 | if (err) { | 875 | if (err) { |
| 882 | dev_err(&pdev->dev, "Failed to register netdev\n"); | 876 | dev_err(&pdev->dev, "Failed to register netdev\n"); |
diff --git a/drivers/net/au1000_eth.c b/drivers/net/au1000_eth.c index ce6f1ac25df8..3f4b4300f533 100644 --- a/drivers/net/au1000_eth.c +++ b/drivers/net/au1000_eth.c | |||
| @@ -1088,7 +1088,14 @@ static struct net_device * au1000_probe(int port_num) | |||
| 1088 | return NULL; | 1088 | return NULL; |
| 1089 | } | 1089 | } |
| 1090 | 1090 | ||
| 1091 | if ((err = register_netdev(dev)) != 0) { | 1091 | dev->base_addr = base; |
| 1092 | dev->irq = irq; | ||
| 1093 | dev->netdev_ops = &au1000_netdev_ops; | ||
| 1094 | SET_ETHTOOL_OPS(dev, &au1000_ethtool_ops); | ||
| 1095 | dev->watchdog_timeo = ETH_TX_TIMEOUT; | ||
| 1096 | |||
| 1097 | err = register_netdev(dev); | ||
| 1098 | if (err != 0) { | ||
| 1092 | printk(KERN_ERR "%s: Cannot register net device, error %d\n", | 1099 | printk(KERN_ERR "%s: Cannot register net device, error %d\n", |
| 1093 | DRV_NAME, err); | 1100 | DRV_NAME, err); |
| 1094 | free_netdev(dev); | 1101 | free_netdev(dev); |
| @@ -1209,12 +1216,6 @@ static struct net_device * au1000_probe(int port_num) | |||
| 1209 | aup->tx_db_inuse[i] = pDB; | 1216 | aup->tx_db_inuse[i] = pDB; |
| 1210 | } | 1217 | } |
| 1211 | 1218 | ||
| 1212 | dev->base_addr = base; | ||
| 1213 | dev->irq = irq; | ||
| 1214 | dev->netdev_ops = &au1000_netdev_ops; | ||
| 1215 | SET_ETHTOOL_OPS(dev, &au1000_ethtool_ops); | ||
| 1216 | dev->watchdog_timeo = ETH_TX_TIMEOUT; | ||
| 1217 | |||
| 1218 | /* | 1219 | /* |
| 1219 | * The boot code uses the ethernet controller, so reset it to start | 1220 | * The boot code uses the ethernet controller, so reset it to start |
| 1220 | * fresh. au1000_init() expects that the device is in reset state. | 1221 | * fresh. au1000_init() expects that the device is in reset state. |
diff --git a/drivers/net/b44.c b/drivers/net/b44.c index e046943ef29d..2a9132343b66 100644 --- a/drivers/net/b44.c +++ b/drivers/net/b44.c | |||
| @@ -912,9 +912,6 @@ static irqreturn_t b44_interrupt(int irq, void *dev_id) | |||
| 912 | bp->istat = istat; | 912 | bp->istat = istat; |
| 913 | __b44_disable_ints(bp); | 913 | __b44_disable_ints(bp); |
| 914 | __napi_schedule(&bp->napi); | 914 | __napi_schedule(&bp->napi); |
| 915 | } else { | ||
| 916 | printk(KERN_ERR PFX "%s: Error, poll already scheduled\n", | ||
| 917 | dev->name); | ||
| 918 | } | 915 | } |
| 919 | 916 | ||
| 920 | irq_ack: | 917 | irq_ack: |
diff --git a/drivers/net/can/Kconfig b/drivers/net/can/Kconfig index df32c109b7ac..772f6d2489ce 100644 --- a/drivers/net/can/Kconfig +++ b/drivers/net/can/Kconfig | |||
| @@ -35,66 +35,16 @@ config CAN_CALC_BITTIMING | |||
| 35 | arguments "tq", "prop_seg", "phase_seg1", "phase_seg2" and "sjw". | 35 | arguments "tq", "prop_seg", "phase_seg1", "phase_seg2" and "sjw". |
| 36 | If unsure, say Y. | 36 | If unsure, say Y. |
| 37 | 37 | ||
| 38 | config CAN_SJA1000 | ||
| 39 | depends on CAN_DEV && HAS_IOMEM | ||
| 40 | tristate "Philips SJA1000" | ||
| 41 | ---help--- | ||
| 42 | Driver for the SJA1000 CAN controllers from Philips or NXP | ||
| 43 | |||
| 44 | config CAN_SJA1000_ISA | ||
| 45 | depends on CAN_SJA1000 && ISA | ||
| 46 | tristate "ISA Bus based legacy SJA1000 driver" | ||
| 47 | ---help--- | ||
| 48 | This driver adds legacy support for SJA1000 chips connected to | ||
| 49 | the ISA bus using I/O port, memory mapped or indirect access. | ||
| 50 | |||
| 51 | config CAN_SJA1000_PLATFORM | ||
| 52 | depends on CAN_SJA1000 | ||
| 53 | tristate "Generic Platform Bus based SJA1000 driver" | ||
| 54 | ---help--- | ||
| 55 | This driver adds support for the SJA1000 chips connected to | ||
| 56 | the "platform bus" (Linux abstraction for directly to the | ||
| 57 | processor attached devices). Which can be found on various | ||
| 58 | boards from Phytec (http://www.phytec.de) like the PCM027, | ||
| 59 | PCM038. | ||
| 60 | |||
| 61 | config CAN_SJA1000_OF_PLATFORM | ||
| 62 | depends on CAN_SJA1000 && PPC_OF | ||
| 63 | tristate "Generic OF Platform Bus based SJA1000 driver" | ||
| 64 | ---help--- | ||
| 65 | This driver adds support for the SJA1000 chips connected to | ||
| 66 | the OpenFirmware "platform bus" found on embedded systems with | ||
| 67 | OpenFirmware bindings, e.g. if you have a PowerPC based system | ||
| 68 | you may want to enable this option. | ||
| 69 | |||
| 70 | config CAN_EMS_PCI | ||
| 71 | tristate "EMS CPC-PCI, CPC-PCIe and CPC-104P Card" | ||
| 72 | depends on PCI && CAN_SJA1000 | ||
| 73 | ---help--- | ||
| 74 | This driver is for the one, two or four channel CPC-PCI, | ||
| 75 | CPC-PCIe and CPC-104P cards from EMS Dr. Thomas Wuensche | ||
| 76 | (http://www.ems-wuensche.de). | ||
| 77 | |||
| 78 | config CAN_EMS_USB | ||
| 79 | tristate "EMS CPC-USB/ARM7 CAN/USB interface" | ||
| 80 | depends on USB && CAN_DEV | ||
| 81 | ---help--- | ||
| 82 | This driver is for the one channel CPC-USB/ARM7 CAN/USB interface | ||
| 83 | from from EMS Dr. Thomas Wuensche (http://www.ems-wuensche.de). | ||
| 84 | |||
| 85 | config CAN_KVASER_PCI | ||
| 86 | tristate "Kvaser PCIcanx and Kvaser PCIcan PCI Cards" | ||
| 87 | depends on PCI && CAN_SJA1000 | ||
| 88 | ---help--- | ||
| 89 | This driver is for the the PCIcanx and PCIcan cards (1, 2 or | ||
| 90 | 4 channel) from Kvaser (http://www.kvaser.com). | ||
| 91 | |||
| 92 | config CAN_AT91 | 38 | config CAN_AT91 |
| 93 | tristate "Atmel AT91 onchip CAN controller" | 39 | tristate "Atmel AT91 onchip CAN controller" |
| 94 | depends on CAN && CAN_DEV && ARCH_AT91SAM9263 | 40 | depends on CAN_DEV && ARCH_AT91SAM9263 |
| 95 | ---help--- | 41 | ---help--- |
| 96 | This is a driver for the SoC CAN controller in Atmel's AT91SAM9263. | 42 | This is a driver for the SoC CAN controller in Atmel's AT91SAM9263. |
| 97 | 43 | ||
| 44 | source "drivers/net/can/sja1000/Kconfig" | ||
| 45 | |||
| 46 | source "drivers/net/can/usb/Kconfig" | ||
| 47 | |||
| 98 | config CAN_DEBUG_DEVICES | 48 | config CAN_DEBUG_DEVICES |
| 99 | bool "CAN devices debugging messages" | 49 | bool "CAN devices debugging messages" |
| 100 | depends on CAN | 50 | depends on CAN |
diff --git a/drivers/net/can/dev.c b/drivers/net/can/dev.c index 564e31c9fee4..2868fe842a41 100644 --- a/drivers/net/can/dev.c +++ b/drivers/net/can/dev.c | |||
| @@ -629,6 +629,11 @@ nla_put_failure: | |||
| 629 | return -EMSGSIZE; | 629 | return -EMSGSIZE; |
| 630 | } | 630 | } |
| 631 | 631 | ||
| 632 | static size_t can_get_xstats_size(const struct net_device *dev) | ||
| 633 | { | ||
| 634 | return sizeof(struct can_device_stats); | ||
| 635 | } | ||
| 636 | |||
| 632 | static int can_fill_xstats(struct sk_buff *skb, const struct net_device *dev) | 637 | static int can_fill_xstats(struct sk_buff *skb, const struct net_device *dev) |
| 633 | { | 638 | { |
| 634 | struct can_priv *priv = netdev_priv(dev); | 639 | struct can_priv *priv = netdev_priv(dev); |
| @@ -657,6 +662,7 @@ static struct rtnl_link_ops can_link_ops __read_mostly = { | |||
| 657 | .changelink = can_changelink, | 662 | .changelink = can_changelink, |
| 658 | .get_size = can_get_size, | 663 | .get_size = can_get_size, |
| 659 | .fill_info = can_fill_info, | 664 | .fill_info = can_fill_info, |
| 665 | .get_xstats_size = can_get_xstats_size, | ||
| 660 | .fill_xstats = can_fill_xstats, | 666 | .fill_xstats = can_fill_xstats, |
| 661 | }; | 667 | }; |
| 662 | 668 | ||
diff --git a/drivers/net/can/sja1000/Kconfig b/drivers/net/can/sja1000/Kconfig new file mode 100644 index 000000000000..4c674927f247 --- /dev/null +++ b/drivers/net/can/sja1000/Kconfig | |||
| @@ -0,0 +1,47 @@ | |||
| 1 | menuconfig CAN_SJA1000 | ||
| 2 | tristate "Philips/NXP SJA1000 devices" | ||
| 3 | depends on CAN_DEV && HAS_IOMEM | ||
| 4 | |||
| 5 | if CAN_SJA1000 | ||
| 6 | |||
| 7 | config CAN_SJA1000_ISA | ||
| 8 | tristate "ISA Bus based legacy SJA1000 driver" | ||
| 9 | depends on ISA | ||
| 10 | ---help--- | ||
| 11 | This driver adds legacy support for SJA1000 chips connected to | ||
| 12 | the ISA bus using I/O port, memory mapped or indirect access. | ||
| 13 | |||
| 14 | config CAN_SJA1000_PLATFORM | ||
| 15 | tristate "Generic Platform Bus based SJA1000 driver" | ||
| 16 | ---help--- | ||
| 17 | This driver adds support for the SJA1000 chips connected to | ||
| 18 | the "platform bus" (Linux abstraction for directly to the | ||
| 19 | processor attached devices). Which can be found on various | ||
| 20 | boards from Phytec (http://www.phytec.de) like the PCM027, | ||
| 21 | PCM038. | ||
| 22 | |||
| 23 | config CAN_SJA1000_OF_PLATFORM | ||
| 24 | tristate "Generic OF Platform Bus based SJA1000 driver" | ||
| 25 | depends on PPC_OF | ||
| 26 | ---help--- | ||
| 27 | This driver adds support for the SJA1000 chips connected to | ||
| 28 | the OpenFirmware "platform bus" found on embedded systems with | ||
| 29 | OpenFirmware bindings, e.g. if you have a PowerPC based system | ||
| 30 | you may want to enable this option. | ||
| 31 | |||
| 32 | config CAN_EMS_PCI | ||
| 33 | tristate "EMS CPC-PCI, CPC-PCIe and CPC-104P Card" | ||
| 34 | depends on PCI | ||
| 35 | ---help--- | ||
| 36 | This driver is for the one, two or four channel CPC-PCI, | ||
| 37 | CPC-PCIe and CPC-104P cards from EMS Dr. Thomas Wuensche | ||
| 38 | (http://www.ems-wuensche.de). | ||
| 39 | |||
| 40 | config CAN_KVASER_PCI | ||
| 41 | tristate "Kvaser PCIcanx and Kvaser PCIcan PCI Cards" | ||
| 42 | depends on PCI | ||
| 43 | ---help--- | ||
| 44 | This driver is for the the PCIcanx and PCIcan cards (1, 2 or | ||
| 45 | 4 channel) from Kvaser (http://www.kvaser.com). | ||
| 46 | |||
| 47 | endif | ||
diff --git a/drivers/net/can/usb/Kconfig b/drivers/net/can/usb/Kconfig new file mode 100644 index 000000000000..bbc78e0b8a15 --- /dev/null +++ b/drivers/net/can/usb/Kconfig | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | menu "CAN USB interfaces" | ||
| 2 | depends on USB && CAN_DEV | ||
| 3 | |||
| 4 | config CAN_EMS_USB | ||
| 5 | tristate "EMS CPC-USB/ARM7 CAN/USB interface" | ||
| 6 | ---help--- | ||
| 7 | This driver is for the one channel CPC-USB/ARM7 CAN/USB interface | ||
| 8 | from from EMS Dr. Thomas Wuensche (http://www.ems-wuensche.de). | ||
| 9 | |||
| 10 | endmenu | ||
diff --git a/drivers/net/can/usb/Makefile b/drivers/net/can/usb/Makefile index c3f75ba701b1..0afd51d4c7a5 100644 --- a/drivers/net/can/usb/Makefile +++ b/drivers/net/can/usb/Makefile | |||
| @@ -3,3 +3,5 @@ | |||
| 3 | # | 3 | # |
| 4 | 4 | ||
| 5 | obj-$(CONFIG_CAN_EMS_USB) += ems_usb.o | 5 | obj-$(CONFIG_CAN_EMS_USB) += ems_usb.o |
| 6 | |||
| 7 | ccflags-$(CONFIG_CAN_DEBUG_DEVICES) := -DDEBUG | ||
diff --git a/drivers/net/cxgb3/sge.c b/drivers/net/cxgb3/sge.c index f86612857a73..6366061712f4 100644 --- a/drivers/net/cxgb3/sge.c +++ b/drivers/net/cxgb3/sge.c | |||
| @@ -879,7 +879,7 @@ recycle: | |||
| 879 | pci_dma_sync_single_for_cpu(adap->pdev, dma_addr, len, | 879 | pci_dma_sync_single_for_cpu(adap->pdev, dma_addr, len, |
| 880 | PCI_DMA_FROMDEVICE); | 880 | PCI_DMA_FROMDEVICE); |
| 881 | (*sd->pg_chunk.p_cnt)--; | 881 | (*sd->pg_chunk.p_cnt)--; |
| 882 | if (!*sd->pg_chunk.p_cnt) | 882 | if (!*sd->pg_chunk.p_cnt && sd->pg_chunk.page != fl->pg_chunk.page) |
| 883 | pci_unmap_page(adap->pdev, | 883 | pci_unmap_page(adap->pdev, |
| 884 | sd->pg_chunk.mapping, | 884 | sd->pg_chunk.mapping, |
| 885 | fl->alloc_size, | 885 | fl->alloc_size, |
| @@ -2088,7 +2088,7 @@ static void lro_add_page(struct adapter *adap, struct sge_qset *qs, | |||
| 2088 | PCI_DMA_FROMDEVICE); | 2088 | PCI_DMA_FROMDEVICE); |
| 2089 | 2089 | ||
| 2090 | (*sd->pg_chunk.p_cnt)--; | 2090 | (*sd->pg_chunk.p_cnt)--; |
| 2091 | if (!*sd->pg_chunk.p_cnt) | 2091 | if (!*sd->pg_chunk.p_cnt && sd->pg_chunk.page != fl->pg_chunk.page) |
| 2092 | pci_unmap_page(adap->pdev, | 2092 | pci_unmap_page(adap->pdev, |
| 2093 | sd->pg_chunk.mapping, | 2093 | sd->pg_chunk.mapping, |
| 2094 | fl->alloc_size, | 2094 | fl->alloc_size, |
diff --git a/drivers/net/davinci_emac.c b/drivers/net/davinci_emac.c index 3179521aee90..e3478314c002 100644 --- a/drivers/net/davinci_emac.c +++ b/drivers/net/davinci_emac.c | |||
| @@ -164,16 +164,14 @@ static const char emac_version_string[] = "TI DaVinci EMAC Linux v6.1"; | |||
| 164 | # define EMAC_MBP_MCASTCHAN(ch) ((ch) & 0x7) | 164 | # define EMAC_MBP_MCASTCHAN(ch) ((ch) & 0x7) |
| 165 | 165 | ||
| 166 | /* EMAC mac_control register */ | 166 | /* EMAC mac_control register */ |
| 167 | #define EMAC_MACCONTROL_TXPTYPE (0x200) | 167 | #define EMAC_MACCONTROL_TXPTYPE BIT(9) |
| 168 | #define EMAC_MACCONTROL_TXPACEEN (0x40) | 168 | #define EMAC_MACCONTROL_TXPACEEN BIT(6) |
| 169 | #define EMAC_MACCONTROL_MIIEN (0x20) | 169 | #define EMAC_MACCONTROL_GMIIEN BIT(5) |
| 170 | #define EMAC_MACCONTROL_GIGABITEN (0x80) | 170 | #define EMAC_MACCONTROL_GIGABITEN BIT(7) |
| 171 | #define EMAC_MACCONTROL_GIGABITEN_SHIFT (7) | 171 | #define EMAC_MACCONTROL_FULLDUPLEXEN BIT(0) |
| 172 | #define EMAC_MACCONTROL_FULLDUPLEXEN (0x1) | ||
| 173 | #define EMAC_MACCONTROL_RMIISPEED_MASK BIT(15) | 172 | #define EMAC_MACCONTROL_RMIISPEED_MASK BIT(15) |
| 174 | 173 | ||
| 175 | /* GIGABIT MODE related bits */ | 174 | /* GIGABIT MODE related bits */ |
| 176 | #define EMAC_DM646X_MACCONTORL_GMIIEN BIT(5) | ||
| 177 | #define EMAC_DM646X_MACCONTORL_GIG BIT(7) | 175 | #define EMAC_DM646X_MACCONTORL_GIG BIT(7) |
| 178 | #define EMAC_DM646X_MACCONTORL_GIGFORCE BIT(17) | 176 | #define EMAC_DM646X_MACCONTORL_GIGFORCE BIT(17) |
| 179 | 177 | ||
| @@ -192,10 +190,10 @@ static const char emac_version_string[] = "TI DaVinci EMAC Linux v6.1"; | |||
| 192 | #define EMAC_RX_BUFFER_OFFSET_MASK (0xFFFF) | 190 | #define EMAC_RX_BUFFER_OFFSET_MASK (0xFFFF) |
| 193 | 191 | ||
| 194 | /* MAC_IN_VECTOR (0x180) register bit fields */ | 192 | /* MAC_IN_VECTOR (0x180) register bit fields */ |
| 195 | #define EMAC_DM644X_MAC_IN_VECTOR_HOST_INT (0x20000) | 193 | #define EMAC_DM644X_MAC_IN_VECTOR_HOST_INT BIT(17) |
| 196 | #define EMAC_DM644X_MAC_IN_VECTOR_STATPEND_INT (0x10000) | 194 | #define EMAC_DM644X_MAC_IN_VECTOR_STATPEND_INT BIT(16) |
| 197 | #define EMAC_DM644X_MAC_IN_VECTOR_RX_INT_VEC (0x0100) | 195 | #define EMAC_DM644X_MAC_IN_VECTOR_RX_INT_VEC BIT(8) |
| 198 | #define EMAC_DM644X_MAC_IN_VECTOR_TX_INT_VEC (0x01) | 196 | #define EMAC_DM644X_MAC_IN_VECTOR_TX_INT_VEC BIT(0) |
| 199 | 197 | ||
| 200 | /** NOTE:: For DM646x the IN_VECTOR has changed */ | 198 | /** NOTE:: For DM646x the IN_VECTOR has changed */ |
| 201 | #define EMAC_DM646X_MAC_IN_VECTOR_RX_INT_VEC BIT(EMAC_DEF_RX_CH) | 199 | #define EMAC_DM646X_MAC_IN_VECTOR_RX_INT_VEC BIT(EMAC_DEF_RX_CH) |
| @@ -203,7 +201,6 @@ static const char emac_version_string[] = "TI DaVinci EMAC Linux v6.1"; | |||
| 203 | #define EMAC_DM646X_MAC_IN_VECTOR_HOST_INT BIT(26) | 201 | #define EMAC_DM646X_MAC_IN_VECTOR_HOST_INT BIT(26) |
| 204 | #define EMAC_DM646X_MAC_IN_VECTOR_STATPEND_INT BIT(27) | 202 | #define EMAC_DM646X_MAC_IN_VECTOR_STATPEND_INT BIT(27) |
| 205 | 203 | ||
| 206 | |||
| 207 | /* CPPI bit positions */ | 204 | /* CPPI bit positions */ |
| 208 | #define EMAC_CPPI_SOP_BIT BIT(31) | 205 | #define EMAC_CPPI_SOP_BIT BIT(31) |
| 209 | #define EMAC_CPPI_EOP_BIT BIT(30) | 206 | #define EMAC_CPPI_EOP_BIT BIT(30) |
| @@ -750,8 +747,7 @@ static void emac_update_phystatus(struct emac_priv *priv) | |||
| 750 | 747 | ||
| 751 | if (priv->speed == SPEED_1000 && (priv->version == EMAC_VERSION_2)) { | 748 | if (priv->speed == SPEED_1000 && (priv->version == EMAC_VERSION_2)) { |
| 752 | mac_control = emac_read(EMAC_MACCONTROL); | 749 | mac_control = emac_read(EMAC_MACCONTROL); |
| 753 | mac_control |= (EMAC_DM646X_MACCONTORL_GMIIEN | | 750 | mac_control |= (EMAC_DM646X_MACCONTORL_GIG | |
| 754 | EMAC_DM646X_MACCONTORL_GIG | | ||
| 755 | EMAC_DM646X_MACCONTORL_GIGFORCE); | 751 | EMAC_DM646X_MACCONTORL_GIGFORCE); |
| 756 | } else { | 752 | } else { |
| 757 | /* Clear the GIG bit and GIGFORCE bit */ | 753 | /* Clear the GIG bit and GIGFORCE bit */ |
| @@ -2108,7 +2104,7 @@ static int emac_hw_enable(struct emac_priv *priv) | |||
| 2108 | 2104 | ||
| 2109 | /* Enable MII */ | 2105 | /* Enable MII */ |
| 2110 | val = emac_read(EMAC_MACCONTROL); | 2106 | val = emac_read(EMAC_MACCONTROL); |
| 2111 | val |= (EMAC_MACCONTROL_MIIEN); | 2107 | val |= (EMAC_MACCONTROL_GMIIEN); |
| 2112 | emac_write(EMAC_MACCONTROL, val); | 2108 | emac_write(EMAC_MACCONTROL, val); |
| 2113 | 2109 | ||
| 2114 | /* Enable NAPI and interrupts */ | 2110 | /* Enable NAPI and interrupts */ |
| @@ -2140,9 +2136,6 @@ static int emac_poll(struct napi_struct *napi, int budget) | |||
| 2140 | u32 status = 0; | 2136 | u32 status = 0; |
| 2141 | u32 num_pkts = 0; | 2137 | u32 num_pkts = 0; |
| 2142 | 2138 | ||
| 2143 | if (!netif_running(ndev)) | ||
| 2144 | return 0; | ||
| 2145 | |||
| 2146 | /* Check interrupt vectors and call packet processing */ | 2139 | /* Check interrupt vectors and call packet processing */ |
| 2147 | status = emac_read(EMAC_MACINVECTOR); | 2140 | status = emac_read(EMAC_MACINVECTOR); |
| 2148 | 2141 | ||
diff --git a/drivers/net/e100.c b/drivers/net/e100.c index 3c29a20b751e..d269a68ce354 100644 --- a/drivers/net/e100.c +++ b/drivers/net/e100.c | |||
| @@ -157,6 +157,7 @@ | |||
| 157 | #include <linux/init.h> | 157 | #include <linux/init.h> |
| 158 | #include <linux/pci.h> | 158 | #include <linux/pci.h> |
| 159 | #include <linux/dma-mapping.h> | 159 | #include <linux/dma-mapping.h> |
| 160 | #include <linux/dmapool.h> | ||
| 160 | #include <linux/netdevice.h> | 161 | #include <linux/netdevice.h> |
| 161 | #include <linux/etherdevice.h> | 162 | #include <linux/etherdevice.h> |
| 162 | #include <linux/mii.h> | 163 | #include <linux/mii.h> |
| @@ -602,6 +603,7 @@ struct nic { | |||
| 602 | struct mem *mem; | 603 | struct mem *mem; |
| 603 | dma_addr_t dma_addr; | 604 | dma_addr_t dma_addr; |
| 604 | 605 | ||
| 606 | struct pci_pool *cbs_pool; | ||
| 605 | dma_addr_t cbs_dma_addr; | 607 | dma_addr_t cbs_dma_addr; |
| 606 | u8 adaptive_ifs; | 608 | u8 adaptive_ifs; |
| 607 | u8 tx_threshold; | 609 | u8 tx_threshold; |
| @@ -1793,9 +1795,7 @@ static void e100_clean_cbs(struct nic *nic) | |||
| 1793 | nic->cb_to_clean = nic->cb_to_clean->next; | 1795 | nic->cb_to_clean = nic->cb_to_clean->next; |
| 1794 | nic->cbs_avail++; | 1796 | nic->cbs_avail++; |
| 1795 | } | 1797 | } |
| 1796 | pci_free_consistent(nic->pdev, | 1798 | pci_pool_free(nic->cbs_pool, nic->cbs, nic->cbs_dma_addr); |
| 1797 | sizeof(struct cb) * nic->params.cbs.count, | ||
| 1798 | nic->cbs, nic->cbs_dma_addr); | ||
| 1799 | nic->cbs = NULL; | 1799 | nic->cbs = NULL; |
| 1800 | nic->cbs_avail = 0; | 1800 | nic->cbs_avail = 0; |
| 1801 | } | 1801 | } |
| @@ -1813,8 +1813,8 @@ static int e100_alloc_cbs(struct nic *nic) | |||
| 1813 | nic->cb_to_use = nic->cb_to_send = nic->cb_to_clean = NULL; | 1813 | nic->cb_to_use = nic->cb_to_send = nic->cb_to_clean = NULL; |
| 1814 | nic->cbs_avail = 0; | 1814 | nic->cbs_avail = 0; |
| 1815 | 1815 | ||
| 1816 | nic->cbs = pci_alloc_consistent(nic->pdev, | 1816 | nic->cbs = pci_pool_alloc(nic->cbs_pool, GFP_KERNEL, |
| 1817 | sizeof(struct cb) * count, &nic->cbs_dma_addr); | 1817 | &nic->cbs_dma_addr); |
| 1818 | if (!nic->cbs) | 1818 | if (!nic->cbs) |
| 1819 | return -ENOMEM; | 1819 | return -ENOMEM; |
| 1820 | 1820 | ||
| @@ -2841,7 +2841,11 @@ static int __devinit e100_probe(struct pci_dev *pdev, | |||
| 2841 | DPRINTK(PROBE, ERR, "Cannot register net device, aborting.\n"); | 2841 | DPRINTK(PROBE, ERR, "Cannot register net device, aborting.\n"); |
| 2842 | goto err_out_free; | 2842 | goto err_out_free; |
| 2843 | } | 2843 | } |
| 2844 | 2844 | nic->cbs_pool = pci_pool_create(netdev->name, | |
| 2845 | nic->pdev, | ||
| 2846 | nic->params.cbs.count * sizeof(struct cb), | ||
| 2847 | sizeof(u32), | ||
| 2848 | 0); | ||
| 2845 | DPRINTK(PROBE, INFO, "addr 0x%llx, irq %d, MAC addr %pM\n", | 2849 | DPRINTK(PROBE, INFO, "addr 0x%llx, irq %d, MAC addr %pM\n", |
| 2846 | (unsigned long long)pci_resource_start(pdev, use_io ? 1 : 0), | 2850 | (unsigned long long)pci_resource_start(pdev, use_io ? 1 : 0), |
| 2847 | pdev->irq, netdev->dev_addr); | 2851 | pdev->irq, netdev->dev_addr); |
| @@ -2871,6 +2875,7 @@ static void __devexit e100_remove(struct pci_dev *pdev) | |||
| 2871 | unregister_netdev(netdev); | 2875 | unregister_netdev(netdev); |
| 2872 | e100_free(nic); | 2876 | e100_free(nic); |
| 2873 | pci_iounmap(pdev, nic->csr); | 2877 | pci_iounmap(pdev, nic->csr); |
| 2878 | pci_pool_destroy(nic->cbs_pool); | ||
| 2874 | free_netdev(netdev); | 2879 | free_netdev(netdev); |
| 2875 | pci_release_regions(pdev); | 2880 | pci_release_regions(pdev); |
| 2876 | pci_disable_device(pdev); | 2881 | pci_disable_device(pdev); |
diff --git a/drivers/net/e1000e/e1000.h b/drivers/net/e1000e/e1000.h index 189dfa2d6c76..3e187b0e4203 100644 --- a/drivers/net/e1000e/e1000.h +++ b/drivers/net/e1000e/e1000.h | |||
| @@ -141,6 +141,8 @@ struct e1000_info; | |||
| 141 | #define HV_TNCRS_UPPER PHY_REG(778, 29) /* Transmit with no CRS */ | 141 | #define HV_TNCRS_UPPER PHY_REG(778, 29) /* Transmit with no CRS */ |
| 142 | #define HV_TNCRS_LOWER PHY_REG(778, 30) | 142 | #define HV_TNCRS_LOWER PHY_REG(778, 30) |
| 143 | 143 | ||
| 144 | #define E1000_FCRTV_PCH 0x05F40 /* PCH Flow Control Refresh Timer Value */ | ||
| 145 | |||
| 144 | /* BM PHY Copper Specific Status */ | 146 | /* BM PHY Copper Specific Status */ |
| 145 | #define BM_CS_STATUS 17 | 147 | #define BM_CS_STATUS 17 |
| 146 | #define BM_CS_STATUS_LINK_UP 0x0400 | 148 | #define BM_CS_STATUS_LINK_UP 0x0400 |
diff --git a/drivers/net/e1000e/ethtool.c b/drivers/net/e1000e/ethtool.c index 1bf4d2a5d34f..e82638ecae88 100644 --- a/drivers/net/e1000e/ethtool.c +++ b/drivers/net/e1000e/ethtool.c | |||
| @@ -327,10 +327,18 @@ static int e1000_set_pauseparam(struct net_device *netdev, | |||
| 327 | 327 | ||
| 328 | hw->fc.current_mode = hw->fc.requested_mode; | 328 | hw->fc.current_mode = hw->fc.requested_mode; |
| 329 | 329 | ||
| 330 | retval = ((hw->phy.media_type == e1000_media_type_fiber) ? | 330 | if (hw->phy.media_type == e1000_media_type_fiber) { |
| 331 | hw->mac.ops.setup_link(hw) : e1000e_force_mac_fc(hw)); | 331 | retval = hw->mac.ops.setup_link(hw); |
| 332 | /* implicit goto out */ | ||
| 333 | } else { | ||
| 334 | retval = e1000e_force_mac_fc(hw); | ||
| 335 | if (retval) | ||
| 336 | goto out; | ||
| 337 | e1000e_set_fc_watermarks(hw); | ||
| 338 | } | ||
| 332 | } | 339 | } |
| 333 | 340 | ||
| 341 | out: | ||
| 334 | clear_bit(__E1000_RESETTING, &adapter->state); | 342 | clear_bit(__E1000_RESETTING, &adapter->state); |
| 335 | return retval; | 343 | return retval; |
| 336 | } | 344 | } |
diff --git a/drivers/net/e1000e/ich8lan.c b/drivers/net/e1000e/ich8lan.c index 51ddb04ab195..eff3f4783655 100644 --- a/drivers/net/e1000e/ich8lan.c +++ b/drivers/net/e1000e/ich8lan.c | |||
| @@ -1118,7 +1118,8 @@ static s32 e1000_oem_bits_config_ich8lan(struct e1000_hw *hw, bool d0_state) | |||
| 1118 | oem_reg |= HV_OEM_BITS_LPLU; | 1118 | oem_reg |= HV_OEM_BITS_LPLU; |
| 1119 | } | 1119 | } |
| 1120 | /* Restart auto-neg to activate the bits */ | 1120 | /* Restart auto-neg to activate the bits */ |
| 1121 | oem_reg |= HV_OEM_BITS_RESTART_AN; | 1121 | if (!e1000_check_reset_block(hw)) |
| 1122 | oem_reg |= HV_OEM_BITS_RESTART_AN; | ||
| 1122 | ret_val = hw->phy.ops.write_phy_reg_locked(hw, HV_OEM_BITS, oem_reg); | 1123 | ret_val = hw->phy.ops.write_phy_reg_locked(hw, HV_OEM_BITS, oem_reg); |
| 1123 | 1124 | ||
| 1124 | out: | 1125 | out: |
| @@ -3558,6 +3559,7 @@ struct e1000_info e1000_pch_info = { | |||
| 3558 | | FLAG_HAS_AMT | 3559 | | FLAG_HAS_AMT |
| 3559 | | FLAG_HAS_FLASH | 3560 | | FLAG_HAS_FLASH |
| 3560 | | FLAG_HAS_JUMBO_FRAMES | 3561 | | FLAG_HAS_JUMBO_FRAMES |
| 3562 | | FLAG_DISABLE_FC_PAUSE_TIME /* errata */ | ||
| 3561 | | FLAG_APME_IN_WUC, | 3563 | | FLAG_APME_IN_WUC, |
| 3562 | .pba = 26, | 3564 | .pba = 26, |
| 3563 | .max_hw_frame_size = 4096, | 3565 | .max_hw_frame_size = 4096, |
diff --git a/drivers/net/e1000e/netdev.c b/drivers/net/e1000e/netdev.c index 0687c6aa4e46..fad8f9ea0043 100644 --- a/drivers/net/e1000e/netdev.c +++ b/drivers/net/e1000e/netdev.c | |||
| @@ -2769,25 +2769,38 @@ void e1000e_reset(struct e1000_adapter *adapter) | |||
| 2769 | /* | 2769 | /* |
| 2770 | * flow control settings | 2770 | * flow control settings |
| 2771 | * | 2771 | * |
| 2772 | * The high water mark must be low enough to fit two full frame | 2772 | * The high water mark must be low enough to fit one full frame |
| 2773 | * (or the size used for early receive) above it in the Rx FIFO. | 2773 | * (or the size used for early receive) above it in the Rx FIFO. |
| 2774 | * Set it to the lower of: | 2774 | * Set it to the lower of: |
| 2775 | * - 90% of the Rx FIFO size, and | 2775 | * - 90% of the Rx FIFO size, and |
| 2776 | * - the full Rx FIFO size minus the early receive size (for parts | 2776 | * - the full Rx FIFO size minus the early receive size (for parts |
| 2777 | * with ERT support assuming ERT set to E1000_ERT_2048), or | 2777 | * with ERT support assuming ERT set to E1000_ERT_2048), or |
| 2778 | * - the full Rx FIFO size minus two full frames | 2778 | * - the full Rx FIFO size minus one full frame |
| 2779 | */ | 2779 | */ |
| 2780 | if ((adapter->flags & FLAG_HAS_ERT) && | 2780 | if (hw->mac.type == e1000_pchlan) { |
| 2781 | (adapter->netdev->mtu > ETH_DATA_LEN)) | 2781 | /* |
| 2782 | hwm = min(((pba << 10) * 9 / 10), | 2782 | * Workaround PCH LOM adapter hangs with certain network |
| 2783 | ((pba << 10) - (E1000_ERT_2048 << 3))); | 2783 | * loads. If hangs persist, try disabling Tx flow control. |
| 2784 | else | 2784 | */ |
| 2785 | hwm = min(((pba << 10) * 9 / 10), | 2785 | if (adapter->netdev->mtu > ETH_DATA_LEN) { |
| 2786 | ((pba << 10) - (2 * adapter->max_frame_size))); | 2786 | fc->high_water = 0x3500; |
| 2787 | fc->low_water = 0x1500; | ||
| 2788 | } else { | ||
| 2789 | fc->high_water = 0x5000; | ||
| 2790 | fc->low_water = 0x3000; | ||
| 2791 | } | ||
| 2792 | } else { | ||
| 2793 | if ((adapter->flags & FLAG_HAS_ERT) && | ||
| 2794 | (adapter->netdev->mtu > ETH_DATA_LEN)) | ||
| 2795 | hwm = min(((pba << 10) * 9 / 10), | ||
| 2796 | ((pba << 10) - (E1000_ERT_2048 << 3))); | ||
| 2797 | else | ||
| 2798 | hwm = min(((pba << 10) * 9 / 10), | ||
| 2799 | ((pba << 10) - adapter->max_frame_size)); | ||
| 2787 | 2800 | ||
| 2788 | fc->high_water = hwm & E1000_FCRTH_RTH; /* 8-byte granularity */ | 2801 | fc->high_water = hwm & E1000_FCRTH_RTH; /* 8-byte granularity */ |
| 2789 | fc->low_water = (fc->high_water - (2 * adapter->max_frame_size)); | 2802 | fc->low_water = fc->high_water - 8; |
| 2790 | fc->low_water &= E1000_FCRTL_RTL; /* 8-byte granularity */ | 2803 | } |
| 2791 | 2804 | ||
| 2792 | if (adapter->flags & FLAG_DISABLE_FC_PAUSE_TIME) | 2805 | if (adapter->flags & FLAG_DISABLE_FC_PAUSE_TIME) |
| 2793 | fc->pause_time = 0xFFFF; | 2806 | fc->pause_time = 0xFFFF; |
| @@ -2813,6 +2826,10 @@ void e1000e_reset(struct e1000_adapter *adapter) | |||
| 2813 | if (mac->ops.init_hw(hw)) | 2826 | if (mac->ops.init_hw(hw)) |
| 2814 | e_err("Hardware Error\n"); | 2827 | e_err("Hardware Error\n"); |
| 2815 | 2828 | ||
| 2829 | /* additional part of the flow-control workaround above */ | ||
| 2830 | if (hw->mac.type == e1000_pchlan) | ||
| 2831 | ew32(FCRTV_PCH, 0x1000); | ||
| 2832 | |||
| 2816 | e1000_update_mng_vlan(adapter); | 2833 | e1000_update_mng_vlan(adapter); |
| 2817 | 2834 | ||
| 2818 | /* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */ | 2835 | /* Enable h/w to recognize an 802.1Q VLAN Ethernet packet */ |
| @@ -3610,7 +3627,7 @@ static void e1000_watchdog_task(struct work_struct *work) | |||
| 3610 | case SPEED_100: | 3627 | case SPEED_100: |
| 3611 | txb2b = 0; | 3628 | txb2b = 0; |
| 3612 | netdev->tx_queue_len = 100; | 3629 | netdev->tx_queue_len = 100; |
| 3613 | /* maybe add some timeout factor ? */ | 3630 | adapter->tx_timeout_factor = 10; |
| 3614 | break; | 3631 | break; |
| 3615 | } | 3632 | } |
| 3616 | 3633 | ||
| @@ -4288,8 +4305,10 @@ static int e1000_change_mtu(struct net_device *netdev, int new_mtu) | |||
| 4288 | 4305 | ||
| 4289 | while (test_and_set_bit(__E1000_RESETTING, &adapter->state)) | 4306 | while (test_and_set_bit(__E1000_RESETTING, &adapter->state)) |
| 4290 | msleep(1); | 4307 | msleep(1); |
| 4291 | /* e1000e_down has a dependency on max_frame_size */ | 4308 | /* e1000e_down -> e1000e_reset dependent on max_frame_size & mtu */ |
| 4292 | adapter->max_frame_size = max_frame; | 4309 | adapter->max_frame_size = max_frame; |
| 4310 | e_info("changing MTU from %d to %d\n", netdev->mtu, new_mtu); | ||
| 4311 | netdev->mtu = new_mtu; | ||
| 4293 | if (netif_running(netdev)) | 4312 | if (netif_running(netdev)) |
| 4294 | e1000e_down(adapter); | 4313 | e1000e_down(adapter); |
| 4295 | 4314 | ||
| @@ -4319,9 +4338,6 @@ static int e1000_change_mtu(struct net_device *netdev, int new_mtu) | |||
| 4319 | adapter->rx_buffer_len = ETH_FRAME_LEN + VLAN_HLEN | 4338 | adapter->rx_buffer_len = ETH_FRAME_LEN + VLAN_HLEN |
| 4320 | + ETH_FCS_LEN; | 4339 | + ETH_FCS_LEN; |
| 4321 | 4340 | ||
| 4322 | e_info("changing MTU from %d to %d\n", netdev->mtu, new_mtu); | ||
| 4323 | netdev->mtu = new_mtu; | ||
| 4324 | |||
| 4325 | if (netif_running(netdev)) | 4341 | if (netif_running(netdev)) |
| 4326 | e1000e_up(adapter); | 4342 | e1000e_up(adapter); |
| 4327 | else | 4343 | else |
diff --git a/drivers/net/e1000e/phy.c b/drivers/net/e1000e/phy.c index 03175b3a2c9e..85f955f70417 100644 --- a/drivers/net/e1000e/phy.c +++ b/drivers/net/e1000e/phy.c | |||
| @@ -71,7 +71,6 @@ static const u16 e1000_igp_2_cable_length_table[] = | |||
| 71 | #define I82577_CFG_ASSERT_CRS_ON_TX (1 << 15) | 71 | #define I82577_CFG_ASSERT_CRS_ON_TX (1 << 15) |
| 72 | #define I82577_CFG_ENABLE_DOWNSHIFT (3 << 10) /* auto downshift 100/10 */ | 72 | #define I82577_CFG_ENABLE_DOWNSHIFT (3 << 10) /* auto downshift 100/10 */ |
| 73 | #define I82577_CTRL_REG 23 | 73 | #define I82577_CTRL_REG 23 |
| 74 | #define I82577_CTRL_DOWNSHIFT_MASK (7 << 10) | ||
| 75 | 74 | ||
| 76 | /* 82577 specific PHY registers */ | 75 | /* 82577 specific PHY registers */ |
| 77 | #define I82577_PHY_CTRL_2 18 | 76 | #define I82577_PHY_CTRL_2 18 |
| @@ -660,15 +659,6 @@ s32 e1000_copper_link_setup_82577(struct e1000_hw *hw) | |||
| 660 | phy_data |= I82577_CFG_ENABLE_DOWNSHIFT; | 659 | phy_data |= I82577_CFG_ENABLE_DOWNSHIFT; |
| 661 | 660 | ||
| 662 | ret_val = phy->ops.write_phy_reg(hw, I82577_CFG_REG, phy_data); | 661 | ret_val = phy->ops.write_phy_reg(hw, I82577_CFG_REG, phy_data); |
| 663 | if (ret_val) | ||
| 664 | goto out; | ||
| 665 | |||
| 666 | /* Set number of link attempts before downshift */ | ||
| 667 | ret_val = phy->ops.read_phy_reg(hw, I82577_CTRL_REG, &phy_data); | ||
| 668 | if (ret_val) | ||
| 669 | goto out; | ||
| 670 | phy_data &= ~I82577_CTRL_DOWNSHIFT_MASK; | ||
| 671 | ret_val = phy->ops.write_phy_reg(hw, I82577_CTRL_REG, phy_data); | ||
| 672 | 662 | ||
| 673 | out: | 663 | out: |
| 674 | return ret_val; | 664 | return ret_val; |
| @@ -2658,19 +2648,18 @@ static s32 __e1000_read_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 *data, | |||
| 2658 | page = 0; | 2648 | page = 0; |
| 2659 | 2649 | ||
| 2660 | if (reg > MAX_PHY_MULTI_PAGE_REG) { | 2650 | if (reg > MAX_PHY_MULTI_PAGE_REG) { |
| 2661 | if ((hw->phy.type != e1000_phy_82578) || | 2651 | u32 phy_addr = hw->phy.addr; |
| 2662 | ((reg != I82578_ADDR_REG) && | ||
| 2663 | (reg != I82578_ADDR_REG + 1))) { | ||
| 2664 | u32 phy_addr = hw->phy.addr; | ||
| 2665 | 2652 | ||
| 2666 | hw->phy.addr = 1; | 2653 | hw->phy.addr = 1; |
| 2667 | 2654 | ||
| 2668 | /* Page is shifted left, PHY expects (page x 32) */ | 2655 | /* Page is shifted left, PHY expects (page x 32) */ |
| 2669 | ret_val = e1000e_write_phy_reg_mdic(hw, | 2656 | ret_val = e1000e_write_phy_reg_mdic(hw, |
| 2670 | IGP01E1000_PHY_PAGE_SELECT, | 2657 | IGP01E1000_PHY_PAGE_SELECT, |
| 2671 | (page << IGP_PAGE_SHIFT)); | 2658 | (page << IGP_PAGE_SHIFT)); |
| 2672 | hw->phy.addr = phy_addr; | 2659 | hw->phy.addr = phy_addr; |
| 2673 | } | 2660 | |
| 2661 | if (ret_val) | ||
| 2662 | goto out; | ||
| 2674 | } | 2663 | } |
| 2675 | 2664 | ||
| 2676 | ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & reg, | 2665 | ret_val = e1000e_read_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & reg, |
| @@ -2678,7 +2667,7 @@ static s32 __e1000_read_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 *data, | |||
| 2678 | out: | 2667 | out: |
| 2679 | /* Revert to MDIO fast mode, if applicable */ | 2668 | /* Revert to MDIO fast mode, if applicable */ |
| 2680 | if ((hw->phy.type == e1000_phy_82577) && in_slow_mode) | 2669 | if ((hw->phy.type == e1000_phy_82577) && in_slow_mode) |
| 2681 | ret_val = e1000_set_mdio_slow_mode_hv(hw, false); | 2670 | ret_val |= e1000_set_mdio_slow_mode_hv(hw, false); |
| 2682 | 2671 | ||
| 2683 | if (!locked) | 2672 | if (!locked) |
| 2684 | hw->phy.ops.release_phy(hw); | 2673 | hw->phy.ops.release_phy(hw); |
| @@ -2784,19 +2773,18 @@ static s32 __e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data, | |||
| 2784 | } | 2773 | } |
| 2785 | 2774 | ||
| 2786 | if (reg > MAX_PHY_MULTI_PAGE_REG) { | 2775 | if (reg > MAX_PHY_MULTI_PAGE_REG) { |
| 2787 | if ((hw->phy.type != e1000_phy_82578) || | 2776 | u32 phy_addr = hw->phy.addr; |
| 2788 | ((reg != I82578_ADDR_REG) && | ||
| 2789 | (reg != I82578_ADDR_REG + 1))) { | ||
| 2790 | u32 phy_addr = hw->phy.addr; | ||
| 2791 | 2777 | ||
| 2792 | hw->phy.addr = 1; | 2778 | hw->phy.addr = 1; |
| 2793 | 2779 | ||
| 2794 | /* Page is shifted left, PHY expects (page x 32) */ | 2780 | /* Page is shifted left, PHY expects (page x 32) */ |
| 2795 | ret_val = e1000e_write_phy_reg_mdic(hw, | 2781 | ret_val = e1000e_write_phy_reg_mdic(hw, |
| 2796 | IGP01E1000_PHY_PAGE_SELECT, | 2782 | IGP01E1000_PHY_PAGE_SELECT, |
| 2797 | (page << IGP_PAGE_SHIFT)); | 2783 | (page << IGP_PAGE_SHIFT)); |
| 2798 | hw->phy.addr = phy_addr; | 2784 | hw->phy.addr = phy_addr; |
| 2799 | } | 2785 | |
| 2786 | if (ret_val) | ||
| 2787 | goto out; | ||
| 2800 | } | 2788 | } |
| 2801 | 2789 | ||
| 2802 | ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & reg, | 2790 | ret_val = e1000e_write_phy_reg_mdic(hw, MAX_PHY_REG_ADDRESS & reg, |
| @@ -2805,7 +2793,7 @@ static s32 __e1000_write_phy_reg_hv(struct e1000_hw *hw, u32 offset, u16 data, | |||
| 2805 | out: | 2793 | out: |
| 2806 | /* Revert to MDIO fast mode, if applicable */ | 2794 | /* Revert to MDIO fast mode, if applicable */ |
| 2807 | if ((hw->phy.type == e1000_phy_82577) && in_slow_mode) | 2795 | if ((hw->phy.type == e1000_phy_82577) && in_slow_mode) |
| 2808 | ret_val = e1000_set_mdio_slow_mode_hv(hw, false); | 2796 | ret_val |= e1000_set_mdio_slow_mode_hv(hw, false); |
| 2809 | 2797 | ||
| 2810 | if (!locked) | 2798 | if (!locked) |
| 2811 | hw->phy.ops.release_phy(hw); | 2799 | hw->phy.ops.release_phy(hw); |
diff --git a/drivers/net/forcedeth.c b/drivers/net/forcedeth.c index e1da4666f204..3116601dbfea 100644 --- a/drivers/net/forcedeth.c +++ b/drivers/net/forcedeth.c | |||
| @@ -5821,10 +5821,7 @@ static int __devinit nv_probe(struct pci_dev *pci_dev, const struct pci_device_i | |||
| 5821 | dev->dev_addr); | 5821 | dev->dev_addr); |
| 5822 | dev_printk(KERN_ERR, &pci_dev->dev, | 5822 | dev_printk(KERN_ERR, &pci_dev->dev, |
| 5823 | "Please complain to your hardware vendor. Switching to a random MAC.\n"); | 5823 | "Please complain to your hardware vendor. Switching to a random MAC.\n"); |
| 5824 | dev->dev_addr[0] = 0x00; | 5824 | random_ether_addr(dev->dev_addr); |
| 5825 | dev->dev_addr[1] = 0x00; | ||
| 5826 | dev->dev_addr[2] = 0x6c; | ||
| 5827 | get_random_bytes(&dev->dev_addr[3], 3); | ||
| 5828 | } | 5825 | } |
| 5829 | 5826 | ||
| 5830 | dprintk(KERN_DEBUG "%s: MAC Address %pM\n", | 5827 | dprintk(KERN_DEBUG "%s: MAC Address %pM\n", |
diff --git a/drivers/net/ibm_newemac/emac.h b/drivers/net/ibm_newemac/emac.h index d34adf99fc6a..8a61b597a169 100644 --- a/drivers/net/ibm_newemac/emac.h +++ b/drivers/net/ibm_newemac/emac.h | |||
| @@ -263,8 +263,8 @@ struct emac_regs { | |||
| 263 | 263 | ||
| 264 | 264 | ||
| 265 | /* EMACx_TRTR */ | 265 | /* EMACx_TRTR */ |
| 266 | #define EMAC_TRTR_SHIFT_EMAC4 27 | 266 | #define EMAC_TRTR_SHIFT_EMAC4 24 |
| 267 | #define EMAC_TRTR_SHIFT 24 | 267 | #define EMAC_TRTR_SHIFT 27 |
| 268 | 268 | ||
| 269 | /* EMAC specific TX descriptor control fields (write access) */ | 269 | /* EMAC specific TX descriptor control fields (write access) */ |
| 270 | #define EMAC_TX_CTRL_GFCS 0x0200 | 270 | #define EMAC_TX_CTRL_GFCS 0x0200 |
diff --git a/drivers/net/ixgbe/ixgbe_main.c b/drivers/net/ixgbe/ixgbe_main.c index 5bd9e6bf6f2f..a456578b8578 100644 --- a/drivers/net/ixgbe/ixgbe_main.c +++ b/drivers/net/ixgbe/ixgbe_main.c | |||
| @@ -240,11 +240,11 @@ static void ixgbe_unmap_and_free_tx_resource(struct ixgbe_adapter *adapter, | |||
| 240 | static inline bool ixgbe_tx_is_paused(struct ixgbe_adapter *adapter, | 240 | static inline bool ixgbe_tx_is_paused(struct ixgbe_adapter *adapter, |
| 241 | struct ixgbe_ring *tx_ring) | 241 | struct ixgbe_ring *tx_ring) |
| 242 | { | 242 | { |
| 243 | int tc; | ||
| 244 | u32 txoff = IXGBE_TFCS_TXOFF; | 243 | u32 txoff = IXGBE_TFCS_TXOFF; |
| 245 | 244 | ||
| 246 | #ifdef CONFIG_IXGBE_DCB | 245 | #ifdef CONFIG_IXGBE_DCB |
| 247 | if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) { | 246 | if (adapter->flags & IXGBE_FLAG_DCB_ENABLED) { |
| 247 | int tc; | ||
| 248 | int reg_idx = tx_ring->reg_idx; | 248 | int reg_idx = tx_ring->reg_idx; |
| 249 | int dcb_i = adapter->ring_feature[RING_F_DCB].indices; | 249 | int dcb_i = adapter->ring_feature[RING_F_DCB].indices; |
| 250 | 250 | ||
| @@ -5994,6 +5994,7 @@ static pci_ers_result_t ixgbe_io_slot_reset(struct pci_dev *pdev) | |||
| 5994 | } else { | 5994 | } else { |
| 5995 | pci_set_master(pdev); | 5995 | pci_set_master(pdev); |
| 5996 | pci_restore_state(pdev); | 5996 | pci_restore_state(pdev); |
| 5997 | pci_save_state(pdev); | ||
| 5997 | 5998 | ||
| 5998 | pci_wake_from_d3(pdev, false); | 5999 | pci_wake_from_d3(pdev, false); |
| 5999 | 6000 | ||
diff --git a/drivers/net/ks8851_mll.c b/drivers/net/ks8851_mll.c index 0be14d702beb..c146304d8d6c 100644 --- a/drivers/net/ks8851_mll.c +++ b/drivers/net/ks8851_mll.c | |||
| @@ -568,6 +568,16 @@ static inline void ks_outblk(struct ks_net *ks, u16 *wptr, u32 len) | |||
| 568 | iowrite16(*wptr++, ks->hw_addr); | 568 | iowrite16(*wptr++, ks->hw_addr); |
| 569 | } | 569 | } |
| 570 | 570 | ||
| 571 | static void ks_disable_int(struct ks_net *ks) | ||
| 572 | { | ||
| 573 | ks_wrreg16(ks, KS_IER, 0x0000); | ||
| 574 | } /* ks_disable_int */ | ||
| 575 | |||
| 576 | static void ks_enable_int(struct ks_net *ks) | ||
| 577 | { | ||
| 578 | ks_wrreg16(ks, KS_IER, ks->rc_ier); | ||
| 579 | } /* ks_enable_int */ | ||
| 580 | |||
| 571 | /** | 581 | /** |
| 572 | * ks_tx_fifo_space - return the available hardware buffer size. | 582 | * ks_tx_fifo_space - return the available hardware buffer size. |
| 573 | * @ks: The chip information | 583 | * @ks: The chip information |
| @@ -681,6 +691,47 @@ static void ks_soft_reset(struct ks_net *ks, unsigned op) | |||
| 681 | } | 691 | } |
| 682 | 692 | ||
| 683 | 693 | ||
| 694 | void ks_enable_qmu(struct ks_net *ks) | ||
| 695 | { | ||
| 696 | u16 w; | ||
| 697 | |||
| 698 | w = ks_rdreg16(ks, KS_TXCR); | ||
| 699 | /* Enables QMU Transmit (TXCR). */ | ||
| 700 | ks_wrreg16(ks, KS_TXCR, w | TXCR_TXE); | ||
| 701 | |||
| 702 | /* | ||
| 703 | * RX Frame Count Threshold Enable and Auto-Dequeue RXQ Frame | ||
| 704 | * Enable | ||
| 705 | */ | ||
| 706 | |||
| 707 | w = ks_rdreg16(ks, KS_RXQCR); | ||
| 708 | ks_wrreg16(ks, KS_RXQCR, w | RXQCR_RXFCTE); | ||
| 709 | |||
| 710 | /* Enables QMU Receive (RXCR1). */ | ||
| 711 | w = ks_rdreg16(ks, KS_RXCR1); | ||
| 712 | ks_wrreg16(ks, KS_RXCR1, w | RXCR1_RXE); | ||
| 713 | ks->enabled = true; | ||
| 714 | } /* ks_enable_qmu */ | ||
| 715 | |||
| 716 | static void ks_disable_qmu(struct ks_net *ks) | ||
| 717 | { | ||
| 718 | u16 w; | ||
| 719 | |||
| 720 | w = ks_rdreg16(ks, KS_TXCR); | ||
| 721 | |||
| 722 | /* Disables QMU Transmit (TXCR). */ | ||
| 723 | w &= ~TXCR_TXE; | ||
| 724 | ks_wrreg16(ks, KS_TXCR, w); | ||
| 725 | |||
| 726 | /* Disables QMU Receive (RXCR1). */ | ||
| 727 | w = ks_rdreg16(ks, KS_RXCR1); | ||
| 728 | w &= ~RXCR1_RXE ; | ||
| 729 | ks_wrreg16(ks, KS_RXCR1, w); | ||
| 730 | |||
| 731 | ks->enabled = false; | ||
| 732 | |||
| 733 | } /* ks_disable_qmu */ | ||
| 734 | |||
| 684 | /** | 735 | /** |
| 685 | * ks_read_qmu - read 1 pkt data from the QMU. | 736 | * ks_read_qmu - read 1 pkt data from the QMU. |
| 686 | * @ks: The chip information | 737 | * @ks: The chip information |
| @@ -752,7 +803,7 @@ static void ks_rcv(struct ks_net *ks, struct net_device *netdev) | |||
| 752 | (frame_hdr->len < RX_BUF_SIZE) && frame_hdr->len)) { | 803 | (frame_hdr->len < RX_BUF_SIZE) && frame_hdr->len)) { |
| 753 | skb_reserve(skb, 2); | 804 | skb_reserve(skb, 2); |
| 754 | /* read data block including CRC 4 bytes */ | 805 | /* read data block including CRC 4 bytes */ |
| 755 | ks_read_qmu(ks, (u16 *)skb->data, frame_hdr->len + 4); | 806 | ks_read_qmu(ks, (u16 *)skb->data, frame_hdr->len); |
| 756 | skb_put(skb, frame_hdr->len); | 807 | skb_put(skb, frame_hdr->len); |
| 757 | skb->dev = netdev; | 808 | skb->dev = netdev; |
| 758 | skb->protocol = eth_type_trans(skb, netdev); | 809 | skb->protocol = eth_type_trans(skb, netdev); |
| @@ -861,7 +912,7 @@ static int ks_net_open(struct net_device *netdev) | |||
| 861 | ks_dbg(ks, "%s - entry\n", __func__); | 912 | ks_dbg(ks, "%s - entry\n", __func__); |
| 862 | 913 | ||
| 863 | /* reset the HW */ | 914 | /* reset the HW */ |
| 864 | err = request_irq(ks->irq, ks_irq, KS_INT_FLAGS, DRV_NAME, ks); | 915 | err = request_irq(ks->irq, ks_irq, KS_INT_FLAGS, DRV_NAME, netdev); |
| 865 | 916 | ||
| 866 | if (err) { | 917 | if (err) { |
| 867 | printk(KERN_ERR "Failed to request IRQ: %d: %d\n", | 918 | printk(KERN_ERR "Failed to request IRQ: %d: %d\n", |
| @@ -869,6 +920,15 @@ static int ks_net_open(struct net_device *netdev) | |||
| 869 | return err; | 920 | return err; |
| 870 | } | 921 | } |
| 871 | 922 | ||
| 923 | /* wake up powermode to normal mode */ | ||
| 924 | ks_set_powermode(ks, PMECR_PM_NORMAL); | ||
| 925 | mdelay(1); /* wait for normal mode to take effect */ | ||
| 926 | |||
| 927 | ks_wrreg16(ks, KS_ISR, 0xffff); | ||
| 928 | ks_enable_int(ks); | ||
| 929 | ks_enable_qmu(ks); | ||
| 930 | netif_start_queue(ks->netdev); | ||
| 931 | |||
| 872 | if (netif_msg_ifup(ks)) | 932 | if (netif_msg_ifup(ks)) |
| 873 | ks_dbg(ks, "network device %s up\n", netdev->name); | 933 | ks_dbg(ks, "network device %s up\n", netdev->name); |
| 874 | 934 | ||
| @@ -892,19 +952,14 @@ static int ks_net_stop(struct net_device *netdev) | |||
| 892 | 952 | ||
| 893 | netif_stop_queue(netdev); | 953 | netif_stop_queue(netdev); |
| 894 | 954 | ||
| 895 | kfree(ks->frame_head_info); | ||
| 896 | |||
| 897 | mutex_lock(&ks->lock); | 955 | mutex_lock(&ks->lock); |
| 898 | 956 | ||
| 899 | /* turn off the IRQs and ack any outstanding */ | 957 | /* turn off the IRQs and ack any outstanding */ |
| 900 | ks_wrreg16(ks, KS_IER, 0x0000); | 958 | ks_wrreg16(ks, KS_IER, 0x0000); |
| 901 | ks_wrreg16(ks, KS_ISR, 0xffff); | 959 | ks_wrreg16(ks, KS_ISR, 0xffff); |
| 902 | 960 | ||
| 903 | /* shutdown RX process */ | 961 | /* shutdown RX/TX QMU */ |
| 904 | ks_wrreg16(ks, KS_RXCR1, 0x0000); | 962 | ks_disable_qmu(ks); |
| 905 | |||
| 906 | /* shutdown TX process */ | ||
| 907 | ks_wrreg16(ks, KS_TXCR, 0x0000); | ||
| 908 | 963 | ||
| 909 | /* set powermode to soft power down to save power */ | 964 | /* set powermode to soft power down to save power */ |
| 910 | ks_set_powermode(ks, PMECR_PM_SOFTDOWN); | 965 | ks_set_powermode(ks, PMECR_PM_SOFTDOWN); |
| @@ -929,17 +984,8 @@ static int ks_net_stop(struct net_device *netdev) | |||
| 929 | */ | 984 | */ |
| 930 | static void ks_write_qmu(struct ks_net *ks, u8 *pdata, u16 len) | 985 | static void ks_write_qmu(struct ks_net *ks, u8 *pdata, u16 len) |
| 931 | { | 986 | { |
| 932 | unsigned fid = ks->fid; | ||
| 933 | |||
| 934 | fid = ks->fid; | ||
| 935 | ks->fid = (ks->fid + 1) & TXFR_TXFID_MASK; | ||
| 936 | |||
| 937 | /* reduce the tx interrupt occurrances. */ | ||
| 938 | if (!fid) | ||
| 939 | fid |= TXFR_TXIC; /* irq on completion */ | ||
| 940 | |||
| 941 | /* start header at txb[0] to align txw entries */ | 987 | /* start header at txb[0] to align txw entries */ |
| 942 | ks->txh.txw[0] = cpu_to_le16(fid); | 988 | ks->txh.txw[0] = 0; |
| 943 | ks->txh.txw[1] = cpu_to_le16(len); | 989 | ks->txh.txw[1] = cpu_to_le16(len); |
| 944 | 990 | ||
| 945 | /* 1. set sudo-DMA mode */ | 991 | /* 1. set sudo-DMA mode */ |
| @@ -957,16 +1003,6 @@ static void ks_write_qmu(struct ks_net *ks, u8 *pdata, u16 len) | |||
| 957 | ; | 1003 | ; |
| 958 | } | 1004 | } |
| 959 | 1005 | ||
| 960 | static void ks_disable_int(struct ks_net *ks) | ||
| 961 | { | ||
| 962 | ks_wrreg16(ks, KS_IER, 0x0000); | ||
| 963 | } /* ks_disable_int */ | ||
| 964 | |||
| 965 | static void ks_enable_int(struct ks_net *ks) | ||
| 966 | { | ||
| 967 | ks_wrreg16(ks, KS_IER, ks->rc_ier); | ||
| 968 | } /* ks_enable_int */ | ||
| 969 | |||
| 970 | /** | 1006 | /** |
| 971 | * ks_start_xmit - transmit packet | 1007 | * ks_start_xmit - transmit packet |
| 972 | * @skb : The buffer to transmit | 1008 | * @skb : The buffer to transmit |
| @@ -1410,25 +1446,6 @@ static int ks_read_selftest(struct ks_net *ks) | |||
| 1410 | return ret; | 1446 | return ret; |
| 1411 | } | 1447 | } |
| 1412 | 1448 | ||
| 1413 | static void ks_disable(struct ks_net *ks) | ||
| 1414 | { | ||
| 1415 | u16 w; | ||
| 1416 | |||
| 1417 | w = ks_rdreg16(ks, KS_TXCR); | ||
| 1418 | |||
| 1419 | /* Disables QMU Transmit (TXCR). */ | ||
| 1420 | w &= ~TXCR_TXE; | ||
| 1421 | ks_wrreg16(ks, KS_TXCR, w); | ||
| 1422 | |||
| 1423 | /* Disables QMU Receive (RXCR1). */ | ||
| 1424 | w = ks_rdreg16(ks, KS_RXCR1); | ||
| 1425 | w &= ~RXCR1_RXE ; | ||
| 1426 | ks_wrreg16(ks, KS_RXCR1, w); | ||
| 1427 | |||
| 1428 | ks->enabled = false; | ||
| 1429 | |||
| 1430 | } /* ks_disable */ | ||
| 1431 | |||
| 1432 | static void ks_setup(struct ks_net *ks) | 1449 | static void ks_setup(struct ks_net *ks) |
| 1433 | { | 1450 | { |
| 1434 | u16 w; | 1451 | u16 w; |
| @@ -1463,7 +1480,7 @@ static void ks_setup(struct ks_net *ks) | |||
| 1463 | w = TXCR_TXFCE | TXCR_TXPE | TXCR_TXCRC | TXCR_TCGIP; | 1480 | w = TXCR_TXFCE | TXCR_TXPE | TXCR_TXCRC | TXCR_TCGIP; |
| 1464 | ks_wrreg16(ks, KS_TXCR, w); | 1481 | ks_wrreg16(ks, KS_TXCR, w); |
| 1465 | 1482 | ||
| 1466 | w = RXCR1_RXFCE | RXCR1_RXBE | RXCR1_RXUE; | 1483 | w = RXCR1_RXFCE | RXCR1_RXBE | RXCR1_RXUE | RXCR1_RXME | RXCR1_RXIPFCC; |
| 1467 | 1484 | ||
| 1468 | if (ks->promiscuous) /* bPromiscuous */ | 1485 | if (ks->promiscuous) /* bPromiscuous */ |
| 1469 | w |= (RXCR1_RXAE | RXCR1_RXINVF); | 1486 | w |= (RXCR1_RXAE | RXCR1_RXINVF); |
| @@ -1486,28 +1503,6 @@ static void ks_setup_int(struct ks_net *ks) | |||
| 1486 | ks->rc_ier = (IRQ_LCI | IRQ_TXI | IRQ_RXI); | 1503 | ks->rc_ier = (IRQ_LCI | IRQ_TXI | IRQ_RXI); |
| 1487 | } /* ks_setup_int */ | 1504 | } /* ks_setup_int */ |
| 1488 | 1505 | ||
| 1489 | void ks_enable(struct ks_net *ks) | ||
| 1490 | { | ||
| 1491 | u16 w; | ||
| 1492 | |||
| 1493 | w = ks_rdreg16(ks, KS_TXCR); | ||
| 1494 | /* Enables QMU Transmit (TXCR). */ | ||
| 1495 | ks_wrreg16(ks, KS_TXCR, w | TXCR_TXE); | ||
| 1496 | |||
| 1497 | /* | ||
| 1498 | * RX Frame Count Threshold Enable and Auto-Dequeue RXQ Frame | ||
| 1499 | * Enable | ||
| 1500 | */ | ||
| 1501 | |||
| 1502 | w = ks_rdreg16(ks, KS_RXQCR); | ||
| 1503 | ks_wrreg16(ks, KS_RXQCR, w | RXQCR_RXFCTE); | ||
| 1504 | |||
| 1505 | /* Enables QMU Receive (RXCR1). */ | ||
| 1506 | w = ks_rdreg16(ks, KS_RXCR1); | ||
| 1507 | ks_wrreg16(ks, KS_RXCR1, w | RXCR1_RXE); | ||
| 1508 | ks->enabled = true; | ||
| 1509 | } /* ks_enable */ | ||
| 1510 | |||
| 1511 | static int ks_hw_init(struct ks_net *ks) | 1506 | static int ks_hw_init(struct ks_net *ks) |
| 1512 | { | 1507 | { |
| 1513 | #define MHEADER_SIZE (sizeof(struct type_frame_head) * MAX_RECV_FRAMES) | 1508 | #define MHEADER_SIZE (sizeof(struct type_frame_head) * MAX_RECV_FRAMES) |
| @@ -1612,11 +1607,9 @@ static int __devinit ks8851_probe(struct platform_device *pdev) | |||
| 1612 | 1607 | ||
| 1613 | ks_soft_reset(ks, GRR_GSR); | 1608 | ks_soft_reset(ks, GRR_GSR); |
| 1614 | ks_hw_init(ks); | 1609 | ks_hw_init(ks); |
| 1615 | ks_disable(ks); | 1610 | ks_disable_qmu(ks); |
| 1616 | ks_setup(ks); | 1611 | ks_setup(ks); |
| 1617 | ks_setup_int(ks); | 1612 | ks_setup_int(ks); |
| 1618 | ks_enable_int(ks); | ||
| 1619 | ks_enable(ks); | ||
| 1620 | memcpy(netdev->dev_addr, ks->mac_addr, 6); | 1613 | memcpy(netdev->dev_addr, ks->mac_addr, 6); |
| 1621 | 1614 | ||
| 1622 | data = ks_rdreg16(ks, KS_OBCR); | 1615 | data = ks_rdreg16(ks, KS_OBCR); |
| @@ -1658,6 +1651,7 @@ static int __devexit ks8851_remove(struct platform_device *pdev) | |||
| 1658 | struct ks_net *ks = netdev_priv(netdev); | 1651 | struct ks_net *ks = netdev_priv(netdev); |
| 1659 | struct resource *iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 1652 | struct resource *iomem = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 1660 | 1653 | ||
| 1654 | kfree(ks->frame_head_info); | ||
| 1661 | unregister_netdev(netdev); | 1655 | unregister_netdev(netdev); |
| 1662 | iounmap(ks->hw_addr); | 1656 | iounmap(ks->hw_addr); |
| 1663 | free_netdev(netdev); | 1657 | free_netdev(netdev); |
diff --git a/drivers/net/macvlan.c b/drivers/net/macvlan.c index 3aabfd9dd212..2490aa39804c 100644 --- a/drivers/net/macvlan.c +++ b/drivers/net/macvlan.c | |||
| @@ -360,6 +360,7 @@ static int macvlan_init(struct net_device *dev) | |||
| 360 | dev->state = (dev->state & ~MACVLAN_STATE_MASK) | | 360 | dev->state = (dev->state & ~MACVLAN_STATE_MASK) | |
| 361 | (lowerdev->state & MACVLAN_STATE_MASK); | 361 | (lowerdev->state & MACVLAN_STATE_MASK); |
| 362 | dev->features = lowerdev->features & MACVLAN_FEATURES; | 362 | dev->features = lowerdev->features & MACVLAN_FEATURES; |
| 363 | dev->gso_max_size = lowerdev->gso_max_size; | ||
| 363 | dev->iflink = lowerdev->ifindex; | 364 | dev->iflink = lowerdev->ifindex; |
| 364 | dev->hard_header_len = lowerdev->hard_header_len; | 365 | dev->hard_header_len = lowerdev->hard_header_len; |
| 365 | 366 | ||
| @@ -596,6 +597,7 @@ static int macvlan_device_event(struct notifier_block *unused, | |||
| 596 | case NETDEV_FEAT_CHANGE: | 597 | case NETDEV_FEAT_CHANGE: |
| 597 | list_for_each_entry(vlan, &port->vlans, list) { | 598 | list_for_each_entry(vlan, &port->vlans, list) { |
| 598 | vlan->dev->features = dev->features & MACVLAN_FEATURES; | 599 | vlan->dev->features = dev->features & MACVLAN_FEATURES; |
| 600 | vlan->dev->gso_max_size = dev->gso_max_size; | ||
| 599 | netdev_features_change(vlan->dev); | 601 | netdev_features_change(vlan->dev); |
| 600 | } | 602 | } |
| 601 | break; | 603 | break; |
diff --git a/drivers/net/netxen/netxen_nic.h b/drivers/net/netxen/netxen_nic.h index 7384f59df615..e1237b802872 100644 --- a/drivers/net/netxen/netxen_nic.h +++ b/drivers/net/netxen/netxen_nic.h | |||
| @@ -1163,6 +1163,8 @@ struct netxen_adapter { | |||
| 1163 | u32 int_vec_bit; | 1163 | u32 int_vec_bit; |
| 1164 | u32 heartbit; | 1164 | u32 heartbit; |
| 1165 | 1165 | ||
| 1166 | u8 mac_addr[ETH_ALEN]; | ||
| 1167 | |||
| 1166 | struct netxen_adapter_stats stats; | 1168 | struct netxen_adapter_stats stats; |
| 1167 | 1169 | ||
| 1168 | struct netxen_recv_context recv_ctx; | 1170 | struct netxen_recv_context recv_ctx; |
diff --git a/drivers/net/netxen/netxen_nic_hdr.h b/drivers/net/netxen/netxen_nic_hdr.h index 1c46da632125..17bb3818d84e 100644 --- a/drivers/net/netxen/netxen_nic_hdr.h +++ b/drivers/net/netxen/netxen_nic_hdr.h | |||
| @@ -545,6 +545,8 @@ enum { | |||
| 545 | #define NETXEN_NIU_TEST_MUX_CTL (NETXEN_CRB_NIU + 0x00094) | 545 | #define NETXEN_NIU_TEST_MUX_CTL (NETXEN_CRB_NIU + 0x00094) |
| 546 | #define NETXEN_NIU_XG_PAUSE_CTL (NETXEN_CRB_NIU + 0x00098) | 546 | #define NETXEN_NIU_XG_PAUSE_CTL (NETXEN_CRB_NIU + 0x00098) |
| 547 | #define NETXEN_NIU_XG_PAUSE_LEVEL (NETXEN_CRB_NIU + 0x000dc) | 547 | #define NETXEN_NIU_XG_PAUSE_LEVEL (NETXEN_CRB_NIU + 0x000dc) |
| 548 | #define NETXEN_NIU_FRAME_COUNT_SELECT (NETXEN_CRB_NIU + 0x000ac) | ||
| 549 | #define NETXEN_NIU_FRAME_COUNT (NETXEN_CRB_NIU + 0x000b0) | ||
| 548 | #define NETXEN_NIU_XG_SEL (NETXEN_CRB_NIU + 0x00128) | 550 | #define NETXEN_NIU_XG_SEL (NETXEN_CRB_NIU + 0x00128) |
| 549 | #define NETXEN_NIU_GB_PAUSE_CTL (NETXEN_CRB_NIU + 0x0030c) | 551 | #define NETXEN_NIU_GB_PAUSE_CTL (NETXEN_CRB_NIU + 0x0030c) |
| 550 | 552 | ||
diff --git a/drivers/net/netxen/netxen_nic_hw.c b/drivers/net/netxen/netxen_nic_hw.c index 3185a98b0917..52a3798d8d94 100644 --- a/drivers/net/netxen/netxen_nic_hw.c +++ b/drivers/net/netxen/netxen_nic_hw.c | |||
| @@ -383,24 +383,51 @@ int netxen_niu_disable_xg_port(struct netxen_adapter *adapter) | |||
| 383 | 383 | ||
| 384 | int netxen_p2_nic_set_promisc(struct netxen_adapter *adapter, u32 mode) | 384 | int netxen_p2_nic_set_promisc(struct netxen_adapter *adapter, u32 mode) |
| 385 | { | 385 | { |
| 386 | __u32 reg; | 386 | u32 mac_cfg; |
| 387 | u32 cnt = 0; | ||
| 388 | __u32 reg = 0x0200; | ||
| 387 | u32 port = adapter->physical_port; | 389 | u32 port = adapter->physical_port; |
| 390 | u16 board_type = adapter->ahw.board_type; | ||
| 388 | 391 | ||
| 389 | if (port > NETXEN_NIU_MAX_XG_PORTS) | 392 | if (port > NETXEN_NIU_MAX_XG_PORTS) |
| 390 | return -EINVAL; | 393 | return -EINVAL; |
| 391 | 394 | ||
| 392 | reg = NXRD32(adapter, NETXEN_NIU_XGE_CONFIG_1 + (0x10000 * port)); | 395 | mac_cfg = NXRD32(adapter, NETXEN_NIU_XGE_CONFIG_0 + (0x10000 * port)); |
| 393 | if (mode == NETXEN_NIU_PROMISC_MODE) | 396 | mac_cfg &= ~0x4; |
| 394 | reg = (reg | 0x2000UL); | 397 | NXWR32(adapter, NETXEN_NIU_XGE_CONFIG_0 + (0x10000 * port), mac_cfg); |
| 395 | else | ||
| 396 | reg = (reg & ~0x2000UL); | ||
| 397 | 398 | ||
| 398 | if (mode == NETXEN_NIU_ALLMULTI_MODE) | 399 | if ((board_type == NETXEN_BRDTYPE_P2_SB31_10G_IMEZ) || |
| 399 | reg = (reg | 0x1000UL); | 400 | (board_type == NETXEN_BRDTYPE_P2_SB31_10G_HMEZ)) |
| 400 | else | 401 | reg = (0x20 << port); |
| 401 | reg = (reg & ~0x1000UL); | 402 | |
| 403 | NXWR32(adapter, NETXEN_NIU_FRAME_COUNT_SELECT, reg); | ||
| 404 | |||
| 405 | mdelay(10); | ||
| 406 | |||
| 407 | while (NXRD32(adapter, NETXEN_NIU_FRAME_COUNT) && ++cnt < 20) | ||
| 408 | mdelay(10); | ||
| 409 | |||
| 410 | if (cnt < 20) { | ||
| 411 | |||
| 412 | reg = NXRD32(adapter, | ||
| 413 | NETXEN_NIU_XGE_CONFIG_1 + (0x10000 * port)); | ||
| 414 | |||
| 415 | if (mode == NETXEN_NIU_PROMISC_MODE) | ||
| 416 | reg = (reg | 0x2000UL); | ||
| 417 | else | ||
| 418 | reg = (reg & ~0x2000UL); | ||
| 419 | |||
| 420 | if (mode == NETXEN_NIU_ALLMULTI_MODE) | ||
| 421 | reg = (reg | 0x1000UL); | ||
| 422 | else | ||
| 423 | reg = (reg & ~0x1000UL); | ||
| 424 | |||
| 425 | NXWR32(adapter, | ||
| 426 | NETXEN_NIU_XGE_CONFIG_1 + (0x10000 * port), reg); | ||
| 427 | } | ||
| 402 | 428 | ||
| 403 | NXWR32(adapter, NETXEN_NIU_XGE_CONFIG_1 + (0x10000 * port), reg); | 429 | mac_cfg |= 0x4; |
| 430 | NXWR32(adapter, NETXEN_NIU_XGE_CONFIG_0 + (0x10000 * port), mac_cfg); | ||
| 404 | 431 | ||
| 405 | return 0; | 432 | return 0; |
| 406 | } | 433 | } |
| @@ -436,7 +463,7 @@ netxen_nic_enable_mcast_filter(struct netxen_adapter *adapter) | |||
| 436 | { | 463 | { |
| 437 | u32 val = 0; | 464 | u32 val = 0; |
| 438 | u16 port = adapter->physical_port; | 465 | u16 port = adapter->physical_port; |
| 439 | u8 *addr = adapter->netdev->dev_addr; | 466 | u8 *addr = adapter->mac_addr; |
| 440 | 467 | ||
| 441 | if (adapter->mc_enabled) | 468 | if (adapter->mc_enabled) |
| 442 | return 0; | 469 | return 0; |
| @@ -465,7 +492,7 @@ netxen_nic_disable_mcast_filter(struct netxen_adapter *adapter) | |||
| 465 | { | 492 | { |
| 466 | u32 val = 0; | 493 | u32 val = 0; |
| 467 | u16 port = adapter->physical_port; | 494 | u16 port = adapter->physical_port; |
| 468 | u8 *addr = adapter->netdev->dev_addr; | 495 | u8 *addr = adapter->mac_addr; |
| 469 | 496 | ||
| 470 | if (!adapter->mc_enabled) | 497 | if (!adapter->mc_enabled) |
| 471 | return 0; | 498 | return 0; |
| @@ -660,7 +687,7 @@ void netxen_p3_nic_set_multi(struct net_device *netdev) | |||
| 660 | 687 | ||
| 661 | list_splice_tail_init(&adapter->mac_list, &del_list); | 688 | list_splice_tail_init(&adapter->mac_list, &del_list); |
| 662 | 689 | ||
| 663 | nx_p3_nic_add_mac(adapter, netdev->dev_addr, &del_list); | 690 | nx_p3_nic_add_mac(adapter, adapter->mac_addr, &del_list); |
| 664 | nx_p3_nic_add_mac(adapter, bcast_addr, &del_list); | 691 | nx_p3_nic_add_mac(adapter, bcast_addr, &del_list); |
| 665 | 692 | ||
| 666 | if (netdev->flags & IFF_PROMISC) { | 693 | if (netdev->flags & IFF_PROMISC) { |
diff --git a/drivers/net/netxen/netxen_nic_init.c b/drivers/net/netxen/netxen_nic_init.c index e40b914d6faf..8a0904368e08 100644 --- a/drivers/net/netxen/netxen_nic_init.c +++ b/drivers/net/netxen/netxen_nic_init.c | |||
| @@ -544,6 +544,8 @@ int netxen_pinit_from_rom(struct netxen_adapter *adapter, int verbose) | |||
| 544 | continue; | 544 | continue; |
| 545 | if (off == (ROMUSB_GLB + 0x1c)) /* MS clock */ | 545 | if (off == (ROMUSB_GLB + 0x1c)) /* MS clock */ |
| 546 | continue; | 546 | continue; |
| 547 | if ((off & 0x0ff00000) == NETXEN_CRB_DDR_NET) | ||
| 548 | continue; | ||
| 547 | if (off == (NETXEN_CRB_PEG_NET_1 + 0x18)) | 549 | if (off == (NETXEN_CRB_PEG_NET_1 + 0x18)) |
| 548 | buf[i].data = 0x1020; | 550 | buf[i].data = 0x1020; |
| 549 | /* skip the function enable register */ | 551 | /* skip the function enable register */ |
diff --git a/drivers/net/netxen/netxen_nic_main.c b/drivers/net/netxen/netxen_nic_main.c index 0b4a56a8c8d5..3bf78dbfbf0f 100644 --- a/drivers/net/netxen/netxen_nic_main.c +++ b/drivers/net/netxen/netxen_nic_main.c | |||
| @@ -437,6 +437,7 @@ netxen_read_mac_addr(struct netxen_adapter *adapter) | |||
| 437 | netdev->dev_addr[i] = *(p + 5 - i); | 437 | netdev->dev_addr[i] = *(p + 5 - i); |
| 438 | 438 | ||
| 439 | memcpy(netdev->perm_addr, netdev->dev_addr, netdev->addr_len); | 439 | memcpy(netdev->perm_addr, netdev->dev_addr, netdev->addr_len); |
| 440 | memcpy(adapter->mac_addr, netdev->dev_addr, netdev->addr_len); | ||
| 440 | 441 | ||
| 441 | /* set station address */ | 442 | /* set station address */ |
| 442 | 443 | ||
| @@ -459,6 +460,7 @@ int netxen_nic_set_mac(struct net_device *netdev, void *p) | |||
| 459 | netxen_napi_disable(adapter); | 460 | netxen_napi_disable(adapter); |
| 460 | } | 461 | } |
| 461 | 462 | ||
| 463 | memcpy(adapter->mac_addr, addr->sa_data, netdev->addr_len); | ||
| 462 | memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len); | 464 | memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len); |
| 463 | adapter->macaddr_set(adapter, addr->sa_data); | 465 | adapter->macaddr_set(adapter, addr->sa_data); |
| 464 | 466 | ||
| @@ -956,7 +958,7 @@ netxen_nic_up(struct netxen_adapter *adapter, struct net_device *netdev) | |||
| 956 | return err; | 958 | return err; |
| 957 | } | 959 | } |
| 958 | if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) | 960 | if (NX_IS_REVISION_P2(adapter->ahw.revision_id)) |
| 959 | adapter->macaddr_set(adapter, netdev->dev_addr); | 961 | adapter->macaddr_set(adapter, adapter->mac_addr); |
| 960 | 962 | ||
| 961 | adapter->set_multi(netdev); | 963 | adapter->set_multi(netdev); |
| 962 | adapter->set_mtu(adapter, netdev->mtu); | 964 | adapter->set_mtu(adapter, netdev->mtu); |
diff --git a/drivers/net/phy/mdio-gpio.c b/drivers/net/phy/mdio-gpio.c index 8659d341e769..35897134a5dd 100644 --- a/drivers/net/phy/mdio-gpio.c +++ b/drivers/net/phy/mdio-gpio.c | |||
| @@ -139,7 +139,7 @@ out: | |||
| 139 | return NULL; | 139 | return NULL; |
| 140 | } | 140 | } |
| 141 | 141 | ||
| 142 | static void __devinit mdio_gpio_bus_deinit(struct device *dev) | 142 | static void mdio_gpio_bus_deinit(struct device *dev) |
| 143 | { | 143 | { |
| 144 | struct mii_bus *bus = dev_get_drvdata(dev); | 144 | struct mii_bus *bus = dev_get_drvdata(dev); |
| 145 | struct mdio_gpio_info *bitbang = bus->priv; | 145 | struct mdio_gpio_info *bitbang = bus->priv; |
diff --git a/drivers/net/ppp_generic.c b/drivers/net/ppp_generic.c index 9bf2a6be9031..965adb6174c3 100644 --- a/drivers/net/ppp_generic.c +++ b/drivers/net/ppp_generic.c | |||
| @@ -1944,8 +1944,15 @@ ppp_receive_mp_frame(struct ppp *ppp, struct sk_buff *skb, struct channel *pch) | |||
| 1944 | } | 1944 | } |
| 1945 | 1945 | ||
| 1946 | /* Pull completed packets off the queue and receive them. */ | 1946 | /* Pull completed packets off the queue and receive them. */ |
| 1947 | while ((skb = ppp_mp_reconstruct(ppp))) | 1947 | while ((skb = ppp_mp_reconstruct(ppp))) { |
| 1948 | ppp_receive_nonmp_frame(ppp, skb); | 1948 | if (pskb_may_pull(skb, 2)) |
| 1949 | ppp_receive_nonmp_frame(ppp, skb); | ||
| 1950 | else { | ||
| 1951 | ++ppp->dev->stats.rx_length_errors; | ||
| 1952 | kfree_skb(skb); | ||
| 1953 | ppp_receive_error(ppp); | ||
| 1954 | } | ||
| 1955 | } | ||
| 1949 | 1956 | ||
| 1950 | return; | 1957 | return; |
| 1951 | 1958 | ||
diff --git a/drivers/net/r6040.c b/drivers/net/r6040.c index 7dfcb58b0eb4..8b14c6eda7c3 100644 --- a/drivers/net/r6040.c +++ b/drivers/net/r6040.c | |||
| @@ -1085,7 +1085,7 @@ static int __devinit r6040_init_one(struct pci_dev *pdev, | |||
| 1085 | int bar = 0; | 1085 | int bar = 0; |
| 1086 | u16 *adrp; | 1086 | u16 *adrp; |
| 1087 | 1087 | ||
| 1088 | printk(KERN_INFO "%s\n", version); | 1088 | printk("%s\n", version); |
| 1089 | 1089 | ||
| 1090 | err = pci_enable_device(pdev); | 1090 | err = pci_enable_device(pdev); |
| 1091 | if (err) | 1091 | if (err) |
diff --git a/drivers/net/r8169.c b/drivers/net/r8169.c index fa4935678488..0fe2fc90f207 100644 --- a/drivers/net/r8169.c +++ b/drivers/net/r8169.c | |||
| @@ -3235,6 +3235,10 @@ static void __devexit rtl8169_remove_one(struct pci_dev *pdev) | |||
| 3235 | flush_scheduled_work(); | 3235 | flush_scheduled_work(); |
| 3236 | 3236 | ||
| 3237 | unregister_netdev(dev); | 3237 | unregister_netdev(dev); |
| 3238 | |||
| 3239 | /* restore original MAC address */ | ||
| 3240 | rtl_rar_set(tp, dev->perm_addr); | ||
| 3241 | |||
| 3238 | rtl_disable_msi(pdev, tp); | 3242 | rtl_disable_msi(pdev, tp); |
| 3239 | rtl8169_release_board(pdev, dev, tp->mmio_addr); | 3243 | rtl8169_release_board(pdev, dev, tp->mmio_addr); |
| 3240 | pci_set_drvdata(pdev, NULL); | 3244 | pci_set_drvdata(pdev, NULL); |
| @@ -3243,9 +3247,9 @@ static void __devexit rtl8169_remove_one(struct pci_dev *pdev) | |||
| 3243 | static void rtl8169_set_rxbufsize(struct rtl8169_private *tp, | 3247 | static void rtl8169_set_rxbufsize(struct rtl8169_private *tp, |
| 3244 | struct net_device *dev) | 3248 | struct net_device *dev) |
| 3245 | { | 3249 | { |
| 3246 | unsigned int mtu = dev->mtu; | 3250 | unsigned int max_frame = dev->mtu + VLAN_ETH_HLEN + ETH_FCS_LEN; |
| 3247 | 3251 | ||
| 3248 | tp->rx_buf_sz = (mtu > RX_BUF_SIZE) ? mtu + ETH_HLEN + 8 : RX_BUF_SIZE; | 3252 | tp->rx_buf_sz = (max_frame > RX_BUF_SIZE) ? max_frame : RX_BUF_SIZE; |
| 3249 | } | 3253 | } |
| 3250 | 3254 | ||
| 3251 | static int rtl8169_open(struct net_device *dev) | 3255 | static int rtl8169_open(struct net_device *dev) |
| @@ -4881,6 +4885,9 @@ static void rtl_shutdown(struct pci_dev *pdev) | |||
| 4881 | 4885 | ||
| 4882 | rtl8169_net_suspend(dev); | 4886 | rtl8169_net_suspend(dev); |
| 4883 | 4887 | ||
| 4888 | /* restore original MAC address */ | ||
| 4889 | rtl_rar_set(tp, dev->perm_addr); | ||
| 4890 | |||
| 4884 | spin_lock_irq(&tp->lock); | 4891 | spin_lock_irq(&tp->lock); |
| 4885 | 4892 | ||
| 4886 | rtl8169_asic_down(ioaddr); | 4893 | rtl8169_asic_down(ioaddr); |
diff --git a/drivers/net/s2io.c b/drivers/net/s2io.c index ddccf5fa56b6..0dd7839322bc 100644 --- a/drivers/net/s2io.c +++ b/drivers/net/s2io.c | |||
| @@ -3494,6 +3494,7 @@ static void s2io_reset(struct s2io_nic *sp) | |||
| 3494 | 3494 | ||
| 3495 | /* Restore the PCI state saved during initialization. */ | 3495 | /* Restore the PCI state saved during initialization. */ |
| 3496 | pci_restore_state(sp->pdev); | 3496 | pci_restore_state(sp->pdev); |
| 3497 | pci_save_state(sp->pdev); | ||
| 3497 | pci_read_config_word(sp->pdev, 0x2, &val16); | 3498 | pci_read_config_word(sp->pdev, 0x2, &val16); |
| 3498 | if (check_pci_device_id(val16) != (u16)PCI_ANY_ID) | 3499 | if (check_pci_device_id(val16) != (u16)PCI_ANY_ID) |
| 3499 | break; | 3500 | break; |
diff --git a/drivers/net/smc91x.c b/drivers/net/smc91x.c index 05c91ee6921e..f12206bdbb75 100644 --- a/drivers/net/smc91x.c +++ b/drivers/net/smc91x.c | |||
| @@ -2283,7 +2283,7 @@ static int __devinit smc_drv_probe(struct platform_device *pdev) | |||
| 2283 | 2283 | ||
| 2284 | ndev->irq = ires->start; | 2284 | ndev->irq = ires->start; |
| 2285 | 2285 | ||
| 2286 | if (ires->flags & IRQF_TRIGGER_MASK) | 2286 | if (irq_flags == -1 || ires->flags & IRQF_TRIGGER_MASK) |
| 2287 | irq_flags = ires->flags & IRQF_TRIGGER_MASK; | 2287 | irq_flags = ires->flags & IRQF_TRIGGER_MASK; |
| 2288 | 2288 | ||
| 2289 | ret = smc_request_attrib(pdev, ndev); | 2289 | ret = smc_request_attrib(pdev, ndev); |
diff --git a/drivers/net/smsc911x.c b/drivers/net/smsc911x.c index ccdd196f5297..f9cdcbcb77d4 100644 --- a/drivers/net/smsc911x.c +++ b/drivers/net/smsc911x.c | |||
| @@ -986,7 +986,7 @@ static int smsc911x_poll(struct napi_struct *napi, int budget) | |||
| 986 | struct net_device *dev = pdata->dev; | 986 | struct net_device *dev = pdata->dev; |
| 987 | int npackets = 0; | 987 | int npackets = 0; |
| 988 | 988 | ||
| 989 | while (likely(netif_running(dev)) && (npackets < budget)) { | 989 | while (npackets < budget) { |
| 990 | unsigned int pktlength; | 990 | unsigned int pktlength; |
| 991 | unsigned int pktwords; | 991 | unsigned int pktwords; |
| 992 | struct sk_buff *skb; | 992 | struct sk_buff *skb; |
diff --git a/drivers/net/smsc9420.c b/drivers/net/smsc9420.c index b4909a2dec66..0f7909276237 100644 --- a/drivers/net/smsc9420.c +++ b/drivers/net/smsc9420.c | |||
| @@ -252,6 +252,9 @@ static int smsc9420_ethtool_get_settings(struct net_device *dev, | |||
| 252 | { | 252 | { |
| 253 | struct smsc9420_pdata *pd = netdev_priv(dev); | 253 | struct smsc9420_pdata *pd = netdev_priv(dev); |
| 254 | 254 | ||
| 255 | if (!pd->phy_dev) | ||
| 256 | return -ENODEV; | ||
| 257 | |||
| 255 | cmd->maxtxpkt = 1; | 258 | cmd->maxtxpkt = 1; |
| 256 | cmd->maxrxpkt = 1; | 259 | cmd->maxrxpkt = 1; |
| 257 | return phy_ethtool_gset(pd->phy_dev, cmd); | 260 | return phy_ethtool_gset(pd->phy_dev, cmd); |
| @@ -262,6 +265,9 @@ static int smsc9420_ethtool_set_settings(struct net_device *dev, | |||
| 262 | { | 265 | { |
| 263 | struct smsc9420_pdata *pd = netdev_priv(dev); | 266 | struct smsc9420_pdata *pd = netdev_priv(dev); |
| 264 | 267 | ||
| 268 | if (!pd->phy_dev) | ||
| 269 | return -ENODEV; | ||
| 270 | |||
| 265 | return phy_ethtool_sset(pd->phy_dev, cmd); | 271 | return phy_ethtool_sset(pd->phy_dev, cmd); |
| 266 | } | 272 | } |
| 267 | 273 | ||
| @@ -290,6 +296,10 @@ static void smsc9420_ethtool_set_msglevel(struct net_device *netdev, u32 data) | |||
| 290 | static int smsc9420_ethtool_nway_reset(struct net_device *netdev) | 296 | static int smsc9420_ethtool_nway_reset(struct net_device *netdev) |
| 291 | { | 297 | { |
| 292 | struct smsc9420_pdata *pd = netdev_priv(netdev); | 298 | struct smsc9420_pdata *pd = netdev_priv(netdev); |
| 299 | |||
| 300 | if (!pd->phy_dev) | ||
| 301 | return -ENODEV; | ||
| 302 | |||
| 293 | return phy_start_aneg(pd->phy_dev); | 303 | return phy_start_aneg(pd->phy_dev); |
| 294 | } | 304 | } |
| 295 | 305 | ||
| @@ -312,6 +322,10 @@ smsc9420_ethtool_getregs(struct net_device *dev, struct ethtool_regs *regs, | |||
| 312 | for (i = 0; i < 0x100; i += (sizeof(u32))) | 322 | for (i = 0; i < 0x100; i += (sizeof(u32))) |
| 313 | data[j++] = smsc9420_reg_read(pd, i); | 323 | data[j++] = smsc9420_reg_read(pd, i); |
| 314 | 324 | ||
| 325 | // cannot read phy registers if the net device is down | ||
| 326 | if (!phy_dev) | ||
| 327 | return; | ||
| 328 | |||
| 315 | for (i = 0; i <= 31; i++) | 329 | for (i = 0; i <= 31; i++) |
| 316 | data[j++] = smsc9420_mii_read(phy_dev->bus, phy_dev->addr, i); | 330 | data[j++] = smsc9420_mii_read(phy_dev->bus, phy_dev->addr, i); |
| 317 | } | 331 | } |
diff --git a/drivers/net/stmmac/stmmac_main.c b/drivers/net/stmmac/stmmac_main.c index c2f14dc9ba28..9542995ba667 100644 --- a/drivers/net/stmmac/stmmac_main.c +++ b/drivers/net/stmmac/stmmac_main.c | |||
| @@ -416,13 +416,8 @@ static void init_dma_desc_rings(struct net_device *dev) | |||
| 416 | unsigned int txsize = priv->dma_tx_size; | 416 | unsigned int txsize = priv->dma_tx_size; |
| 417 | unsigned int rxsize = priv->dma_rx_size; | 417 | unsigned int rxsize = priv->dma_rx_size; |
| 418 | unsigned int bfsize = priv->dma_buf_sz; | 418 | unsigned int bfsize = priv->dma_buf_sz; |
| 419 | int buff2_needed = 0; | 419 | int buff2_needed = 0, dis_ic = 0; |
| 420 | int dis_ic = 0; | ||
| 421 | 420 | ||
| 422 | #ifdef CONFIG_STMMAC_TIMER | ||
| 423 | /* Using Timers disable interrupts on completion for the reception */ | ||
| 424 | dis_ic = 1; | ||
| 425 | #endif | ||
| 426 | /* Set the Buffer size according to the MTU; | 421 | /* Set the Buffer size according to the MTU; |
| 427 | * indeed, in case of jumbo we need to bump-up the buffer sizes. | 422 | * indeed, in case of jumbo we need to bump-up the buffer sizes. |
| 428 | */ | 423 | */ |
| @@ -437,6 +432,11 @@ static void init_dma_desc_rings(struct net_device *dev) | |||
| 437 | else | 432 | else |
| 438 | bfsize = DMA_BUFFER_SIZE; | 433 | bfsize = DMA_BUFFER_SIZE; |
| 439 | 434 | ||
| 435 | #ifdef CONFIG_STMMAC_TIMER | ||
| 436 | /* Disable interrupts on completion for the reception if timer is on */ | ||
| 437 | if (likely(priv->tm->enable)) | ||
| 438 | dis_ic = 1; | ||
| 439 | #endif | ||
| 440 | /* If the MTU exceeds 8k so use the second buffer in the chain */ | 440 | /* If the MTU exceeds 8k so use the second buffer in the chain */ |
| 441 | if (bfsize >= BUF_SIZE_8KiB) | 441 | if (bfsize >= BUF_SIZE_8KiB) |
| 442 | buff2_needed = 1; | 442 | buff2_needed = 1; |
| @@ -809,20 +809,22 @@ static void stmmac_tx(struct stmmac_priv *priv) | |||
| 809 | 809 | ||
| 810 | static inline void stmmac_enable_irq(struct stmmac_priv *priv) | 810 | static inline void stmmac_enable_irq(struct stmmac_priv *priv) |
| 811 | { | 811 | { |
| 812 | #ifndef CONFIG_STMMAC_TIMER | 812 | #ifdef CONFIG_STMMAC_TIMER |
| 813 | writel(DMA_INTR_DEFAULT_MASK, priv->dev->base_addr + DMA_INTR_ENA); | 813 | if (likely(priv->tm->enable)) |
| 814 | #else | 814 | priv->tm->timer_start(tmrate); |
| 815 | priv->tm->timer_start(tmrate); | 815 | else |
| 816 | #endif | 816 | #endif |
| 817 | writel(DMA_INTR_DEFAULT_MASK, priv->dev->base_addr + DMA_INTR_ENA); | ||
| 817 | } | 818 | } |
| 818 | 819 | ||
| 819 | static inline void stmmac_disable_irq(struct stmmac_priv *priv) | 820 | static inline void stmmac_disable_irq(struct stmmac_priv *priv) |
| 820 | { | 821 | { |
| 821 | #ifndef CONFIG_STMMAC_TIMER | 822 | #ifdef CONFIG_STMMAC_TIMER |
| 822 | writel(0, priv->dev->base_addr + DMA_INTR_ENA); | 823 | if (likely(priv->tm->enable)) |
| 823 | #else | 824 | priv->tm->timer_stop(); |
| 824 | priv->tm->timer_stop(); | 825 | else |
| 825 | #endif | 826 | #endif |
| 827 | writel(0, priv->dev->base_addr + DMA_INTR_ENA); | ||
| 826 | } | 828 | } |
| 827 | 829 | ||
| 828 | static int stmmac_has_work(struct stmmac_priv *priv) | 830 | static int stmmac_has_work(struct stmmac_priv *priv) |
| @@ -1031,22 +1033,23 @@ static int stmmac_open(struct net_device *dev) | |||
| 1031 | } | 1033 | } |
| 1032 | 1034 | ||
| 1033 | #ifdef CONFIG_STMMAC_TIMER | 1035 | #ifdef CONFIG_STMMAC_TIMER |
| 1034 | priv->tm = kmalloc(sizeof(struct stmmac_timer *), GFP_KERNEL); | 1036 | priv->tm = kzalloc(sizeof(struct stmmac_timer *), GFP_KERNEL); |
| 1035 | if (unlikely(priv->tm == NULL)) { | 1037 | if (unlikely(priv->tm == NULL)) { |
| 1036 | pr_err("%s: ERROR: timer memory alloc failed \n", __func__); | 1038 | pr_err("%s: ERROR: timer memory alloc failed \n", __func__); |
| 1037 | return -ENOMEM; | 1039 | return -ENOMEM; |
| 1038 | } | 1040 | } |
| 1039 | priv->tm->freq = tmrate; | 1041 | priv->tm->freq = tmrate; |
| 1040 | 1042 | ||
| 1041 | /* Test if the HW timer can be actually used. | 1043 | /* Test if the external timer can be actually used. |
| 1042 | * In case of failure continue with no timer. */ | 1044 | * In case of failure continue without timer. */ |
| 1043 | if (unlikely((stmmac_open_ext_timer(dev, priv->tm)) < 0)) { | 1045 | if (unlikely((stmmac_open_ext_timer(dev, priv->tm)) < 0)) { |
| 1044 | pr_warning("stmmaceth: cannot attach the HW timer\n"); | 1046 | pr_warning("stmmaceth: cannot attach the external timer.\n"); |
| 1045 | tmrate = 0; | 1047 | tmrate = 0; |
| 1046 | priv->tm->freq = 0; | 1048 | priv->tm->freq = 0; |
| 1047 | priv->tm->timer_start = stmmac_no_timer_started; | 1049 | priv->tm->timer_start = stmmac_no_timer_started; |
| 1048 | priv->tm->timer_stop = stmmac_no_timer_stopped; | 1050 | priv->tm->timer_stop = stmmac_no_timer_stopped; |
| 1049 | } | 1051 | } else |
| 1052 | priv->tm->enable = 1; | ||
| 1050 | #endif | 1053 | #endif |
| 1051 | 1054 | ||
| 1052 | /* Create and initialize the TX/RX descriptors chains. */ | 1055 | /* Create and initialize the TX/RX descriptors chains. */ |
| @@ -1322,9 +1325,11 @@ static netdev_tx_t stmmac_xmit(struct sk_buff *skb, struct net_device *dev) | |||
| 1322 | 1325 | ||
| 1323 | /* Interrupt on completition only for the latest segment */ | 1326 | /* Interrupt on completition only for the latest segment */ |
| 1324 | priv->mac_type->ops->close_tx_desc(desc); | 1327 | priv->mac_type->ops->close_tx_desc(desc); |
| 1328 | |||
| 1325 | #ifdef CONFIG_STMMAC_TIMER | 1329 | #ifdef CONFIG_STMMAC_TIMER |
| 1326 | /* Clean IC while using timers */ | 1330 | /* Clean IC while using timer */ |
| 1327 | priv->mac_type->ops->clear_tx_ic(desc); | 1331 | if (likely(priv->tm->enable)) |
| 1332 | priv->mac_type->ops->clear_tx_ic(desc); | ||
| 1328 | #endif | 1333 | #endif |
| 1329 | /* To avoid raise condition */ | 1334 | /* To avoid raise condition */ |
| 1330 | priv->mac_type->ops->set_tx_owner(first); | 1335 | priv->mac_type->ops->set_tx_owner(first); |
| @@ -2028,7 +2033,8 @@ static int stmmac_suspend(struct platform_device *pdev, pm_message_t state) | |||
| 2028 | 2033 | ||
| 2029 | #ifdef CONFIG_STMMAC_TIMER | 2034 | #ifdef CONFIG_STMMAC_TIMER |
| 2030 | priv->tm->timer_stop(); | 2035 | priv->tm->timer_stop(); |
| 2031 | dis_ic = 1; | 2036 | if (likely(priv->tm->enable)) |
| 2037 | dis_ic = 1; | ||
| 2032 | #endif | 2038 | #endif |
| 2033 | napi_disable(&priv->napi); | 2039 | napi_disable(&priv->napi); |
| 2034 | 2040 | ||
diff --git a/drivers/net/stmmac/stmmac_timer.c b/drivers/net/stmmac/stmmac_timer.c index b838c6582077..679f61ffb1f8 100644 --- a/drivers/net/stmmac/stmmac_timer.c +++ b/drivers/net/stmmac/stmmac_timer.c | |||
| @@ -63,7 +63,7 @@ int stmmac_open_ext_timer(struct net_device *dev, struct stmmac_timer *tm) | |||
| 63 | 63 | ||
| 64 | stmmac_rtc = rtc_class_open(CONFIG_RTC_HCTOSYS_DEVICE); | 64 | stmmac_rtc = rtc_class_open(CONFIG_RTC_HCTOSYS_DEVICE); |
| 65 | if (stmmac_rtc == NULL) { | 65 | if (stmmac_rtc == NULL) { |
| 66 | pr_error("open rtc device failed\n"); | 66 | pr_err("open rtc device failed\n"); |
| 67 | return -ENODEV; | 67 | return -ENODEV; |
| 68 | } | 68 | } |
| 69 | 69 | ||
| @@ -71,7 +71,7 @@ int stmmac_open_ext_timer(struct net_device *dev, struct stmmac_timer *tm) | |||
| 71 | 71 | ||
| 72 | /* Periodic mode is not supported */ | 72 | /* Periodic mode is not supported */ |
| 73 | if ((rtc_irq_set_freq(stmmac_rtc, &stmmac_task, tm->freq) < 0)) { | 73 | if ((rtc_irq_set_freq(stmmac_rtc, &stmmac_task, tm->freq) < 0)) { |
| 74 | pr_error("set periodic failed\n"); | 74 | pr_err("set periodic failed\n"); |
| 75 | rtc_irq_unregister(stmmac_rtc, &stmmac_task); | 75 | rtc_irq_unregister(stmmac_rtc, &stmmac_task); |
| 76 | rtc_class_close(stmmac_rtc); | 76 | rtc_class_close(stmmac_rtc); |
| 77 | return -1; | 77 | return -1; |
diff --git a/drivers/net/stmmac/stmmac_timer.h b/drivers/net/stmmac/stmmac_timer.h index f795cae33725..6863590d184b 100644 --- a/drivers/net/stmmac/stmmac_timer.h +++ b/drivers/net/stmmac/stmmac_timer.h | |||
| @@ -26,6 +26,7 @@ struct stmmac_timer { | |||
| 26 | void (*timer_start) (unsigned int new_freq); | 26 | void (*timer_start) (unsigned int new_freq); |
| 27 | void (*timer_stop) (void); | 27 | void (*timer_stop) (void); |
| 28 | unsigned int freq; | 28 | unsigned int freq; |
| 29 | unsigned int enable; | ||
| 29 | }; | 30 | }; |
| 30 | 31 | ||
| 31 | /* Open the HW timer device and return 0 in case of success */ | 32 | /* Open the HW timer device and return 0 in case of success */ |
diff --git a/drivers/net/sungem.c b/drivers/net/sungem.c index 7019a0d1a82b..61640b99b705 100644 --- a/drivers/net/sungem.c +++ b/drivers/net/sungem.c | |||
| @@ -2063,7 +2063,15 @@ static int gem_check_invariants(struct gem *gp) | |||
| 2063 | mif_cfg &= ~MIF_CFG_PSELECT; | 2063 | mif_cfg &= ~MIF_CFG_PSELECT; |
| 2064 | writel(mif_cfg, gp->regs + MIF_CFG); | 2064 | writel(mif_cfg, gp->regs + MIF_CFG); |
| 2065 | } else { | 2065 | } else { |
| 2066 | gp->phy_type = phy_serialink; | 2066 | #ifdef CONFIG_SPARC |
| 2067 | const char *p; | ||
| 2068 | |||
| 2069 | p = of_get_property(gp->of_node, "shared-pins", NULL); | ||
| 2070 | if (p && !strcmp(p, "serdes")) | ||
| 2071 | gp->phy_type = phy_serdes; | ||
| 2072 | else | ||
| 2073 | #endif | ||
| 2074 | gp->phy_type = phy_serialink; | ||
| 2067 | } | 2075 | } |
| 2068 | if (gp->phy_type == phy_mii_mdio1 || | 2076 | if (gp->phy_type == phy_mii_mdio1 || |
| 2069 | gp->phy_type == phy_mii_mdio0) { | 2077 | gp->phy_type == phy_mii_mdio0) { |
diff --git a/drivers/net/usb/hso.c b/drivers/net/usb/hso.c index fa4e58196c21..43bc3fcc0d85 100644 --- a/drivers/net/usb/hso.c +++ b/drivers/net/usb/hso.c | |||
| @@ -378,7 +378,7 @@ static void dbg_dump(int line_count, const char *func_name, unsigned char *buf, | |||
| 378 | } | 378 | } |
| 379 | 379 | ||
| 380 | #define DUMP(buf_, len_) \ | 380 | #define DUMP(buf_, len_) \ |
| 381 | dbg_dump(__LINE__, __func__, buf_, len_) | 381 | dbg_dump(__LINE__, __func__, (unsigned char *)buf_, len_) |
| 382 | 382 | ||
| 383 | #define DUMP1(buf_, len_) \ | 383 | #define DUMP1(buf_, len_) \ |
| 384 | do { \ | 384 | do { \ |
| @@ -1363,7 +1363,7 @@ static void hso_serial_close(struct tty_struct *tty, struct file *filp) | |||
| 1363 | /* reset the rts and dtr */ | 1363 | /* reset the rts and dtr */ |
| 1364 | /* do the actual close */ | 1364 | /* do the actual close */ |
| 1365 | serial->open_count--; | 1365 | serial->open_count--; |
| 1366 | kref_put(&serial->parent->ref, hso_serial_ref_free); | 1366 | |
| 1367 | if (serial->open_count <= 0) { | 1367 | if (serial->open_count <= 0) { |
| 1368 | serial->open_count = 0; | 1368 | serial->open_count = 0; |
| 1369 | spin_lock_irq(&serial->serial_lock); | 1369 | spin_lock_irq(&serial->serial_lock); |
| @@ -1383,6 +1383,8 @@ static void hso_serial_close(struct tty_struct *tty, struct file *filp) | |||
| 1383 | usb_autopm_put_interface(serial->parent->interface); | 1383 | usb_autopm_put_interface(serial->parent->interface); |
| 1384 | 1384 | ||
| 1385 | mutex_unlock(&serial->parent->mutex); | 1385 | mutex_unlock(&serial->parent->mutex); |
| 1386 | |||
| 1387 | kref_put(&serial->parent->ref, hso_serial_ref_free); | ||
| 1386 | } | 1388 | } |
| 1387 | 1389 | ||
| 1388 | /* close the requested serial port */ | 1390 | /* close the requested serial port */ |
| @@ -1527,7 +1529,7 @@ static void tiocmget_intr_callback(struct urb *urb) | |||
| 1527 | dev_warn(&usb->dev, | 1529 | dev_warn(&usb->dev, |
| 1528 | "hso received invalid serial state notification\n"); | 1530 | "hso received invalid serial state notification\n"); |
| 1529 | DUMP(serial_state_notification, | 1531 | DUMP(serial_state_notification, |
| 1530 | sizeof(hso_serial_state_notifation)) | 1532 | sizeof(struct hso_serial_state_notification)); |
| 1531 | } else { | 1533 | } else { |
| 1532 | 1534 | ||
| 1533 | UART_state_bitmap = le16_to_cpu(serial_state_notification-> | 1535 | UART_state_bitmap = le16_to_cpu(serial_state_notification-> |
diff --git a/drivers/net/veth.c b/drivers/net/veth.c index ade5b344f75d..52af5017c46b 100644 --- a/drivers/net/veth.c +++ b/drivers/net/veth.c | |||
| @@ -210,32 +210,29 @@ rx_drop: | |||
| 210 | static struct net_device_stats *veth_get_stats(struct net_device *dev) | 210 | static struct net_device_stats *veth_get_stats(struct net_device *dev) |
| 211 | { | 211 | { |
| 212 | struct veth_priv *priv; | 212 | struct veth_priv *priv; |
| 213 | struct net_device_stats *dev_stats; | ||
| 214 | int cpu; | 213 | int cpu; |
| 215 | struct veth_net_stats *stats; | 214 | struct veth_net_stats *stats, total = {0}; |
| 216 | 215 | ||
| 217 | priv = netdev_priv(dev); | 216 | priv = netdev_priv(dev); |
| 218 | dev_stats = &dev->stats; | ||
| 219 | |||
| 220 | dev_stats->rx_packets = 0; | ||
| 221 | dev_stats->tx_packets = 0; | ||
| 222 | dev_stats->rx_bytes = 0; | ||
| 223 | dev_stats->tx_bytes = 0; | ||
| 224 | dev_stats->tx_dropped = 0; | ||
| 225 | dev_stats->rx_dropped = 0; | ||
| 226 | 217 | ||
| 227 | for_each_online_cpu(cpu) { | 218 | for_each_possible_cpu(cpu) { |
| 228 | stats = per_cpu_ptr(priv->stats, cpu); | 219 | stats = per_cpu_ptr(priv->stats, cpu); |
| 229 | 220 | ||
| 230 | dev_stats->rx_packets += stats->rx_packets; | 221 | total.rx_packets += stats->rx_packets; |
| 231 | dev_stats->tx_packets += stats->tx_packets; | 222 | total.tx_packets += stats->tx_packets; |
| 232 | dev_stats->rx_bytes += stats->rx_bytes; | 223 | total.rx_bytes += stats->rx_bytes; |
| 233 | dev_stats->tx_bytes += stats->tx_bytes; | 224 | total.tx_bytes += stats->tx_bytes; |
| 234 | dev_stats->tx_dropped += stats->tx_dropped; | 225 | total.tx_dropped += stats->tx_dropped; |
| 235 | dev_stats->rx_dropped += stats->rx_dropped; | 226 | total.rx_dropped += stats->rx_dropped; |
| 236 | } | 227 | } |
| 237 | 228 | dev->stats.rx_packets = total.rx_packets; | |
| 238 | return dev_stats; | 229 | dev->stats.tx_packets = total.tx_packets; |
| 230 | dev->stats.rx_bytes = total.rx_bytes; | ||
| 231 | dev->stats.tx_bytes = total.tx_bytes; | ||
| 232 | dev->stats.tx_dropped = total.tx_dropped; | ||
| 233 | dev->stats.rx_dropped = total.rx_dropped; | ||
| 234 | |||
| 235 | return &dev->stats; | ||
| 239 | } | 236 | } |
| 240 | 237 | ||
| 241 | static int veth_open(struct net_device *dev) | 238 | static int veth_open(struct net_device *dev) |
diff --git a/drivers/net/wan/cosa.c b/drivers/net/wan/cosa.c index e2c33c06190b..8e25ca7080c7 100644 --- a/drivers/net/wan/cosa.c +++ b/drivers/net/wan/cosa.c | |||
| @@ -907,6 +907,7 @@ static ssize_t cosa_write(struct file *file, | |||
| 907 | current->state = TASK_RUNNING; | 907 | current->state = TASK_RUNNING; |
| 908 | chan->tx_status = 1; | 908 | chan->tx_status = 1; |
| 909 | spin_unlock_irqrestore(&cosa->lock, flags); | 909 | spin_unlock_irqrestore(&cosa->lock, flags); |
| 910 | up(&chan->wsem); | ||
| 910 | return -ERESTARTSYS; | 911 | return -ERESTARTSYS; |
| 911 | } | 912 | } |
| 912 | } | 913 | } |
diff --git a/drivers/net/wireless/ath/ath5k/base.c b/drivers/net/wireless/ath/ath5k/base.c index 9c6ab5378f6e..95a8e232b58f 100644 --- a/drivers/net/wireless/ath/ath5k/base.c +++ b/drivers/net/wireless/ath/ath5k/base.c | |||
| @@ -1125,7 +1125,6 @@ ath5k_mode_setup(struct ath5k_softc *sc) | |||
| 1125 | /* configure operational mode */ | 1125 | /* configure operational mode */ |
| 1126 | ath5k_hw_set_opmode(ah); | 1126 | ath5k_hw_set_opmode(ah); |
| 1127 | 1127 | ||
| 1128 | ath5k_hw_set_mcast_filter(ah, 0, 0); | ||
| 1129 | ATH5K_DBG(sc, ATH5K_DEBUG_MODE, "RX filter 0x%x\n", rfilt); | 1128 | ATH5K_DBG(sc, ATH5K_DEBUG_MODE, "RX filter 0x%x\n", rfilt); |
| 1130 | } | 1129 | } |
| 1131 | 1130 | ||
diff --git a/drivers/net/wireless/ath/ath5k/led.c b/drivers/net/wireless/ath/ath5k/led.c index b767c3b67b24..b548c8eaaae1 100644 --- a/drivers/net/wireless/ath/ath5k/led.c +++ b/drivers/net/wireless/ath/ath5k/led.c | |||
| @@ -63,12 +63,16 @@ static const struct pci_device_id ath5k_led_devices[] = { | |||
| 63 | { ATH_SDEVICE(PCI_VENDOR_ID_AMBIT, 0x0422), ATH_LED(1, 1) }, | 63 | { ATH_SDEVICE(PCI_VENDOR_ID_AMBIT, 0x0422), ATH_LED(1, 1) }, |
| 64 | /* E-machines E510 (tuliom@gmail.com) */ | 64 | /* E-machines E510 (tuliom@gmail.com) */ |
| 65 | { ATH_SDEVICE(PCI_VENDOR_ID_AMBIT, 0x0428), ATH_LED(3, 0) }, | 65 | { ATH_SDEVICE(PCI_VENDOR_ID_AMBIT, 0x0428), ATH_LED(3, 0) }, |
| 66 | /* BenQ Joybook R55v (nowymarluk@wp.pl) */ | ||
| 67 | { ATH_SDEVICE(PCI_VENDOR_ID_QMI, 0x0100), ATH_LED(1, 0) }, | ||
| 66 | /* Acer Extensa 5620z (nekoreeve@gmail.com) */ | 68 | /* Acer Extensa 5620z (nekoreeve@gmail.com) */ |
| 67 | { ATH_SDEVICE(PCI_VENDOR_ID_QMI, 0x0105), ATH_LED(3, 0) }, | 69 | { ATH_SDEVICE(PCI_VENDOR_ID_QMI, 0x0105), ATH_LED(3, 0) }, |
| 68 | /* Fukato Datacask Jupiter 1014a (mrb74@gmx.at) */ | 70 | /* Fukato Datacask Jupiter 1014a (mrb74@gmx.at) */ |
| 69 | { ATH_SDEVICE(PCI_VENDOR_ID_AZWAVE, 0x1026), ATH_LED(3, 0) }, | 71 | { ATH_SDEVICE(PCI_VENDOR_ID_AZWAVE, 0x1026), ATH_LED(3, 0) }, |
| 70 | /* IBM ThinkPad AR5BXB6 (legovini@spiro.fisica.unipd.it) */ | 72 | /* IBM ThinkPad AR5BXB6 (legovini@spiro.fisica.unipd.it) */ |
| 71 | { ATH_SDEVICE(PCI_VENDOR_ID_IBM, 0x058a), ATH_LED(1, 0) }, | 73 | { ATH_SDEVICE(PCI_VENDOR_ID_IBM, 0x058a), ATH_LED(1, 0) }, |
| 74 | /* HP Compaq CQ60-206US (ddreggors@jumptv.com) */ | ||
| 75 | { ATH_SDEVICE(PCI_VENDOR_ID_HP, 0x0137a), ATH_LED(3, 1) }, | ||
| 72 | /* HP Compaq C700 (nitrousnrg@gmail.com) */ | 76 | /* HP Compaq C700 (nitrousnrg@gmail.com) */ |
| 73 | { ATH_SDEVICE(PCI_VENDOR_ID_HP, 0x0137b), ATH_LED(3, 1) }, | 77 | { ATH_SDEVICE(PCI_VENDOR_ID_HP, 0x0137b), ATH_LED(3, 1) }, |
| 74 | /* IBM-specific AR5212 (all others) */ | 78 | /* IBM-specific AR5212 (all others) */ |
diff --git a/drivers/net/wireless/ath/ath9k/main.c b/drivers/net/wireless/ath/ath9k/main.c index 52bed89063d4..43d2be9867fc 100644 --- a/drivers/net/wireless/ath/ath9k/main.c +++ b/drivers/net/wireless/ath/ath9k/main.c | |||
| @@ -1555,6 +1555,8 @@ void ath_set_hw_capab(struct ath_softc *sc, struct ieee80211_hw *hw) | |||
| 1555 | BIT(NL80211_IFTYPE_ADHOC) | | 1555 | BIT(NL80211_IFTYPE_ADHOC) | |
| 1556 | BIT(NL80211_IFTYPE_MESH_POINT); | 1556 | BIT(NL80211_IFTYPE_MESH_POINT); |
| 1557 | 1557 | ||
| 1558 | hw->wiphy->ps_default = false; | ||
| 1559 | |||
| 1558 | hw->queues = 4; | 1560 | hw->queues = 4; |
| 1559 | hw->max_rates = 4; | 1561 | hw->max_rates = 4; |
| 1560 | hw->channel_change_time = 5000; | 1562 | hw->channel_change_time = 5000; |
diff --git a/drivers/net/wireless/b43/main.c b/drivers/net/wireless/b43/main.c index 86f35827f008..098dda1a67c1 100644 --- a/drivers/net/wireless/b43/main.c +++ b/drivers/net/wireless/b43/main.c | |||
| @@ -4521,9 +4521,8 @@ static int b43_op_beacon_set_tim(struct ieee80211_hw *hw, | |||
| 4521 | { | 4521 | { |
| 4522 | struct b43_wl *wl = hw_to_b43_wl(hw); | 4522 | struct b43_wl *wl = hw_to_b43_wl(hw); |
| 4523 | 4523 | ||
| 4524 | mutex_lock(&wl->mutex); | 4524 | /* FIXME: add locking */ |
| 4525 | b43_update_templates(wl); | 4525 | b43_update_templates(wl); |
| 4526 | mutex_unlock(&wl->mutex); | ||
| 4527 | 4526 | ||
| 4528 | return 0; | 4527 | return 0; |
| 4529 | } | 4528 | } |
diff --git a/drivers/net/wireless/ipw2x00/ipw2100.c b/drivers/net/wireless/ipw2x00/ipw2100.c index 240cff1e6979..6e2fc0cb6f8a 100644 --- a/drivers/net/wireless/ipw2x00/ipw2100.c +++ b/drivers/net/wireless/ipw2x00/ipw2100.c | |||
| @@ -6029,7 +6029,7 @@ static struct net_device *ipw2100_alloc_device(struct pci_dev *pci_dev, | |||
| 6029 | struct ipw2100_priv *priv; | 6029 | struct ipw2100_priv *priv; |
| 6030 | struct net_device *dev; | 6030 | struct net_device *dev; |
| 6031 | 6031 | ||
| 6032 | dev = alloc_ieee80211(sizeof(struct ipw2100_priv), 0); | 6032 | dev = alloc_ieee80211(sizeof(struct ipw2100_priv)); |
| 6033 | if (!dev) | 6033 | if (!dev) |
| 6034 | return NULL; | 6034 | return NULL; |
| 6035 | priv = libipw_priv(dev); | 6035 | priv = libipw_priv(dev); |
| @@ -6342,7 +6342,7 @@ static int ipw2100_pci_init_one(struct pci_dev *pci_dev, | |||
| 6342 | sysfs_remove_group(&pci_dev->dev.kobj, | 6342 | sysfs_remove_group(&pci_dev->dev.kobj, |
| 6343 | &ipw2100_attribute_group); | 6343 | &ipw2100_attribute_group); |
| 6344 | 6344 | ||
| 6345 | free_ieee80211(dev, 0); | 6345 | free_ieee80211(dev); |
| 6346 | pci_set_drvdata(pci_dev, NULL); | 6346 | pci_set_drvdata(pci_dev, NULL); |
| 6347 | } | 6347 | } |
| 6348 | 6348 | ||
| @@ -6400,7 +6400,7 @@ static void __devexit ipw2100_pci_remove_one(struct pci_dev *pci_dev) | |||
| 6400 | if (dev->base_addr) | 6400 | if (dev->base_addr) |
| 6401 | iounmap((void __iomem *)dev->base_addr); | 6401 | iounmap((void __iomem *)dev->base_addr); |
| 6402 | 6402 | ||
| 6403 | free_ieee80211(dev, 0); | 6403 | free_ieee80211(dev); |
| 6404 | } | 6404 | } |
| 6405 | 6405 | ||
| 6406 | pci_release_regions(pci_dev); | 6406 | pci_release_regions(pci_dev); |
diff --git a/drivers/net/wireless/ipw2x00/ipw2200.c b/drivers/net/wireless/ipw2x00/ipw2200.c index 827824d45de9..a6ca536e44f8 100644 --- a/drivers/net/wireless/ipw2x00/ipw2200.c +++ b/drivers/net/wireless/ipw2x00/ipw2200.c | |||
| @@ -104,25 +104,6 @@ static int antenna = CFG_SYS_ANTENNA_BOTH; | |||
| 104 | static int rtap_iface = 0; /* def: 0 -- do not create rtap interface */ | 104 | static int rtap_iface = 0; /* def: 0 -- do not create rtap interface */ |
| 105 | #endif | 105 | #endif |
| 106 | 106 | ||
| 107 | static struct ieee80211_rate ipw2200_rates[] = { | ||
| 108 | { .bitrate = 10 }, | ||
| 109 | { .bitrate = 20, .flags = IEEE80211_RATE_SHORT_PREAMBLE }, | ||
| 110 | { .bitrate = 55, .flags = IEEE80211_RATE_SHORT_PREAMBLE }, | ||
| 111 | { .bitrate = 110, .flags = IEEE80211_RATE_SHORT_PREAMBLE }, | ||
| 112 | { .bitrate = 60 }, | ||
| 113 | { .bitrate = 90 }, | ||
| 114 | { .bitrate = 120 }, | ||
| 115 | { .bitrate = 180 }, | ||
| 116 | { .bitrate = 240 }, | ||
| 117 | { .bitrate = 360 }, | ||
| 118 | { .bitrate = 480 }, | ||
| 119 | { .bitrate = 540 } | ||
| 120 | }; | ||
| 121 | |||
| 122 | #define ipw2200_a_rates (ipw2200_rates + 4) | ||
| 123 | #define ipw2200_num_a_rates 8 | ||
| 124 | #define ipw2200_bg_rates (ipw2200_rates + 0) | ||
| 125 | #define ipw2200_num_bg_rates 12 | ||
| 126 | 107 | ||
| 127 | #ifdef CONFIG_IPW2200_QOS | 108 | #ifdef CONFIG_IPW2200_QOS |
| 128 | static int qos_enable = 0; | 109 | static int qos_enable = 0; |
| @@ -8674,6 +8655,24 @@ static int ipw_sw_reset(struct ipw_priv *priv, int option) | |||
| 8674 | * | 8655 | * |
| 8675 | */ | 8656 | */ |
| 8676 | 8657 | ||
| 8658 | static int ipw_wx_get_name(struct net_device *dev, | ||
| 8659 | struct iw_request_info *info, | ||
| 8660 | union iwreq_data *wrqu, char *extra) | ||
| 8661 | { | ||
| 8662 | struct ipw_priv *priv = libipw_priv(dev); | ||
| 8663 | mutex_lock(&priv->mutex); | ||
| 8664 | if (priv->status & STATUS_RF_KILL_MASK) | ||
| 8665 | strcpy(wrqu->name, "radio off"); | ||
| 8666 | else if (!(priv->status & STATUS_ASSOCIATED)) | ||
| 8667 | strcpy(wrqu->name, "unassociated"); | ||
| 8668 | else | ||
| 8669 | snprintf(wrqu->name, IFNAMSIZ, "IEEE 802.11%c", | ||
| 8670 | ipw_modes[priv->assoc_request.ieee_mode]); | ||
| 8671 | IPW_DEBUG_WX("Name: %s\n", wrqu->name); | ||
| 8672 | mutex_unlock(&priv->mutex); | ||
| 8673 | return 0; | ||
| 8674 | } | ||
| 8675 | |||
| 8677 | static int ipw_set_channel(struct ipw_priv *priv, u8 channel) | 8676 | static int ipw_set_channel(struct ipw_priv *priv, u8 channel) |
| 8678 | { | 8677 | { |
| 8679 | if (channel == 0) { | 8678 | if (channel == 0) { |
| @@ -9973,7 +9972,7 @@ static int ipw_wx_sw_reset(struct net_device *dev, | |||
| 9973 | /* Rebase the WE IOCTLs to zero for the handler array */ | 9972 | /* Rebase the WE IOCTLs to zero for the handler array */ |
| 9974 | #define IW_IOCTL(x) [(x)-SIOCSIWCOMMIT] | 9973 | #define IW_IOCTL(x) [(x)-SIOCSIWCOMMIT] |
| 9975 | static iw_handler ipw_wx_handlers[] = { | 9974 | static iw_handler ipw_wx_handlers[] = { |
| 9976 | IW_IOCTL(SIOCGIWNAME) = (iw_handler) cfg80211_wext_giwname, | 9975 | IW_IOCTL(SIOCGIWNAME) = ipw_wx_get_name, |
| 9977 | IW_IOCTL(SIOCSIWFREQ) = ipw_wx_set_freq, | 9976 | IW_IOCTL(SIOCSIWFREQ) = ipw_wx_set_freq, |
| 9978 | IW_IOCTL(SIOCGIWFREQ) = ipw_wx_get_freq, | 9977 | IW_IOCTL(SIOCGIWFREQ) = ipw_wx_get_freq, |
| 9979 | IW_IOCTL(SIOCSIWMODE) = ipw_wx_set_mode, | 9978 | IW_IOCTL(SIOCSIWMODE) = ipw_wx_set_mode, |
| @@ -11417,100 +11416,16 @@ static void ipw_bg_down(struct work_struct *work) | |||
| 11417 | /* Called by register_netdev() */ | 11416 | /* Called by register_netdev() */ |
| 11418 | static int ipw_net_init(struct net_device *dev) | 11417 | static int ipw_net_init(struct net_device *dev) |
| 11419 | { | 11418 | { |
| 11420 | int i, rc = 0; | ||
| 11421 | struct ipw_priv *priv = libipw_priv(dev); | 11419 | struct ipw_priv *priv = libipw_priv(dev); |
| 11422 | const struct libipw_geo *geo = libipw_get_geo(priv->ieee); | ||
| 11423 | struct wireless_dev *wdev = &priv->ieee->wdev; | ||
| 11424 | mutex_lock(&priv->mutex); | 11420 | mutex_lock(&priv->mutex); |
| 11425 | 11421 | ||
| 11426 | if (ipw_up(priv)) { | 11422 | if (ipw_up(priv)) { |
| 11427 | rc = -EIO; | 11423 | mutex_unlock(&priv->mutex); |
| 11428 | goto out; | 11424 | return -EIO; |
| 11429 | } | ||
| 11430 | |||
| 11431 | memcpy(wdev->wiphy->perm_addr, priv->mac_addr, ETH_ALEN); | ||
| 11432 | |||
| 11433 | /* fill-out priv->ieee->bg_band */ | ||
| 11434 | if (geo->bg_channels) { | ||
| 11435 | struct ieee80211_supported_band *bg_band = &priv->ieee->bg_band; | ||
| 11436 | |||
| 11437 | bg_band->band = IEEE80211_BAND_2GHZ; | ||
| 11438 | bg_band->n_channels = geo->bg_channels; | ||
| 11439 | bg_band->channels = | ||
| 11440 | kzalloc(geo->bg_channels * | ||
| 11441 | sizeof(struct ieee80211_channel), GFP_KERNEL); | ||
| 11442 | /* translate geo->bg to bg_band.channels */ | ||
| 11443 | for (i = 0; i < geo->bg_channels; i++) { | ||
| 11444 | bg_band->channels[i].band = IEEE80211_BAND_2GHZ; | ||
| 11445 | bg_band->channels[i].center_freq = geo->bg[i].freq; | ||
| 11446 | bg_band->channels[i].hw_value = geo->bg[i].channel; | ||
| 11447 | bg_band->channels[i].max_power = geo->bg[i].max_power; | ||
| 11448 | if (geo->bg[i].flags & LIBIPW_CH_PASSIVE_ONLY) | ||
| 11449 | bg_band->channels[i].flags |= | ||
| 11450 | IEEE80211_CHAN_PASSIVE_SCAN; | ||
| 11451 | if (geo->bg[i].flags & LIBIPW_CH_NO_IBSS) | ||
| 11452 | bg_band->channels[i].flags |= | ||
| 11453 | IEEE80211_CHAN_NO_IBSS; | ||
| 11454 | if (geo->bg[i].flags & LIBIPW_CH_RADAR_DETECT) | ||
| 11455 | bg_band->channels[i].flags |= | ||
| 11456 | IEEE80211_CHAN_RADAR; | ||
| 11457 | /* No equivalent for LIBIPW_CH_80211H_RULES, | ||
| 11458 | LIBIPW_CH_UNIFORM_SPREADING, or | ||
| 11459 | LIBIPW_CH_B_ONLY... */ | ||
| 11460 | } | ||
| 11461 | /* point at bitrate info */ | ||
| 11462 | bg_band->bitrates = ipw2200_bg_rates; | ||
| 11463 | bg_band->n_bitrates = ipw2200_num_bg_rates; | ||
| 11464 | |||
| 11465 | wdev->wiphy->bands[IEEE80211_BAND_2GHZ] = bg_band; | ||
| 11466 | } | ||
| 11467 | |||
| 11468 | /* fill-out priv->ieee->a_band */ | ||
| 11469 | if (geo->a_channels) { | ||
| 11470 | struct ieee80211_supported_band *a_band = &priv->ieee->a_band; | ||
| 11471 | |||
| 11472 | a_band->band = IEEE80211_BAND_5GHZ; | ||
| 11473 | a_band->n_channels = geo->a_channels; | ||
| 11474 | a_band->channels = | ||
| 11475 | kzalloc(geo->a_channels * | ||
| 11476 | sizeof(struct ieee80211_channel), GFP_KERNEL); | ||
| 11477 | /* translate geo->bg to a_band.channels */ | ||
| 11478 | for (i = 0; i < geo->a_channels; i++) { | ||
| 11479 | a_band->channels[i].band = IEEE80211_BAND_2GHZ; | ||
| 11480 | a_band->channels[i].center_freq = geo->a[i].freq; | ||
| 11481 | a_band->channels[i].hw_value = geo->a[i].channel; | ||
| 11482 | a_band->channels[i].max_power = geo->a[i].max_power; | ||
| 11483 | if (geo->a[i].flags & LIBIPW_CH_PASSIVE_ONLY) | ||
| 11484 | a_band->channels[i].flags |= | ||
| 11485 | IEEE80211_CHAN_PASSIVE_SCAN; | ||
| 11486 | if (geo->a[i].flags & LIBIPW_CH_NO_IBSS) | ||
| 11487 | a_band->channels[i].flags |= | ||
| 11488 | IEEE80211_CHAN_NO_IBSS; | ||
| 11489 | if (geo->a[i].flags & LIBIPW_CH_RADAR_DETECT) | ||
| 11490 | a_band->channels[i].flags |= | ||
| 11491 | IEEE80211_CHAN_RADAR; | ||
| 11492 | /* No equivalent for LIBIPW_CH_80211H_RULES, | ||
| 11493 | LIBIPW_CH_UNIFORM_SPREADING, or | ||
| 11494 | LIBIPW_CH_B_ONLY... */ | ||
| 11495 | } | ||
| 11496 | /* point at bitrate info */ | ||
| 11497 | a_band->bitrates = ipw2200_a_rates; | ||
| 11498 | a_band->n_bitrates = ipw2200_num_a_rates; | ||
| 11499 | |||
| 11500 | wdev->wiphy->bands[IEEE80211_BAND_5GHZ] = a_band; | ||
| 11501 | } | ||
| 11502 | |||
| 11503 | set_wiphy_dev(wdev->wiphy, &priv->pci_dev->dev); | ||
| 11504 | |||
| 11505 | /* With that information in place, we can now register the wiphy... */ | ||
| 11506 | if (wiphy_register(wdev->wiphy)) { | ||
| 11507 | rc = -EIO; | ||
| 11508 | goto out; | ||
| 11509 | } | 11425 | } |
| 11510 | 11426 | ||
| 11511 | out: | ||
| 11512 | mutex_unlock(&priv->mutex); | 11427 | mutex_unlock(&priv->mutex); |
| 11513 | return rc; | 11428 | return 0; |
| 11514 | } | 11429 | } |
| 11515 | 11430 | ||
| 11516 | /* PCI driver stuff */ | 11431 | /* PCI driver stuff */ |
| @@ -11641,7 +11556,7 @@ static int ipw_prom_alloc(struct ipw_priv *priv) | |||
| 11641 | if (priv->prom_net_dev) | 11556 | if (priv->prom_net_dev) |
| 11642 | return -EPERM; | 11557 | return -EPERM; |
| 11643 | 11558 | ||
| 11644 | priv->prom_net_dev = alloc_ieee80211(sizeof(struct ipw_prom_priv), 1); | 11559 | priv->prom_net_dev = alloc_ieee80211(sizeof(struct ipw_prom_priv)); |
| 11645 | if (priv->prom_net_dev == NULL) | 11560 | if (priv->prom_net_dev == NULL) |
| 11646 | return -ENOMEM; | 11561 | return -ENOMEM; |
| 11647 | 11562 | ||
| @@ -11660,7 +11575,7 @@ static int ipw_prom_alloc(struct ipw_priv *priv) | |||
| 11660 | 11575 | ||
| 11661 | rc = register_netdev(priv->prom_net_dev); | 11576 | rc = register_netdev(priv->prom_net_dev); |
| 11662 | if (rc) { | 11577 | if (rc) { |
| 11663 | free_ieee80211(priv->prom_net_dev, 1); | 11578 | free_ieee80211(priv->prom_net_dev); |
| 11664 | priv->prom_net_dev = NULL; | 11579 | priv->prom_net_dev = NULL; |
| 11665 | return rc; | 11580 | return rc; |
| 11666 | } | 11581 | } |
| @@ -11674,7 +11589,7 @@ static void ipw_prom_free(struct ipw_priv *priv) | |||
| 11674 | return; | 11589 | return; |
| 11675 | 11590 | ||
| 11676 | unregister_netdev(priv->prom_net_dev); | 11591 | unregister_netdev(priv->prom_net_dev); |
| 11677 | free_ieee80211(priv->prom_net_dev, 1); | 11592 | free_ieee80211(priv->prom_net_dev); |
| 11678 | 11593 | ||
| 11679 | priv->prom_net_dev = NULL; | 11594 | priv->prom_net_dev = NULL; |
| 11680 | } | 11595 | } |
| @@ -11702,7 +11617,7 @@ static int __devinit ipw_pci_probe(struct pci_dev *pdev, | |||
| 11702 | struct ipw_priv *priv; | 11617 | struct ipw_priv *priv; |
| 11703 | int i; | 11618 | int i; |
| 11704 | 11619 | ||
| 11705 | net_dev = alloc_ieee80211(sizeof(struct ipw_priv), 0); | 11620 | net_dev = alloc_ieee80211(sizeof(struct ipw_priv)); |
| 11706 | if (net_dev == NULL) { | 11621 | if (net_dev == NULL) { |
| 11707 | err = -ENOMEM; | 11622 | err = -ENOMEM; |
| 11708 | goto out; | 11623 | goto out; |
| @@ -11850,7 +11765,7 @@ static int __devinit ipw_pci_probe(struct pci_dev *pdev, | |||
| 11850 | pci_disable_device(pdev); | 11765 | pci_disable_device(pdev); |
| 11851 | pci_set_drvdata(pdev, NULL); | 11766 | pci_set_drvdata(pdev, NULL); |
| 11852 | out_free_ieee80211: | 11767 | out_free_ieee80211: |
| 11853 | free_ieee80211(priv->net_dev, 0); | 11768 | free_ieee80211(priv->net_dev); |
| 11854 | out: | 11769 | out: |
| 11855 | return err; | 11770 | return err; |
| 11856 | } | 11771 | } |
| @@ -11917,7 +11832,7 @@ static void __devexit ipw_pci_remove(struct pci_dev *pdev) | |||
| 11917 | pci_release_regions(pdev); | 11832 | pci_release_regions(pdev); |
| 11918 | pci_disable_device(pdev); | 11833 | pci_disable_device(pdev); |
| 11919 | pci_set_drvdata(pdev, NULL); | 11834 | pci_set_drvdata(pdev, NULL); |
| 11920 | free_ieee80211(priv->net_dev, 0); | 11835 | free_ieee80211(priv->net_dev); |
| 11921 | free_firmware(); | 11836 | free_firmware(); |
| 11922 | } | 11837 | } |
| 11923 | 11838 | ||
diff --git a/drivers/net/wireless/ipw2x00/libipw.h b/drivers/net/wireless/ipw2x00/libipw.h index bf45391172f3..1e334ff6bd52 100644 --- a/drivers/net/wireless/ipw2x00/libipw.h +++ b/drivers/net/wireless/ipw2x00/libipw.h | |||
| @@ -31,7 +31,6 @@ | |||
| 31 | #include <linux/ieee80211.h> | 31 | #include <linux/ieee80211.h> |
| 32 | 32 | ||
| 33 | #include <net/lib80211.h> | 33 | #include <net/lib80211.h> |
| 34 | #include <net/cfg80211.h> | ||
| 35 | 34 | ||
| 36 | #define LIBIPW_VERSION "git-1.1.13" | 35 | #define LIBIPW_VERSION "git-1.1.13" |
| 37 | 36 | ||
| @@ -784,15 +783,12 @@ struct libipw_geo { | |||
| 784 | 783 | ||
| 785 | struct libipw_device { | 784 | struct libipw_device { |
| 786 | struct net_device *dev; | 785 | struct net_device *dev; |
| 787 | struct wireless_dev wdev; | ||
| 788 | struct libipw_security sec; | 786 | struct libipw_security sec; |
| 789 | 787 | ||
| 790 | /* Bookkeeping structures */ | 788 | /* Bookkeeping structures */ |
| 791 | struct libipw_stats ieee_stats; | 789 | struct libipw_stats ieee_stats; |
| 792 | 790 | ||
| 793 | struct libipw_geo geo; | 791 | struct libipw_geo geo; |
| 794 | struct ieee80211_supported_band bg_band; | ||
| 795 | struct ieee80211_supported_band a_band; | ||
| 796 | 792 | ||
| 797 | /* Probe / Beacon management */ | 793 | /* Probe / Beacon management */ |
| 798 | struct list_head network_free_list; | 794 | struct list_head network_free_list; |
| @@ -1018,8 +1014,8 @@ static inline int libipw_is_cck_rate(u8 rate) | |||
| 1018 | } | 1014 | } |
| 1019 | 1015 | ||
| 1020 | /* ieee80211.c */ | 1016 | /* ieee80211.c */ |
| 1021 | extern void free_ieee80211(struct net_device *dev, int monitor); | 1017 | extern void free_ieee80211(struct net_device *dev); |
| 1022 | extern struct net_device *alloc_ieee80211(int sizeof_priv, int monitor); | 1018 | extern struct net_device *alloc_ieee80211(int sizeof_priv); |
| 1023 | extern int libipw_change_mtu(struct net_device *dev, int new_mtu); | 1019 | extern int libipw_change_mtu(struct net_device *dev, int new_mtu); |
| 1024 | 1020 | ||
| 1025 | extern void libipw_networks_age(struct libipw_device *ieee, | 1021 | extern void libipw_networks_age(struct libipw_device *ieee, |
diff --git a/drivers/net/wireless/ipw2x00/libipw_module.c b/drivers/net/wireless/ipw2x00/libipw_module.c index a0e9f6aed7da..eb2b60834c17 100644 --- a/drivers/net/wireless/ipw2x00/libipw_module.c +++ b/drivers/net/wireless/ipw2x00/libipw_module.c | |||
| @@ -62,9 +62,6 @@ MODULE_DESCRIPTION(DRV_DESCRIPTION); | |||
| 62 | MODULE_AUTHOR(DRV_COPYRIGHT); | 62 | MODULE_AUTHOR(DRV_COPYRIGHT); |
| 63 | MODULE_LICENSE("GPL"); | 63 | MODULE_LICENSE("GPL"); |
| 64 | 64 | ||
| 65 | struct cfg80211_ops libipw_config_ops = { }; | ||
| 66 | void *libipw_wiphy_privid = &libipw_wiphy_privid; | ||
| 67 | |||
| 68 | static int libipw_networks_allocate(struct libipw_device *ieee) | 65 | static int libipw_networks_allocate(struct libipw_device *ieee) |
| 69 | { | 66 | { |
| 70 | if (ieee->networks) | 67 | if (ieee->networks) |
| @@ -143,7 +140,7 @@ int libipw_change_mtu(struct net_device *dev, int new_mtu) | |||
| 143 | } | 140 | } |
| 144 | EXPORT_SYMBOL(libipw_change_mtu); | 141 | EXPORT_SYMBOL(libipw_change_mtu); |
| 145 | 142 | ||
| 146 | struct net_device *alloc_ieee80211(int sizeof_priv, int monitor) | 143 | struct net_device *alloc_ieee80211(int sizeof_priv) |
| 147 | { | 144 | { |
| 148 | struct libipw_device *ieee; | 145 | struct libipw_device *ieee; |
| 149 | struct net_device *dev; | 146 | struct net_device *dev; |
| @@ -160,31 +157,10 @@ struct net_device *alloc_ieee80211(int sizeof_priv, int monitor) | |||
| 160 | 157 | ||
| 161 | ieee->dev = dev; | 158 | ieee->dev = dev; |
| 162 | 159 | ||
| 163 | if (!monitor) { | ||
| 164 | ieee->wdev.wiphy = wiphy_new(&libipw_config_ops, 0); | ||
| 165 | if (!ieee->wdev.wiphy) { | ||
| 166 | LIBIPW_ERROR("Unable to allocate wiphy.\n"); | ||
| 167 | goto failed_free_netdev; | ||
| 168 | } | ||
| 169 | |||
| 170 | ieee->dev->ieee80211_ptr = &ieee->wdev; | ||
| 171 | ieee->wdev.iftype = NL80211_IFTYPE_STATION; | ||
| 172 | |||
| 173 | /* Fill-out wiphy structure bits we know... Not enough info | ||
| 174 | here to call set_wiphy_dev or set MAC address or channel info | ||
| 175 | -- have to do that in ->ndo_init... */ | ||
| 176 | ieee->wdev.wiphy->privid = libipw_wiphy_privid; | ||
| 177 | |||
| 178 | ieee->wdev.wiphy->max_scan_ssids = 1; | ||
| 179 | ieee->wdev.wiphy->max_scan_ie_len = 0; | ||
| 180 | ieee->wdev.wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) | ||
| 181 | | BIT(NL80211_IFTYPE_ADHOC); | ||
| 182 | } | ||
| 183 | |||
| 184 | err = libipw_networks_allocate(ieee); | 160 | err = libipw_networks_allocate(ieee); |
| 185 | if (err) { | 161 | if (err) { |
| 186 | LIBIPW_ERROR("Unable to allocate beacon storage: %d\n", err); | 162 | LIBIPW_ERROR("Unable to allocate beacon storage: %d\n", err); |
| 187 | goto failed_free_wiphy; | 163 | goto failed_free_netdev; |
| 188 | } | 164 | } |
| 189 | libipw_networks_initialize(ieee); | 165 | libipw_networks_initialize(ieee); |
| 190 | 166 | ||
| @@ -217,31 +193,19 @@ struct net_device *alloc_ieee80211(int sizeof_priv, int monitor) | |||
| 217 | 193 | ||
| 218 | return dev; | 194 | return dev; |
| 219 | 195 | ||
| 220 | failed_free_wiphy: | ||
| 221 | if (!monitor) | ||
| 222 | wiphy_free(ieee->wdev.wiphy); | ||
| 223 | failed_free_netdev: | 196 | failed_free_netdev: |
| 224 | free_netdev(dev); | 197 | free_netdev(dev); |
| 225 | failed: | 198 | failed: |
| 226 | return NULL; | 199 | return NULL; |
| 227 | } | 200 | } |
| 228 | 201 | ||
| 229 | void free_ieee80211(struct net_device *dev, int monitor) | 202 | void free_ieee80211(struct net_device *dev) |
| 230 | { | 203 | { |
| 231 | struct libipw_device *ieee = netdev_priv(dev); | 204 | struct libipw_device *ieee = netdev_priv(dev); |
| 232 | 205 | ||
| 233 | lib80211_crypt_info_free(&ieee->crypt_info); | 206 | lib80211_crypt_info_free(&ieee->crypt_info); |
| 234 | 207 | ||
| 235 | libipw_networks_free(ieee); | 208 | libipw_networks_free(ieee); |
| 236 | |||
| 237 | /* free cfg80211 resources */ | ||
| 238 | if (!monitor) { | ||
| 239 | wiphy_unregister(ieee->wdev.wiphy); | ||
| 240 | kfree(ieee->a_band.channels); | ||
| 241 | kfree(ieee->bg_band.channels); | ||
| 242 | wiphy_free(ieee->wdev.wiphy); | ||
| 243 | } | ||
| 244 | |||
| 245 | free_netdev(dev); | 209 | free_netdev(dev); |
| 246 | } | 210 | } |
| 247 | 211 | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl-1000.c b/drivers/net/wireless/iwlwifi/iwl-1000.c index 2716b91ba9fa..950267ab556a 100644 --- a/drivers/net/wireless/iwlwifi/iwl-1000.c +++ b/drivers/net/wireless/iwlwifi/iwl-1000.c | |||
| @@ -161,5 +161,6 @@ struct iwl_cfg iwl1000_bgn_cfg = { | |||
| 161 | .max_ll_items = OTP_MAX_LL_ITEMS_1000, | 161 | .max_ll_items = OTP_MAX_LL_ITEMS_1000, |
| 162 | .shadow_ram_support = false, | 162 | .shadow_ram_support = false, |
| 163 | .ht_greenfield_support = true, | 163 | .ht_greenfield_support = true, |
| 164 | .use_rts_for_ht = true, /* use rts/cts protection */ | ||
| 164 | }; | 165 | }; |
| 165 | 166 | ||
diff --git a/drivers/net/wireless/iwlwifi/iwl-6000.c b/drivers/net/wireless/iwlwifi/iwl-6000.c index c295b8ee9228..1473452ba22f 100644 --- a/drivers/net/wireless/iwlwifi/iwl-6000.c +++ b/drivers/net/wireless/iwlwifi/iwl-6000.c | |||
| @@ -175,6 +175,7 @@ struct iwl_cfg iwl6000h_2agn_cfg = { | |||
| 175 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | 175 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 176 | .shadow_ram_support = true, | 176 | .shadow_ram_support = true, |
| 177 | .ht_greenfield_support = true, | 177 | .ht_greenfield_support = true, |
| 178 | .use_rts_for_ht = true, /* use rts/cts protection */ | ||
| 178 | }; | 179 | }; |
| 179 | 180 | ||
| 180 | /* | 181 | /* |
| @@ -198,6 +199,7 @@ struct iwl_cfg iwl6000i_2agn_cfg = { | |||
| 198 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | 199 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 199 | .shadow_ram_support = true, | 200 | .shadow_ram_support = true, |
| 200 | .ht_greenfield_support = true, | 201 | .ht_greenfield_support = true, |
| 202 | .use_rts_for_ht = true, /* use rts/cts protection */ | ||
| 201 | }; | 203 | }; |
| 202 | 204 | ||
| 203 | struct iwl_cfg iwl6050_2agn_cfg = { | 205 | struct iwl_cfg iwl6050_2agn_cfg = { |
| @@ -218,6 +220,7 @@ struct iwl_cfg iwl6050_2agn_cfg = { | |||
| 218 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | 220 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 219 | .shadow_ram_support = true, | 221 | .shadow_ram_support = true, |
| 220 | .ht_greenfield_support = true, | 222 | .ht_greenfield_support = true, |
| 223 | .use_rts_for_ht = true, /* use rts/cts protection */ | ||
| 221 | }; | 224 | }; |
| 222 | 225 | ||
| 223 | struct iwl_cfg iwl6000_3agn_cfg = { | 226 | struct iwl_cfg iwl6000_3agn_cfg = { |
| @@ -238,6 +241,7 @@ struct iwl_cfg iwl6000_3agn_cfg = { | |||
| 238 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | 241 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 239 | .shadow_ram_support = true, | 242 | .shadow_ram_support = true, |
| 240 | .ht_greenfield_support = true, | 243 | .ht_greenfield_support = true, |
| 244 | .use_rts_for_ht = true, /* use rts/cts protection */ | ||
| 241 | }; | 245 | }; |
| 242 | 246 | ||
| 243 | struct iwl_cfg iwl6050_3agn_cfg = { | 247 | struct iwl_cfg iwl6050_3agn_cfg = { |
| @@ -258,6 +262,7 @@ struct iwl_cfg iwl6050_3agn_cfg = { | |||
| 258 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, | 262 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 259 | .shadow_ram_support = true, | 263 | .shadow_ram_support = true, |
| 260 | .ht_greenfield_support = true, | 264 | .ht_greenfield_support = true, |
| 265 | .use_rts_for_ht = true, /* use rts/cts protection */ | ||
| 261 | }; | 266 | }; |
| 262 | 267 | ||
| 263 | MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX)); | 268 | MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX)); |
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn-rs.c b/drivers/net/wireless/iwlwifi/iwl-agn-rs.c index 346dc06fa7b7..81726ee32858 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn-rs.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn-rs.c | |||
| @@ -418,6 +418,15 @@ static void rs_tl_turn_on_agg(struct iwl_priv *priv, u8 tid, | |||
| 418 | else if (tid == IWL_AGG_ALL_TID) | 418 | else if (tid == IWL_AGG_ALL_TID) |
| 419 | for (tid = 0; tid < TID_MAX_LOAD_COUNT; tid++) | 419 | for (tid = 0; tid < TID_MAX_LOAD_COUNT; tid++) |
| 420 | rs_tl_turn_on_agg_for_tid(priv, lq_data, tid, sta); | 420 | rs_tl_turn_on_agg_for_tid(priv, lq_data, tid, sta); |
| 421 | if (priv->cfg->use_rts_for_ht) { | ||
| 422 | /* | ||
| 423 | * switch to RTS/CTS if it is the prefer protection method | ||
| 424 | * for HT traffic | ||
| 425 | */ | ||
| 426 | IWL_DEBUG_HT(priv, "use RTS/CTS protection for HT\n"); | ||
| 427 | priv->staging_rxon.flags &= ~RXON_FLG_SELF_CTS_EN; | ||
| 428 | iwlcore_commit_rxon(priv); | ||
| 429 | } | ||
| 421 | } | 430 | } |
| 422 | 431 | ||
| 423 | static inline int get_num_of_ant_from_rate(u32 rate_n_flags) | 432 | static inline int get_num_of_ant_from_rate(u32 rate_n_flags) |
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn.c b/drivers/net/wireless/iwlwifi/iwl-agn.c index eaafae091f5b..921dc4a26fe2 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn.c | |||
| @@ -116,9 +116,6 @@ int iwl_commit_rxon(struct iwl_priv *priv) | |||
| 116 | 116 | ||
| 117 | /* always get timestamp with Rx frame */ | 117 | /* always get timestamp with Rx frame */ |
| 118 | priv->staging_rxon.flags |= RXON_FLG_TSF2HOST_MSK; | 118 | priv->staging_rxon.flags |= RXON_FLG_TSF2HOST_MSK; |
| 119 | /* allow CTS-to-self if possible. this is relevant only for | ||
| 120 | * 5000, but will not damage 4965 */ | ||
| 121 | priv->staging_rxon.flags |= RXON_FLG_SELF_CTS_EN; | ||
| 122 | 119 | ||
| 123 | ret = iwl_check_rxon_cmd(priv); | 120 | ret = iwl_check_rxon_cmd(priv); |
| 124 | if (ret) { | 121 | if (ret) { |
| @@ -218,6 +215,13 @@ int iwl_commit_rxon(struct iwl_priv *priv) | |||
| 218 | "Could not send WEP static key.\n"); | 215 | "Could not send WEP static key.\n"); |
| 219 | } | 216 | } |
| 220 | 217 | ||
| 218 | /* | ||
| 219 | * allow CTS-to-self if possible for new association. | ||
| 220 | * this is relevant only for 5000 series and up, | ||
| 221 | * but will not damage 4965 | ||
| 222 | */ | ||
| 223 | priv->staging_rxon.flags |= RXON_FLG_SELF_CTS_EN; | ||
| 224 | |||
| 221 | /* Apply the new configuration | 225 | /* Apply the new configuration |
| 222 | * RXON assoc doesn't clear the station table in uCode, | 226 | * RXON assoc doesn't clear the station table in uCode, |
| 223 | */ | 227 | */ |
diff --git a/drivers/net/wireless/iwlwifi/iwl-core.h b/drivers/net/wireless/iwlwifi/iwl-core.h index e50103a956b1..7754538c2194 100644 --- a/drivers/net/wireless/iwlwifi/iwl-core.h +++ b/drivers/net/wireless/iwlwifi/iwl-core.h | |||
| @@ -213,6 +213,7 @@ struct iwl_mod_params { | |||
| 213 | * @pa_type: used by 6000 series only to identify the type of Power Amplifier | 213 | * @pa_type: used by 6000 series only to identify the type of Power Amplifier |
| 214 | * @max_ll_items: max number of OTP blocks | 214 | * @max_ll_items: max number of OTP blocks |
| 215 | * @shadow_ram_support: shadow support for OTP memory | 215 | * @shadow_ram_support: shadow support for OTP memory |
| 216 | * @use_rts_for_ht: use rts/cts protection for HT traffic | ||
| 216 | * | 217 | * |
| 217 | * We enable the driver to be backward compatible wrt API version. The | 218 | * We enable the driver to be backward compatible wrt API version. The |
| 218 | * driver specifies which APIs it supports (with @ucode_api_max being the | 219 | * driver specifies which APIs it supports (with @ucode_api_max being the |
| @@ -255,6 +256,7 @@ struct iwl_cfg { | |||
| 255 | const bool shadow_ram_support; | 256 | const bool shadow_ram_support; |
| 256 | const bool ht_greenfield_support; | 257 | const bool ht_greenfield_support; |
| 257 | const bool broken_powersave; | 258 | const bool broken_powersave; |
| 259 | bool use_rts_for_ht; | ||
| 258 | }; | 260 | }; |
| 259 | 261 | ||
| 260 | /*************************** | 262 | /*************************** |
diff --git a/drivers/net/wireless/iwlwifi/iwl-tx.c b/drivers/net/wireless/iwlwifi/iwl-tx.c index fb9bcfa6d947..b7e196e3c8d3 100644 --- a/drivers/net/wireless/iwlwifi/iwl-tx.c +++ b/drivers/net/wireless/iwlwifi/iwl-tx.c | |||
| @@ -1277,8 +1277,16 @@ int iwl_tx_agg_stop(struct iwl_priv *priv , const u8 *ra, u16 tid) | |||
| 1277 | return -ENXIO; | 1277 | return -ENXIO; |
| 1278 | } | 1278 | } |
| 1279 | 1279 | ||
| 1280 | if (priv->stations[sta_id].tid[tid].agg.state == | ||
| 1281 | IWL_EMPTYING_HW_QUEUE_ADDBA) { | ||
| 1282 | IWL_DEBUG_HT(priv, "AGG stop before setup done\n"); | ||
| 1283 | ieee80211_stop_tx_ba_cb_irqsafe(priv->hw, ra, tid); | ||
| 1284 | priv->stations[sta_id].tid[tid].agg.state = IWL_AGG_OFF; | ||
| 1285 | return 0; | ||
| 1286 | } | ||
| 1287 | |||
| 1280 | if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_ON) | 1288 | if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_ON) |
| 1281 | IWL_WARN(priv, "Stopping AGG while state not IWL_AGG_ON\n"); | 1289 | IWL_WARN(priv, "Stopping AGG while state not ON or starting\n"); |
| 1282 | 1290 | ||
| 1283 | tid_data = &priv->stations[sta_id].tid[tid]; | 1291 | tid_data = &priv->stations[sta_id].tid[tid]; |
| 1284 | ssn = (tid_data->seq_number & IEEE80211_SCTL_SEQ) >> 4; | 1292 | ssn = (tid_data->seq_number & IEEE80211_SCTL_SEQ) >> 4; |
diff --git a/drivers/net/wireless/libertas/ethtool.c b/drivers/net/wireless/libertas/ethtool.c index 039b555e4d76..53d56ab83c03 100644 --- a/drivers/net/wireless/libertas/ethtool.c +++ b/drivers/net/wireless/libertas/ethtool.c | |||
| @@ -169,16 +169,19 @@ static int lbs_ethtool_set_wol(struct net_device *dev, | |||
| 169 | struct lbs_private *priv = dev->ml_priv; | 169 | struct lbs_private *priv = dev->ml_priv; |
| 170 | uint32_t criteria = 0; | 170 | uint32_t criteria = 0; |
| 171 | 171 | ||
| 172 | if (priv->wol_criteria == 0xffffffff && wol->wolopts) | ||
| 173 | return -EOPNOTSUPP; | ||
| 174 | |||
| 175 | if (wol->wolopts & ~(WAKE_UCAST|WAKE_MCAST|WAKE_BCAST|WAKE_PHY)) | 172 | if (wol->wolopts & ~(WAKE_UCAST|WAKE_MCAST|WAKE_BCAST|WAKE_PHY)) |
| 176 | return -EOPNOTSUPP; | 173 | return -EOPNOTSUPP; |
| 177 | 174 | ||
| 178 | if (wol->wolopts & WAKE_UCAST) criteria |= EHS_WAKE_ON_UNICAST_DATA; | 175 | if (wol->wolopts & WAKE_UCAST) |
| 179 | if (wol->wolopts & WAKE_MCAST) criteria |= EHS_WAKE_ON_MULTICAST_DATA; | 176 | criteria |= EHS_WAKE_ON_UNICAST_DATA; |
| 180 | if (wol->wolopts & WAKE_BCAST) criteria |= EHS_WAKE_ON_BROADCAST_DATA; | 177 | if (wol->wolopts & WAKE_MCAST) |
| 181 | if (wol->wolopts & WAKE_PHY) criteria |= EHS_WAKE_ON_MAC_EVENT; | 178 | criteria |= EHS_WAKE_ON_MULTICAST_DATA; |
| 179 | if (wol->wolopts & WAKE_BCAST) | ||
| 180 | criteria |= EHS_WAKE_ON_BROADCAST_DATA; | ||
| 181 | if (wol->wolopts & WAKE_PHY) | ||
| 182 | criteria |= EHS_WAKE_ON_MAC_EVENT; | ||
| 183 | if (wol->wolopts == 0) | ||
| 184 | criteria |= EHS_REMOVE_WAKEUP; | ||
| 182 | 185 | ||
| 183 | return lbs_host_sleep_cfg(priv, criteria, (struct wol_config *)NULL); | 186 | return lbs_host_sleep_cfg(priv, criteria, (struct wol_config *)NULL); |
| 184 | } | 187 | } |
diff --git a/drivers/net/wireless/p54/p54usb.c b/drivers/net/wireless/p54/p54usb.c index 17e199546eeb..92af9b96bb7a 100644 --- a/drivers/net/wireless/p54/p54usb.c +++ b/drivers/net/wireless/p54/p54usb.c | |||
| @@ -426,12 +426,16 @@ static const char p54u_romboot_3887[] = "~~~~"; | |||
| 426 | static int p54u_firmware_reset_3887(struct ieee80211_hw *dev) | 426 | static int p54u_firmware_reset_3887(struct ieee80211_hw *dev) |
| 427 | { | 427 | { |
| 428 | struct p54u_priv *priv = dev->priv; | 428 | struct p54u_priv *priv = dev->priv; |
| 429 | u8 buf[4]; | 429 | u8 *buf; |
| 430 | int ret; | 430 | int ret; |
| 431 | 431 | ||
| 432 | memcpy(&buf, p54u_romboot_3887, sizeof(buf)); | 432 | buf = kmalloc(4, GFP_KERNEL); |
| 433 | if (!buf) | ||
| 434 | return -ENOMEM; | ||
| 435 | memcpy(buf, p54u_romboot_3887, 4); | ||
| 433 | ret = p54u_bulk_msg(priv, P54U_PIPE_DATA, | 436 | ret = p54u_bulk_msg(priv, P54U_PIPE_DATA, |
| 434 | buf, sizeof(buf)); | 437 | buf, 4); |
| 438 | kfree(buf); | ||
| 435 | if (ret) | 439 | if (ret) |
| 436 | dev_err(&priv->udev->dev, "(p54usb) unable to jump to " | 440 | dev_err(&priv->udev->dev, "(p54usb) unable to jump to " |
| 437 | "boot ROM (%d)!\n", ret); | 441 | "boot ROM (%d)!\n", ret); |
diff --git a/drivers/net/wireless/rtl818x/rtl8187_rfkill.c b/drivers/net/wireless/rtl818x/rtl8187_rfkill.c index 9fab13e4004e..cad8037ab2af 100644 --- a/drivers/net/wireless/rtl818x/rtl8187_rfkill.c +++ b/drivers/net/wireless/rtl818x/rtl8187_rfkill.c | |||
| @@ -18,6 +18,7 @@ | |||
| 18 | #include <net/mac80211.h> | 18 | #include <net/mac80211.h> |
| 19 | 19 | ||
| 20 | #include "rtl8187.h" | 20 | #include "rtl8187.h" |
| 21 | #include "rtl8187_rfkill.h" | ||
| 21 | 22 | ||
| 22 | static bool rtl8187_is_radio_enabled(struct rtl8187_priv *priv) | 23 | static bool rtl8187_is_radio_enabled(struct rtl8187_priv *priv) |
| 23 | { | 24 | { |
diff --git a/drivers/pci/dmar.c b/drivers/pci/dmar.c index 22b02c6df854..b952ebc7a78b 100644 --- a/drivers/pci/dmar.c +++ b/drivers/pci/dmar.c | |||
| @@ -175,15 +175,6 @@ dmar_parse_one_drhd(struct acpi_dmar_header *header) | |||
| 175 | int ret = 0; | 175 | int ret = 0; |
| 176 | 176 | ||
| 177 | drhd = (struct acpi_dmar_hardware_unit *)header; | 177 | drhd = (struct acpi_dmar_hardware_unit *)header; |
| 178 | if (!drhd->address) { | ||
| 179 | /* Promote an attitude of violence to a BIOS engineer today */ | ||
| 180 | WARN(1, "Your BIOS is broken; DMAR reported at address zero!\n" | ||
| 181 | "BIOS vendor: %s; Ver: %s; Product Version: %s\n", | ||
| 182 | dmi_get_system_info(DMI_BIOS_VENDOR), | ||
| 183 | dmi_get_system_info(DMI_BIOS_VERSION), | ||
| 184 | dmi_get_system_info(DMI_PRODUCT_VERSION)); | ||
| 185 | return -ENODEV; | ||
| 186 | } | ||
| 187 | dmaru = kzalloc(sizeof(*dmaru), GFP_KERNEL); | 178 | dmaru = kzalloc(sizeof(*dmaru), GFP_KERNEL); |
| 188 | if (!dmaru) | 179 | if (!dmaru) |
| 189 | return -ENOMEM; | 180 | return -ENOMEM; |
| @@ -591,12 +582,53 @@ int __init dmar_table_init(void) | |||
| 591 | return 0; | 582 | return 0; |
| 592 | } | 583 | } |
| 593 | 584 | ||
| 585 | int __init check_zero_address(void) | ||
| 586 | { | ||
| 587 | struct acpi_table_dmar *dmar; | ||
| 588 | struct acpi_dmar_header *entry_header; | ||
| 589 | struct acpi_dmar_hardware_unit *drhd; | ||
| 590 | |||
| 591 | dmar = (struct acpi_table_dmar *)dmar_tbl; | ||
| 592 | entry_header = (struct acpi_dmar_header *)(dmar + 1); | ||
| 593 | |||
| 594 | while (((unsigned long)entry_header) < | ||
| 595 | (((unsigned long)dmar) + dmar_tbl->length)) { | ||
| 596 | /* Avoid looping forever on bad ACPI tables */ | ||
| 597 | if (entry_header->length == 0) { | ||
| 598 | printk(KERN_WARNING PREFIX | ||
| 599 | "Invalid 0-length structure\n"); | ||
| 600 | return 0; | ||
| 601 | } | ||
| 602 | |||
| 603 | if (entry_header->type == ACPI_DMAR_TYPE_HARDWARE_UNIT) { | ||
| 604 | drhd = (void *)entry_header; | ||
| 605 | if (!drhd->address) { | ||
| 606 | /* Promote an attitude of violence to a BIOS engineer today */ | ||
| 607 | WARN(1, "Your BIOS is broken; DMAR reported at address zero!\n" | ||
| 608 | "BIOS vendor: %s; Ver: %s; Product Version: %s\n", | ||
| 609 | dmi_get_system_info(DMI_BIOS_VENDOR), | ||
| 610 | dmi_get_system_info(DMI_BIOS_VERSION), | ||
| 611 | dmi_get_system_info(DMI_PRODUCT_VERSION)); | ||
| 612 | #ifdef CONFIG_DMAR | ||
| 613 | dmar_disabled = 1; | ||
| 614 | #endif | ||
| 615 | return 0; | ||
| 616 | } | ||
| 617 | break; | ||
| 618 | } | ||
| 619 | |||
| 620 | entry_header = ((void *)entry_header + entry_header->length); | ||
| 621 | } | ||
| 622 | return 1; | ||
| 623 | } | ||
| 624 | |||
| 594 | void __init detect_intel_iommu(void) | 625 | void __init detect_intel_iommu(void) |
| 595 | { | 626 | { |
| 596 | int ret; | 627 | int ret; |
| 597 | 628 | ||
| 598 | ret = dmar_table_detect(); | 629 | ret = dmar_table_detect(); |
| 599 | 630 | if (ret) | |
| 631 | ret = check_zero_address(); | ||
| 600 | { | 632 | { |
| 601 | #ifdef CONFIG_INTR_REMAP | 633 | #ifdef CONFIG_INTR_REMAP |
| 602 | struct acpi_table_dmar *dmar; | 634 | struct acpi_table_dmar *dmar; |
diff --git a/drivers/pci/intel-iommu.c b/drivers/pci/intel-iommu.c index b1e97e682500..1840a0578a42 100644 --- a/drivers/pci/intel-iommu.c +++ b/drivers/pci/intel-iommu.c | |||
| @@ -2767,7 +2767,15 @@ static void *intel_alloc_coherent(struct device *hwdev, size_t size, | |||
| 2767 | 2767 | ||
| 2768 | size = PAGE_ALIGN(size); | 2768 | size = PAGE_ALIGN(size); |
| 2769 | order = get_order(size); | 2769 | order = get_order(size); |
| 2770 | flags &= ~(GFP_DMA | GFP_DMA32); | 2770 | |
| 2771 | if (!iommu_no_mapping(hwdev)) | ||
| 2772 | flags &= ~(GFP_DMA | GFP_DMA32); | ||
| 2773 | else if (hwdev->coherent_dma_mask < dma_get_required_mask(hwdev)) { | ||
| 2774 | if (hwdev->coherent_dma_mask < DMA_BIT_MASK(32)) | ||
| 2775 | flags |= GFP_DMA; | ||
| 2776 | else | ||
| 2777 | flags |= GFP_DMA32; | ||
| 2778 | } | ||
| 2771 | 2779 | ||
| 2772 | vaddr = (void *)__get_free_pages(flags, order); | 2780 | vaddr = (void *)__get_free_pages(flags, order); |
| 2773 | if (!vaddr) | 2781 | if (!vaddr) |
| @@ -3207,6 +3215,33 @@ static int __init init_iommu_sysfs(void) | |||
| 3207 | } | 3215 | } |
| 3208 | #endif /* CONFIG_PM */ | 3216 | #endif /* CONFIG_PM */ |
| 3209 | 3217 | ||
| 3218 | /* | ||
| 3219 | * Here we only respond to action of unbound device from driver. | ||
| 3220 | * | ||
| 3221 | * Added device is not attached to its DMAR domain here yet. That will happen | ||
| 3222 | * when mapping the device to iova. | ||
| 3223 | */ | ||
| 3224 | static int device_notifier(struct notifier_block *nb, | ||
| 3225 | unsigned long action, void *data) | ||
| 3226 | { | ||
| 3227 | struct device *dev = data; | ||
| 3228 | struct pci_dev *pdev = to_pci_dev(dev); | ||
| 3229 | struct dmar_domain *domain; | ||
| 3230 | |||
| 3231 | domain = find_domain(pdev); | ||
| 3232 | if (!domain) | ||
| 3233 | return 0; | ||
| 3234 | |||
| 3235 | if (action == BUS_NOTIFY_UNBOUND_DRIVER && !iommu_pass_through) | ||
| 3236 | domain_remove_one_dev_info(domain, pdev); | ||
| 3237 | |||
| 3238 | return 0; | ||
| 3239 | } | ||
| 3240 | |||
| 3241 | static struct notifier_block device_nb = { | ||
| 3242 | .notifier_call = device_notifier, | ||
| 3243 | }; | ||
| 3244 | |||
| 3210 | int __init intel_iommu_init(void) | 3245 | int __init intel_iommu_init(void) |
| 3211 | { | 3246 | { |
| 3212 | int ret = 0; | 3247 | int ret = 0; |
| @@ -3259,6 +3294,8 @@ int __init intel_iommu_init(void) | |||
| 3259 | 3294 | ||
| 3260 | register_iommu(&intel_iommu_ops); | 3295 | register_iommu(&intel_iommu_ops); |
| 3261 | 3296 | ||
| 3297 | bus_register_notifier(&pci_bus_type, &device_nb); | ||
| 3298 | |||
| 3262 | return 0; | 3299 | return 0; |
| 3263 | } | 3300 | } |
| 3264 | 3301 | ||
diff --git a/drivers/pci/pcie/aspm.c b/drivers/pci/pcie/aspm.c index 745402e8e498..5b7056cec00c 100644 --- a/drivers/pci/pcie/aspm.c +++ b/drivers/pci/pcie/aspm.c | |||
| @@ -656,8 +656,10 @@ void pcie_aspm_exit_link_state(struct pci_dev *pdev) | |||
| 656 | free_link_state(link); | 656 | free_link_state(link); |
| 657 | 657 | ||
| 658 | /* Recheck latencies and configure upstream links */ | 658 | /* Recheck latencies and configure upstream links */ |
| 659 | pcie_update_aspm_capable(root); | 659 | if (parent_link) { |
| 660 | pcie_config_aspm_path(parent_link); | 660 | pcie_update_aspm_capable(root); |
| 661 | pcie_config_aspm_path(parent_link); | ||
| 662 | } | ||
| 661 | out: | 663 | out: |
| 662 | mutex_unlock(&aspm_lock); | 664 | mutex_unlock(&aspm_lock); |
| 663 | up_read(&pci_bus_sem); | 665 | up_read(&pci_bus_sem); |
diff --git a/drivers/platform/x86/acerhdf.c b/drivers/platform/x86/acerhdf.c index 0a8f735f6c4a..ab64522aaa64 100644 --- a/drivers/platform/x86/acerhdf.c +++ b/drivers/platform/x86/acerhdf.c | |||
| @@ -52,7 +52,7 @@ | |||
| 52 | */ | 52 | */ |
| 53 | #undef START_IN_KERNEL_MODE | 53 | #undef START_IN_KERNEL_MODE |
| 54 | 54 | ||
| 55 | #define DRV_VER "0.5.17" | 55 | #define DRV_VER "0.5.18" |
| 56 | 56 | ||
| 57 | /* | 57 | /* |
| 58 | * According to the Atom N270 datasheet, | 58 | * According to the Atom N270 datasheet, |
| @@ -61,7 +61,7 @@ | |||
| 61 | * measured by the on-die thermal monitor are within 0 <= Tj <= 90. So, | 61 | * measured by the on-die thermal monitor are within 0 <= Tj <= 90. So, |
| 62 | * assume 89°C is critical temperature. | 62 | * assume 89°C is critical temperature. |
| 63 | */ | 63 | */ |
| 64 | #define ACERHDF_TEMP_CRIT 89 | 64 | #define ACERHDF_TEMP_CRIT 89000 |
| 65 | #define ACERHDF_FAN_OFF 0 | 65 | #define ACERHDF_FAN_OFF 0 |
| 66 | #define ACERHDF_FAN_AUTO 1 | 66 | #define ACERHDF_FAN_AUTO 1 |
| 67 | 67 | ||
| @@ -69,7 +69,7 @@ | |||
| 69 | * No matter what value the user puts into the fanon variable, turn on the fan | 69 | * No matter what value the user puts into the fanon variable, turn on the fan |
| 70 | * at 80 degree Celsius to prevent hardware damage | 70 | * at 80 degree Celsius to prevent hardware damage |
| 71 | */ | 71 | */ |
| 72 | #define ACERHDF_MAX_FANON 80 | 72 | #define ACERHDF_MAX_FANON 80000 |
| 73 | 73 | ||
| 74 | /* | 74 | /* |
| 75 | * Maximum interval between two temperature checks is 15 seconds, as the die | 75 | * Maximum interval between two temperature checks is 15 seconds, as the die |
| @@ -85,8 +85,8 @@ static int kernelmode; | |||
| 85 | #endif | 85 | #endif |
| 86 | 86 | ||
| 87 | static unsigned int interval = 10; | 87 | static unsigned int interval = 10; |
| 88 | static unsigned int fanon = 63; | 88 | static unsigned int fanon = 63000; |
| 89 | static unsigned int fanoff = 58; | 89 | static unsigned int fanoff = 58000; |
| 90 | static unsigned int verbose; | 90 | static unsigned int verbose; |
| 91 | static unsigned int fanstate = ACERHDF_FAN_AUTO; | 91 | static unsigned int fanstate = ACERHDF_FAN_AUTO; |
| 92 | static char force_bios[16]; | 92 | static char force_bios[16]; |
| @@ -171,7 +171,7 @@ static int acerhdf_get_temp(int *temp) | |||
| 171 | if (ec_read(bios_cfg->tempreg, &read_temp)) | 171 | if (ec_read(bios_cfg->tempreg, &read_temp)) |
| 172 | return -EINVAL; | 172 | return -EINVAL; |
| 173 | 173 | ||
| 174 | *temp = read_temp; | 174 | *temp = read_temp * 1000; |
| 175 | 175 | ||
| 176 | return 0; | 176 | return 0; |
| 177 | } | 177 | } |
diff --git a/drivers/platform/x86/thinkpad_acpi.c b/drivers/platform/x86/thinkpad_acpi.c index d93108d148fc..a848c7e20aeb 100644 --- a/drivers/platform/x86/thinkpad_acpi.c +++ b/drivers/platform/x86/thinkpad_acpi.c | |||
| @@ -1680,36 +1680,48 @@ static void tpacpi_remove_driver_attributes(struct device_driver *drv) | |||
| 1680 | | (__bv1) << 8 | (__bv2) } | 1680 | | (__bv1) << 8 | (__bv2) } |
| 1681 | 1681 | ||
| 1682 | #define TPV_Q_X(__v, __bid1, __bid2, __bv1, __bv2, \ | 1682 | #define TPV_Q_X(__v, __bid1, __bid2, __bv1, __bv2, \ |
| 1683 | __eid1, __eid2, __ev1, __ev2) \ | 1683 | __eid, __ev1, __ev2) \ |
| 1684 | { .vendor = (__v), \ | 1684 | { .vendor = (__v), \ |
| 1685 | .bios = TPID(__bid1, __bid2), \ | 1685 | .bios = TPID(__bid1, __bid2), \ |
| 1686 | .ec = TPID(__eid1, __eid2), \ | 1686 | .ec = __eid, \ |
| 1687 | .quirks = (__ev1) << 24 | (__ev2) << 16 \ | 1687 | .quirks = (__ev1) << 24 | (__ev2) << 16 \ |
| 1688 | | (__bv1) << 8 | (__bv2) } | 1688 | | (__bv1) << 8 | (__bv2) } |
| 1689 | 1689 | ||
| 1690 | #define TPV_QI0(__id1, __id2, __bv1, __bv2) \ | 1690 | #define TPV_QI0(__id1, __id2, __bv1, __bv2) \ |
| 1691 | TPV_Q(PCI_VENDOR_ID_IBM, __id1, __id2, __bv1, __bv2) | 1691 | TPV_Q(PCI_VENDOR_ID_IBM, __id1, __id2, __bv1, __bv2) |
| 1692 | 1692 | ||
| 1693 | /* Outdated IBM BIOSes often lack the EC id string */ | ||
| 1693 | #define TPV_QI1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \ | 1694 | #define TPV_QI1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \ |
| 1694 | TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \ | 1695 | TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \ |
| 1695 | __bv1, __bv2, __id1, __id2, __ev1, __ev2) | 1696 | __bv1, __bv2, TPID(__id1, __id2), \ |
| 1697 | __ev1, __ev2), \ | ||
| 1698 | TPV_Q_X(PCI_VENDOR_ID_IBM, __id1, __id2, \ | ||
| 1699 | __bv1, __bv2, TPACPI_MATCH_UNKNOWN, \ | ||
| 1700 | __ev1, __ev2) | ||
| 1696 | 1701 | ||
| 1702 | /* Outdated IBM BIOSes often lack the EC id string */ | ||
| 1697 | #define TPV_QI2(__bid1, __bid2, __bv1, __bv2, \ | 1703 | #define TPV_QI2(__bid1, __bid2, __bv1, __bv2, \ |
| 1698 | __eid1, __eid2, __ev1, __ev2) \ | 1704 | __eid1, __eid2, __ev1, __ev2) \ |
| 1699 | TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \ | 1705 | TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \ |
| 1700 | __bv1, __bv2, __eid1, __eid2, __ev1, __ev2) | 1706 | __bv1, __bv2, TPID(__eid1, __eid2), \ |
| 1707 | __ev1, __ev2), \ | ||
| 1708 | TPV_Q_X(PCI_VENDOR_ID_IBM, __bid1, __bid2, \ | ||
| 1709 | __bv1, __bv2, TPACPI_MATCH_UNKNOWN, \ | ||
| 1710 | __ev1, __ev2) | ||
| 1701 | 1711 | ||
| 1702 | #define TPV_QL0(__id1, __id2, __bv1, __bv2) \ | 1712 | #define TPV_QL0(__id1, __id2, __bv1, __bv2) \ |
| 1703 | TPV_Q(PCI_VENDOR_ID_LENOVO, __id1, __id2, __bv1, __bv2) | 1713 | TPV_Q(PCI_VENDOR_ID_LENOVO, __id1, __id2, __bv1, __bv2) |
| 1704 | 1714 | ||
| 1705 | #define TPV_QL1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \ | 1715 | #define TPV_QL1(__id1, __id2, __bv1, __bv2, __ev1, __ev2) \ |
| 1706 | TPV_Q_X(PCI_VENDOR_ID_LENOVO, __id1, __id2, \ | 1716 | TPV_Q_X(PCI_VENDOR_ID_LENOVO, __id1, __id2, \ |
| 1707 | __bv1, __bv2, __id1, __id2, __ev1, __ev2) | 1717 | __bv1, __bv2, TPID(__id1, __id2), \ |
| 1718 | __ev1, __ev2) | ||
| 1708 | 1719 | ||
| 1709 | #define TPV_QL2(__bid1, __bid2, __bv1, __bv2, \ | 1720 | #define TPV_QL2(__bid1, __bid2, __bv1, __bv2, \ |
| 1710 | __eid1, __eid2, __ev1, __ev2) \ | 1721 | __eid1, __eid2, __ev1, __ev2) \ |
| 1711 | TPV_Q_X(PCI_VENDOR_ID_LENOVO, __bid1, __bid2, \ | 1722 | TPV_Q_X(PCI_VENDOR_ID_LENOVO, __bid1, __bid2, \ |
| 1712 | __bv1, __bv2, __eid1, __eid2, __ev1, __ev2) | 1723 | __bv1, __bv2, TPID(__eid1, __eid2), \ |
| 1724 | __ev1, __ev2) | ||
| 1713 | 1725 | ||
| 1714 | static const struct tpacpi_quirk tpacpi_bios_version_qtable[] __initconst = { | 1726 | static const struct tpacpi_quirk tpacpi_bios_version_qtable[] __initconst = { |
| 1715 | /* Numeric models ------------------ */ | 1727 | /* Numeric models ------------------ */ |
| @@ -6313,7 +6325,7 @@ static int brightness_write(char *buf) | |||
| 6313 | * Doing it this way makes the syscall restartable in case of EINTR | 6325 | * Doing it this way makes the syscall restartable in case of EINTR |
| 6314 | */ | 6326 | */ |
| 6315 | rc = brightness_set(level); | 6327 | rc = brightness_set(level); |
| 6316 | return (rc == -EINTR)? ERESTARTSYS : rc; | 6328 | return (rc == -EINTR)? -ERESTARTSYS : rc; |
| 6317 | } | 6329 | } |
| 6318 | 6330 | ||
| 6319 | static struct ibm_struct brightness_driver_data = { | 6331 | static struct ibm_struct brightness_driver_data = { |
diff --git a/drivers/pps/kapi.c b/drivers/pps/kapi.c index 35a0b192d768..2d414e23d390 100644 --- a/drivers/pps/kapi.c +++ b/drivers/pps/kapi.c | |||
| @@ -271,6 +271,7 @@ void pps_event(int source, struct pps_ktime *ts, int event, void *data) | |||
| 271 | { | 271 | { |
| 272 | struct pps_device *pps; | 272 | struct pps_device *pps; |
| 273 | unsigned long flags; | 273 | unsigned long flags; |
| 274 | int captured = 0; | ||
| 274 | 275 | ||
| 275 | if ((event & (PPS_CAPTUREASSERT | PPS_CAPTURECLEAR)) == 0) { | 276 | if ((event & (PPS_CAPTUREASSERT | PPS_CAPTURECLEAR)) == 0) { |
| 276 | printk(KERN_ERR "pps: unknown event (%x) for source %d\n", | 277 | printk(KERN_ERR "pps: unknown event (%x) for source %d\n", |
| @@ -293,7 +294,8 @@ void pps_event(int source, struct pps_ktime *ts, int event, void *data) | |||
| 293 | 294 | ||
| 294 | /* Check the event */ | 295 | /* Check the event */ |
| 295 | pps->current_mode = pps->params.mode; | 296 | pps->current_mode = pps->params.mode; |
| 296 | if (event & PPS_CAPTUREASSERT) { | 297 | if ((event & PPS_CAPTUREASSERT) & |
| 298 | (pps->params.mode & PPS_CAPTUREASSERT)) { | ||
| 297 | /* We have to add an offset? */ | 299 | /* We have to add an offset? */ |
| 298 | if (pps->params.mode & PPS_OFFSETASSERT) | 300 | if (pps->params.mode & PPS_OFFSETASSERT) |
| 299 | pps_add_offset(ts, &pps->params.assert_off_tu); | 301 | pps_add_offset(ts, &pps->params.assert_off_tu); |
| @@ -303,8 +305,11 @@ void pps_event(int source, struct pps_ktime *ts, int event, void *data) | |||
| 303 | pps->assert_sequence++; | 305 | pps->assert_sequence++; |
| 304 | pr_debug("capture assert seq #%u for source %d\n", | 306 | pr_debug("capture assert seq #%u for source %d\n", |
| 305 | pps->assert_sequence, source); | 307 | pps->assert_sequence, source); |
| 308 | |||
| 309 | captured = ~0; | ||
| 306 | } | 310 | } |
| 307 | if (event & PPS_CAPTURECLEAR) { | 311 | if ((event & PPS_CAPTURECLEAR) & |
| 312 | (pps->params.mode & PPS_CAPTURECLEAR)) { | ||
| 308 | /* We have to add an offset? */ | 313 | /* We have to add an offset? */ |
| 309 | if (pps->params.mode & PPS_OFFSETCLEAR) | 314 | if (pps->params.mode & PPS_OFFSETCLEAR) |
| 310 | pps_add_offset(ts, &pps->params.clear_off_tu); | 315 | pps_add_offset(ts, &pps->params.clear_off_tu); |
| @@ -314,12 +319,17 @@ void pps_event(int source, struct pps_ktime *ts, int event, void *data) | |||
| 314 | pps->clear_sequence++; | 319 | pps->clear_sequence++; |
| 315 | pr_debug("capture clear seq #%u for source %d\n", | 320 | pr_debug("capture clear seq #%u for source %d\n", |
| 316 | pps->clear_sequence, source); | 321 | pps->clear_sequence, source); |
| 322 | |||
| 323 | captured = ~0; | ||
| 317 | } | 324 | } |
| 318 | 325 | ||
| 319 | pps->go = ~0; | 326 | /* Wake up iif captured somthing */ |
| 320 | wake_up_interruptible(&pps->queue); | 327 | if (captured) { |
| 328 | pps->go = ~0; | ||
| 329 | wake_up_interruptible(&pps->queue); | ||
| 321 | 330 | ||
| 322 | kill_fasync(&pps->async_queue, SIGIO, POLL_IN); | 331 | kill_fasync(&pps->async_queue, SIGIO, POLL_IN); |
| 332 | } | ||
| 323 | 333 | ||
| 324 | spin_unlock_irqrestore(&pps->lock, flags); | 334 | spin_unlock_irqrestore(&pps->lock, flags); |
| 325 | 335 | ||
diff --git a/drivers/pps/pps.c b/drivers/pps/pps.c index fea17e7805e9..ca5183bdad85 100644 --- a/drivers/pps/pps.c +++ b/drivers/pps/pps.c | |||
| @@ -71,9 +71,14 @@ static long pps_cdev_ioctl(struct file *file, | |||
| 71 | case PPS_GETPARAMS: | 71 | case PPS_GETPARAMS: |
| 72 | pr_debug("PPS_GETPARAMS: source %d\n", pps->id); | 72 | pr_debug("PPS_GETPARAMS: source %d\n", pps->id); |
| 73 | 73 | ||
| 74 | /* Return current parameters */ | 74 | spin_lock_irq(&pps->lock); |
| 75 | err = copy_to_user(uarg, &pps->params, | 75 | |
| 76 | sizeof(struct pps_kparams)); | 76 | /* Get the current parameters */ |
| 77 | params = pps->params; | ||
| 78 | |||
| 79 | spin_unlock_irq(&pps->lock); | ||
| 80 | |||
| 81 | err = copy_to_user(uarg, ¶ms, sizeof(struct pps_kparams)); | ||
| 77 | if (err) | 82 | if (err) |
| 78 | return -EFAULT; | 83 | return -EFAULT; |
| 79 | 84 | ||
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c index 744ea1d0b59b..efe568deda12 100644 --- a/drivers/regulator/core.c +++ b/drivers/regulator/core.c | |||
| @@ -1283,7 +1283,8 @@ static int _regulator_disable(struct regulator_dev *rdev) | |||
| 1283 | return -EIO; | 1283 | return -EIO; |
| 1284 | 1284 | ||
| 1285 | /* are we the last user and permitted to disable ? */ | 1285 | /* are we the last user and permitted to disable ? */ |
| 1286 | if (rdev->use_count == 1 && !rdev->constraints->always_on) { | 1286 | if (rdev->use_count == 1 && |
| 1287 | (rdev->constraints && !rdev->constraints->always_on)) { | ||
| 1287 | 1288 | ||
| 1288 | /* we are last user */ | 1289 | /* we are last user */ |
| 1289 | if (_regulator_can_change_status(rdev) && | 1290 | if (_regulator_can_change_status(rdev) && |
diff --git a/drivers/regulator/fixed.c b/drivers/regulator/fixed.c index f8b295700d7d..f9f516a3028a 100644 --- a/drivers/regulator/fixed.c +++ b/drivers/regulator/fixed.c | |||
| @@ -196,11 +196,10 @@ static int regulator_fixed_voltage_remove(struct platform_device *pdev) | |||
| 196 | struct fixed_voltage_data *drvdata = platform_get_drvdata(pdev); | 196 | struct fixed_voltage_data *drvdata = platform_get_drvdata(pdev); |
| 197 | 197 | ||
| 198 | regulator_unregister(drvdata->dev); | 198 | regulator_unregister(drvdata->dev); |
| 199 | kfree(drvdata->desc.name); | ||
| 200 | kfree(drvdata); | ||
| 201 | |||
| 202 | if (gpio_is_valid(drvdata->gpio)) | 199 | if (gpio_is_valid(drvdata->gpio)) |
| 203 | gpio_free(drvdata->gpio); | 200 | gpio_free(drvdata->gpio); |
| 201 | kfree(drvdata->desc.name); | ||
| 202 | kfree(drvdata); | ||
| 204 | 203 | ||
| 205 | return 0; | 204 | return 0; |
| 206 | } | 205 | } |
diff --git a/drivers/regulator/wm831x-isink.c b/drivers/regulator/wm831x-isink.c index 1d8d9879d3a1..48857008758c 100644 --- a/drivers/regulator/wm831x-isink.c +++ b/drivers/regulator/wm831x-isink.c | |||
| @@ -167,6 +167,8 @@ static __devinit int wm831x_isink_probe(struct platform_device *pdev) | |||
| 167 | return -ENOMEM; | 167 | return -ENOMEM; |
| 168 | } | 168 | } |
| 169 | 169 | ||
| 170 | isink->wm831x = wm831x; | ||
| 171 | |||
| 170 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); | 172 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); |
| 171 | if (res == NULL) { | 173 | if (res == NULL) { |
| 172 | dev_err(&pdev->dev, "No I/O resource\n"); | 174 | dev_err(&pdev->dev, "No I/O resource\n"); |
diff --git a/drivers/regulator/wm831x-ldo.c b/drivers/regulator/wm831x-ldo.c index bb61aede4801..902db56ce099 100644 --- a/drivers/regulator/wm831x-ldo.c +++ b/drivers/regulator/wm831x-ldo.c | |||
| @@ -175,18 +175,18 @@ static unsigned int wm831x_gp_ldo_get_mode(struct regulator_dev *rdev) | |||
| 175 | struct wm831x *wm831x = ldo->wm831x; | 175 | struct wm831x *wm831x = ldo->wm831x; |
| 176 | int ctrl_reg = ldo->base + WM831X_LDO_CONTROL; | 176 | int ctrl_reg = ldo->base + WM831X_LDO_CONTROL; |
| 177 | int on_reg = ldo->base + WM831X_LDO_ON_CONTROL; | 177 | int on_reg = ldo->base + WM831X_LDO_ON_CONTROL; |
| 178 | unsigned int ret; | 178 | int ret; |
| 179 | 179 | ||
| 180 | ret = wm831x_reg_read(wm831x, on_reg); | 180 | ret = wm831x_reg_read(wm831x, on_reg); |
| 181 | if (ret < 0) | 181 | if (ret < 0) |
| 182 | return 0; | 182 | return ret; |
| 183 | 183 | ||
| 184 | if (!(ret & WM831X_LDO1_ON_MODE)) | 184 | if (!(ret & WM831X_LDO1_ON_MODE)) |
| 185 | return REGULATOR_MODE_NORMAL; | 185 | return REGULATOR_MODE_NORMAL; |
| 186 | 186 | ||
| 187 | ret = wm831x_reg_read(wm831x, ctrl_reg); | 187 | ret = wm831x_reg_read(wm831x, ctrl_reg); |
| 188 | if (ret < 0) | 188 | if (ret < 0) |
| 189 | return 0; | 189 | return ret; |
| 190 | 190 | ||
| 191 | if (ret & WM831X_LDO1_LP_MODE) | 191 | if (ret & WM831X_LDO1_LP_MODE) |
| 192 | return REGULATOR_MODE_STANDBY; | 192 | return REGULATOR_MODE_STANDBY; |
diff --git a/drivers/rtc/rtc-coh901331.c b/drivers/rtc/rtc-coh901331.c index 7fe1fa26c52c..03ea530981d1 100644 --- a/drivers/rtc/rtc-coh901331.c +++ b/drivers/rtc/rtc-coh901331.c | |||
| @@ -58,7 +58,16 @@ static irqreturn_t coh901331_interrupt(int irq, void *data) | |||
| 58 | clk_enable(rtap->clk); | 58 | clk_enable(rtap->clk); |
| 59 | /* Ack IRQ */ | 59 | /* Ack IRQ */ |
| 60 | writel(1, rtap->virtbase + COH901331_IRQ_EVENT); | 60 | writel(1, rtap->virtbase + COH901331_IRQ_EVENT); |
| 61 | /* | ||
| 62 | * Disable the interrupt. This is necessary because | ||
| 63 | * the RTC lives on a lower-clocked line and will | ||
| 64 | * not release the IRQ line until after a few (slower) | ||
| 65 | * clock cycles. The interrupt will be re-enabled when | ||
| 66 | * a new alarm is set anyway. | ||
| 67 | */ | ||
| 68 | writel(0, rtap->virtbase + COH901331_IRQ_MASK); | ||
| 61 | clk_disable(rtap->clk); | 69 | clk_disable(rtap->clk); |
| 70 | |||
| 62 | /* Set alarm flag */ | 71 | /* Set alarm flag */ |
| 63 | rtc_update_irq(rtap->rtc, 1, RTC_AF); | 72 | rtc_update_irq(rtap->rtc, 1, RTC_AF); |
| 64 | 73 | ||
| @@ -128,6 +137,8 @@ static int coh901331_alarm_irq_enable(struct device *dev, unsigned int enabled) | |||
| 128 | else | 137 | else |
| 129 | writel(0, rtap->virtbase + COH901331_IRQ_MASK); | 138 | writel(0, rtap->virtbase + COH901331_IRQ_MASK); |
| 130 | clk_disable(rtap->clk); | 139 | clk_disable(rtap->clk); |
| 140 | |||
| 141 | return 0; | ||
| 131 | } | 142 | } |
| 132 | 143 | ||
| 133 | static struct rtc_class_ops coh901331_ops = { | 144 | static struct rtc_class_ops coh901331_ops = { |
diff --git a/drivers/rtc/rtc-pcf50633.c b/drivers/rtc/rtc-pcf50633.c index f4dd87e29075..4c5d5d0c4cfc 100644 --- a/drivers/rtc/rtc-pcf50633.c +++ b/drivers/rtc/rtc-pcf50633.c | |||
| @@ -70,7 +70,7 @@ static void pcf2rtc_time(struct rtc_time *rtc, struct pcf50633_time *pcf) | |||
| 70 | rtc->tm_hour = bcd2bin(pcf->time[PCF50633_TI_HOUR]); | 70 | rtc->tm_hour = bcd2bin(pcf->time[PCF50633_TI_HOUR]); |
| 71 | rtc->tm_wday = bcd2bin(pcf->time[PCF50633_TI_WKDAY]); | 71 | rtc->tm_wday = bcd2bin(pcf->time[PCF50633_TI_WKDAY]); |
| 72 | rtc->tm_mday = bcd2bin(pcf->time[PCF50633_TI_DAY]); | 72 | rtc->tm_mday = bcd2bin(pcf->time[PCF50633_TI_DAY]); |
| 73 | rtc->tm_mon = bcd2bin(pcf->time[PCF50633_TI_MONTH]); | 73 | rtc->tm_mon = bcd2bin(pcf->time[PCF50633_TI_MONTH]) - 1; |
| 74 | rtc->tm_year = bcd2bin(pcf->time[PCF50633_TI_YEAR]) + 100; | 74 | rtc->tm_year = bcd2bin(pcf->time[PCF50633_TI_YEAR]) + 100; |
| 75 | } | 75 | } |
| 76 | 76 | ||
| @@ -81,7 +81,7 @@ static void rtc2pcf_time(struct pcf50633_time *pcf, struct rtc_time *rtc) | |||
| 81 | pcf->time[PCF50633_TI_HOUR] = bin2bcd(rtc->tm_hour); | 81 | pcf->time[PCF50633_TI_HOUR] = bin2bcd(rtc->tm_hour); |
| 82 | pcf->time[PCF50633_TI_WKDAY] = bin2bcd(rtc->tm_wday); | 82 | pcf->time[PCF50633_TI_WKDAY] = bin2bcd(rtc->tm_wday); |
| 83 | pcf->time[PCF50633_TI_DAY] = bin2bcd(rtc->tm_mday); | 83 | pcf->time[PCF50633_TI_DAY] = bin2bcd(rtc->tm_mday); |
| 84 | pcf->time[PCF50633_TI_MONTH] = bin2bcd(rtc->tm_mon); | 84 | pcf->time[PCF50633_TI_MONTH] = bin2bcd(rtc->tm_mon + 1); |
| 85 | pcf->time[PCF50633_TI_YEAR] = bin2bcd(rtc->tm_year % 100); | 85 | pcf->time[PCF50633_TI_YEAR] = bin2bcd(rtc->tm_year % 100); |
| 86 | } | 86 | } |
| 87 | 87 | ||
| @@ -245,8 +245,9 @@ static int pcf50633_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm) | |||
| 245 | ret = pcf50633_write_block(rtc->pcf, PCF50633_REG_RTCSCA, | 245 | ret = pcf50633_write_block(rtc->pcf, PCF50633_REG_RTCSCA, |
| 246 | PCF50633_TI_EXTENT, &pcf_tm.time[0]); | 246 | PCF50633_TI_EXTENT, &pcf_tm.time[0]); |
| 247 | 247 | ||
| 248 | if (!alarm_masked) | 248 | if (!alarm_masked || alrm->enabled) |
| 249 | pcf50633_irq_unmask(rtc->pcf, PCF50633_IRQ_ALARM); | 249 | pcf50633_irq_unmask(rtc->pcf, PCF50633_IRQ_ALARM); |
| 250 | rtc->alarm_enabled = alrm->enabled; | ||
| 250 | 251 | ||
| 251 | return ret; | 252 | return ret; |
| 252 | } | 253 | } |
| @@ -291,8 +292,9 @@ static int __devinit pcf50633_rtc_probe(struct platform_device *pdev) | |||
| 291 | &pcf50633_rtc_ops, THIS_MODULE); | 292 | &pcf50633_rtc_ops, THIS_MODULE); |
| 292 | 293 | ||
| 293 | if (IS_ERR(rtc->rtc_dev)) { | 294 | if (IS_ERR(rtc->rtc_dev)) { |
| 295 | int ret = PTR_ERR(rtc->rtc_dev); | ||
| 294 | kfree(rtc); | 296 | kfree(rtc); |
| 295 | return PTR_ERR(rtc->rtc_dev); | 297 | return ret; |
| 296 | } | 298 | } |
| 297 | 299 | ||
| 298 | pcf50633_register_irq(rtc->pcf, PCF50633_IRQ_ALARM, | 300 | pcf50633_register_irq(rtc->pcf, PCF50633_IRQ_ALARM, |
diff --git a/drivers/rtc/rtc-v3020.c b/drivers/rtc/rtc-v3020.c index ad164056feb6..423cd5a30b10 100644 --- a/drivers/rtc/rtc-v3020.c +++ b/drivers/rtc/rtc-v3020.c | |||
| @@ -96,7 +96,7 @@ static void v3020_mmio_write_bit(struct v3020 *chip, unsigned char bit) | |||
| 96 | 96 | ||
| 97 | static unsigned char v3020_mmio_read_bit(struct v3020 *chip) | 97 | static unsigned char v3020_mmio_read_bit(struct v3020 *chip) |
| 98 | { | 98 | { |
| 99 | return readl(chip->ioaddress) & (1 << chip->leftshift); | 99 | return !!(readl(chip->ioaddress) & (1 << chip->leftshift)); |
| 100 | } | 100 | } |
| 101 | 101 | ||
| 102 | static struct v3020_chip_ops v3020_mmio_ops = { | 102 | static struct v3020_chip_ops v3020_mmio_ops = { |
diff --git a/drivers/rtc/rtc-vr41xx.c b/drivers/rtc/rtc-vr41xx.c index 2c839d0d21bd..fadddac1e5a4 100644 --- a/drivers/rtc/rtc-vr41xx.c +++ b/drivers/rtc/rtc-vr41xx.c | |||
| @@ -209,19 +209,18 @@ static int vr41xx_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *wkalrm) | |||
| 209 | 209 | ||
| 210 | static int vr41xx_rtc_irq_set_freq(struct device *dev, int freq) | 210 | static int vr41xx_rtc_irq_set_freq(struct device *dev, int freq) |
| 211 | { | 211 | { |
| 212 | unsigned long count; | 212 | u64 count; |
| 213 | 213 | ||
| 214 | if (!is_power_of_2(freq)) | 214 | if (!is_power_of_2(freq)) |
| 215 | return -EINVAL; | 215 | return -EINVAL; |
| 216 | count = RTC_FREQUENCY; | 216 | count = RTC_FREQUENCY; |
| 217 | do_div(count, freq); | 217 | do_div(count, freq); |
| 218 | 218 | ||
| 219 | periodic_count = count; | ||
| 220 | |||
| 221 | spin_lock_irq(&rtc_lock); | 219 | spin_lock_irq(&rtc_lock); |
| 222 | 220 | ||
| 223 | rtc1_write(RTCL1LREG, count); | 221 | periodic_count = count; |
| 224 | rtc1_write(RTCL1HREG, count >> 16); | 222 | rtc1_write(RTCL1LREG, periodic_count); |
| 223 | rtc1_write(RTCL1HREG, periodic_count >> 16); | ||
| 225 | 224 | ||
| 226 | spin_unlock_irq(&rtc_lock); | 225 | spin_unlock_irq(&rtc_lock); |
| 227 | 226 | ||
diff --git a/drivers/rtc/rtc-x1205.c b/drivers/rtc/rtc-x1205.c index 310c10795e9a..6583c1a8b070 100644 --- a/drivers/rtc/rtc-x1205.c +++ b/drivers/rtc/rtc-x1205.c | |||
| @@ -195,7 +195,7 @@ static int x1205_set_datetime(struct i2c_client *client, struct rtc_time *tm, | |||
| 195 | /* year, since the rtc epoch*/ | 195 | /* year, since the rtc epoch*/ |
| 196 | buf[CCR_YEAR] = bin2bcd(tm->tm_year % 100); | 196 | buf[CCR_YEAR] = bin2bcd(tm->tm_year % 100); |
| 197 | buf[CCR_WDAY] = tm->tm_wday & 0x07; | 197 | buf[CCR_WDAY] = tm->tm_wday & 0x07; |
| 198 | buf[CCR_Y2K] = bin2bcd(tm->tm_year / 100); | 198 | buf[CCR_Y2K] = bin2bcd((tm->tm_year + 1900) / 100); |
| 199 | } | 199 | } |
| 200 | 200 | ||
| 201 | /* If writing alarm registers, set compare bits on registers 0-4 */ | 201 | /* If writing alarm registers, set compare bits on registers 0-4 */ |
| @@ -280,9 +280,9 @@ static int x1205_fix_osc(struct i2c_client *client) | |||
| 280 | int err; | 280 | int err; |
| 281 | struct rtc_time tm; | 281 | struct rtc_time tm; |
| 282 | 282 | ||
| 283 | tm.tm_hour = tm.tm_min = tm.tm_sec = 0; | 283 | memset(&tm, 0, sizeof(tm)); |
| 284 | 284 | ||
| 285 | err = x1205_set_datetime(client, &tm, 0, X1205_CCR_BASE, 0); | 285 | err = x1205_set_datetime(client, &tm, 1, X1205_CCR_BASE, 0); |
| 286 | if (err < 0) | 286 | if (err < 0) |
| 287 | dev_err(&client->dev, "unable to restart the oscillator\n"); | 287 | dev_err(&client->dev, "unable to restart the oscillator\n"); |
| 288 | 288 | ||
diff --git a/drivers/s390/char/monreader.c b/drivers/s390/char/monreader.c index 89ece1c235aa..66e21dd23154 100644 --- a/drivers/s390/char/monreader.c +++ b/drivers/s390/char/monreader.c | |||
| @@ -357,6 +357,7 @@ static int mon_close(struct inode *inode, struct file *filp) | |||
| 357 | atomic_set(&monpriv->msglim_count, 0); | 357 | atomic_set(&monpriv->msglim_count, 0); |
| 358 | monpriv->write_index = 0; | 358 | monpriv->write_index = 0; |
| 359 | monpriv->read_index = 0; | 359 | monpriv->read_index = 0; |
| 360 | dev_set_drvdata(monreader_device, NULL); | ||
| 360 | 361 | ||
| 361 | for (i = 0; i < MON_MSGLIM; i++) | 362 | for (i = 0; i < MON_MSGLIM; i++) |
| 362 | kfree(monpriv->msg_array[i]); | 363 | kfree(monpriv->msg_array[i]); |
diff --git a/drivers/s390/char/sclp_quiesce.c b/drivers/s390/char/sclp_quiesce.c index 84c191c1cd62..05909a7df8b3 100644 --- a/drivers/s390/char/sclp_quiesce.c +++ b/drivers/s390/char/sclp_quiesce.c | |||
| @@ -20,9 +20,12 @@ | |||
| 20 | 20 | ||
| 21 | #include "sclp.h" | 21 | #include "sclp.h" |
| 22 | 22 | ||
| 23 | static void (*old_machine_restart)(char *); | ||
| 24 | static void (*old_machine_halt)(void); | ||
| 25 | static void (*old_machine_power_off)(void); | ||
| 26 | |||
| 23 | /* Shutdown handler. Signal completion of shutdown by loading special PSW. */ | 27 | /* Shutdown handler. Signal completion of shutdown by loading special PSW. */ |
| 24 | static void | 28 | static void do_machine_quiesce(void) |
| 25 | do_machine_quiesce(void) | ||
| 26 | { | 29 | { |
| 27 | psw_t quiesce_psw; | 30 | psw_t quiesce_psw; |
| 28 | 31 | ||
| @@ -33,23 +36,48 @@ do_machine_quiesce(void) | |||
| 33 | } | 36 | } |
| 34 | 37 | ||
| 35 | /* Handler for quiesce event. Start shutdown procedure. */ | 38 | /* Handler for quiesce event. Start shutdown procedure. */ |
| 36 | static void | 39 | static void sclp_quiesce_handler(struct evbuf_header *evbuf) |
| 37 | sclp_quiesce_handler(struct evbuf_header *evbuf) | ||
| 38 | { | 40 | { |
| 39 | _machine_restart = (void *) do_machine_quiesce; | 41 | if (_machine_restart != (void *) do_machine_quiesce) { |
| 40 | _machine_halt = do_machine_quiesce; | 42 | old_machine_restart = _machine_restart; |
| 41 | _machine_power_off = do_machine_quiesce; | 43 | old_machine_halt = _machine_halt; |
| 44 | old_machine_power_off = _machine_power_off; | ||
| 45 | _machine_restart = (void *) do_machine_quiesce; | ||
| 46 | _machine_halt = do_machine_quiesce; | ||
| 47 | _machine_power_off = do_machine_quiesce; | ||
| 48 | } | ||
| 42 | ctrl_alt_del(); | 49 | ctrl_alt_del(); |
| 43 | } | 50 | } |
| 44 | 51 | ||
| 52 | /* Undo machine restart/halt/power_off modification on resume */ | ||
| 53 | static void sclp_quiesce_pm_event(struct sclp_register *reg, | ||
| 54 | enum sclp_pm_event sclp_pm_event) | ||
| 55 | { | ||
| 56 | switch (sclp_pm_event) { | ||
| 57 | case SCLP_PM_EVENT_RESTORE: | ||
| 58 | if (old_machine_restart) { | ||
| 59 | _machine_restart = old_machine_restart; | ||
| 60 | _machine_halt = old_machine_halt; | ||
| 61 | _machine_power_off = old_machine_power_off; | ||
| 62 | old_machine_restart = NULL; | ||
| 63 | old_machine_halt = NULL; | ||
| 64 | old_machine_power_off = NULL; | ||
| 65 | } | ||
| 66 | break; | ||
| 67 | case SCLP_PM_EVENT_FREEZE: | ||
| 68 | case SCLP_PM_EVENT_THAW: | ||
| 69 | break; | ||
| 70 | } | ||
| 71 | } | ||
| 72 | |||
| 45 | static struct sclp_register sclp_quiesce_event = { | 73 | static struct sclp_register sclp_quiesce_event = { |
| 46 | .receive_mask = EVTYP_SIGQUIESCE_MASK, | 74 | .receive_mask = EVTYP_SIGQUIESCE_MASK, |
| 47 | .receiver_fn = sclp_quiesce_handler | 75 | .receiver_fn = sclp_quiesce_handler, |
| 76 | .pm_event_fn = sclp_quiesce_pm_event | ||
| 48 | }; | 77 | }; |
| 49 | 78 | ||
| 50 | /* Initialize quiesce driver. */ | 79 | /* Initialize quiesce driver. */ |
| 51 | static int __init | 80 | static int __init sclp_quiesce_init(void) |
| 52 | sclp_quiesce_init(void) | ||
| 53 | { | 81 | { |
| 54 | return sclp_register(&sclp_quiesce_event); | 82 | return sclp_register(&sclp_quiesce_event); |
| 55 | } | 83 | } |
diff --git a/drivers/scsi/bfa/bfad_fwimg.c b/drivers/scsi/bfa/bfad_fwimg.c index b2f6949bc8d3..bd34b0db2d6b 100644 --- a/drivers/scsi/bfa/bfad_fwimg.c +++ b/drivers/scsi/bfa/bfad_fwimg.c | |||
| @@ -41,6 +41,8 @@ u32 *bfi_image_cb; | |||
| 41 | 41 | ||
| 42 | #define BFAD_FW_FILE_CT "ctfw.bin" | 42 | #define BFAD_FW_FILE_CT "ctfw.bin" |
| 43 | #define BFAD_FW_FILE_CB "cbfw.bin" | 43 | #define BFAD_FW_FILE_CB "cbfw.bin" |
| 44 | MODULE_FIRMWARE(BFAD_FW_FILE_CT); | ||
| 45 | MODULE_FIRMWARE(BFAD_FW_FILE_CB); | ||
| 44 | 46 | ||
| 45 | u32 * | 47 | u32 * |
| 46 | bfad_read_firmware(struct pci_dev *pdev, u32 **bfi_image, | 48 | bfad_read_firmware(struct pci_dev *pdev, u32 **bfi_image, |
diff --git a/drivers/scsi/bfa/bfad_im.c b/drivers/scsi/bfa/bfad_im.c index 158c99243c08..55d012a9a668 100644 --- a/drivers/scsi/bfa/bfad_im.c +++ b/drivers/scsi/bfa/bfad_im.c | |||
| @@ -948,7 +948,7 @@ bfad_os_fc_host_init(struct bfad_im_port_s *im_port) | |||
| 948 | if (bfad_supported_fc4s & (BFA_PORT_ROLE_FCP_IM | BFA_PORT_ROLE_FCP_TM)) | 948 | if (bfad_supported_fc4s & (BFA_PORT_ROLE_FCP_IM | BFA_PORT_ROLE_FCP_TM)) |
| 949 | /* For FCP type 0x08 */ | 949 | /* For FCP type 0x08 */ |
| 950 | fc_host_supported_fc4s(host)[2] = 1; | 950 | fc_host_supported_fc4s(host)[2] = 1; |
| 951 | if (bfad_supported_fc4s | BFA_PORT_ROLE_FCP_IPFC) | 951 | if (bfad_supported_fc4s & BFA_PORT_ROLE_FCP_IPFC) |
| 952 | /* For LLC/SNAP type 0x05 */ | 952 | /* For LLC/SNAP type 0x05 */ |
| 953 | fc_host_supported_fc4s(host)[3] = 0x20; | 953 | fc_host_supported_fc4s(host)[3] = 0x20; |
| 954 | /* For fibre channel services type 0x20 */ | 954 | /* For fibre channel services type 0x20 */ |
diff --git a/drivers/scsi/gdth.c b/drivers/scsi/gdth.c index 185e6bc4dd40..9e8fce0f0c1b 100644 --- a/drivers/scsi/gdth.c +++ b/drivers/scsi/gdth.c | |||
| @@ -2900,7 +2900,7 @@ static int gdth_read_event(gdth_ha_str *ha, int handle, gdth_evt_str *estr) | |||
| 2900 | eindex = handle; | 2900 | eindex = handle; |
| 2901 | estr->event_source = 0; | 2901 | estr->event_source = 0; |
| 2902 | 2902 | ||
| 2903 | if (eindex >= MAX_EVENTS) { | 2903 | if (eindex < 0 || eindex >= MAX_EVENTS) { |
| 2904 | spin_unlock_irqrestore(&ha->smp_lock, flags); | 2904 | spin_unlock_irqrestore(&ha->smp_lock, flags); |
| 2905 | return eindex; | 2905 | return eindex; |
| 2906 | } | 2906 | } |
diff --git a/drivers/scsi/hosts.c b/drivers/scsi/hosts.c index 5fd2da494d08..c968cc31cd86 100644 --- a/drivers/scsi/hosts.c +++ b/drivers/scsi/hosts.c | |||
| @@ -164,8 +164,8 @@ void scsi_remove_host(struct Scsi_Host *shost) | |||
| 164 | return; | 164 | return; |
| 165 | } | 165 | } |
| 166 | spin_unlock_irqrestore(shost->host_lock, flags); | 166 | spin_unlock_irqrestore(shost->host_lock, flags); |
| 167 | mutex_unlock(&shost->scan_mutex); | ||
| 168 | scsi_forget_host(shost); | 167 | scsi_forget_host(shost); |
| 168 | mutex_unlock(&shost->scan_mutex); | ||
| 169 | scsi_proc_host_rm(shost); | 169 | scsi_proc_host_rm(shost); |
| 170 | 170 | ||
| 171 | spin_lock_irqsave(shost->host_lock, flags); | 171 | spin_lock_irqsave(shost->host_lock, flags); |
diff --git a/drivers/scsi/ipr.c b/drivers/scsi/ipr.c index 5f045505a1f4..76d294fc7846 100644 --- a/drivers/scsi/ipr.c +++ b/drivers/scsi/ipr.c | |||
| @@ -4189,6 +4189,25 @@ static irqreturn_t ipr_handle_other_interrupt(struct ipr_ioa_cfg *ioa_cfg, | |||
| 4189 | } | 4189 | } |
| 4190 | 4190 | ||
| 4191 | /** | 4191 | /** |
| 4192 | * ipr_isr_eh - Interrupt service routine error handler | ||
| 4193 | * @ioa_cfg: ioa config struct | ||
| 4194 | * @msg: message to log | ||
| 4195 | * | ||
| 4196 | * Return value: | ||
| 4197 | * none | ||
| 4198 | **/ | ||
| 4199 | static void ipr_isr_eh(struct ipr_ioa_cfg *ioa_cfg, char *msg) | ||
| 4200 | { | ||
| 4201 | ioa_cfg->errors_logged++; | ||
| 4202 | dev_err(&ioa_cfg->pdev->dev, "%s\n", msg); | ||
| 4203 | |||
| 4204 | if (WAIT_FOR_DUMP == ioa_cfg->sdt_state) | ||
| 4205 | ioa_cfg->sdt_state = GET_DUMP; | ||
| 4206 | |||
| 4207 | ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE); | ||
| 4208 | } | ||
| 4209 | |||
| 4210 | /** | ||
| 4192 | * ipr_isr - Interrupt service routine | 4211 | * ipr_isr - Interrupt service routine |
| 4193 | * @irq: irq number | 4212 | * @irq: irq number |
| 4194 | * @devp: pointer to ioa config struct | 4213 | * @devp: pointer to ioa config struct |
| @@ -4203,6 +4222,7 @@ static irqreturn_t ipr_isr(int irq, void *devp) | |||
| 4203 | volatile u32 int_reg, int_mask_reg; | 4222 | volatile u32 int_reg, int_mask_reg; |
| 4204 | u32 ioasc; | 4223 | u32 ioasc; |
| 4205 | u16 cmd_index; | 4224 | u16 cmd_index; |
| 4225 | int num_hrrq = 0; | ||
| 4206 | struct ipr_cmnd *ipr_cmd; | 4226 | struct ipr_cmnd *ipr_cmd; |
| 4207 | irqreturn_t rc = IRQ_NONE; | 4227 | irqreturn_t rc = IRQ_NONE; |
| 4208 | 4228 | ||
| @@ -4233,13 +4253,7 @@ static irqreturn_t ipr_isr(int irq, void *devp) | |||
| 4233 | IPR_HRRQ_REQ_RESP_HANDLE_MASK) >> IPR_HRRQ_REQ_RESP_HANDLE_SHIFT; | 4253 | IPR_HRRQ_REQ_RESP_HANDLE_MASK) >> IPR_HRRQ_REQ_RESP_HANDLE_SHIFT; |
| 4234 | 4254 | ||
| 4235 | if (unlikely(cmd_index >= IPR_NUM_CMD_BLKS)) { | 4255 | if (unlikely(cmd_index >= IPR_NUM_CMD_BLKS)) { |
| 4236 | ioa_cfg->errors_logged++; | 4256 | ipr_isr_eh(ioa_cfg, "Invalid response handle from IOA"); |
| 4237 | dev_err(&ioa_cfg->pdev->dev, "Invalid response handle from IOA\n"); | ||
| 4238 | |||
| 4239 | if (WAIT_FOR_DUMP == ioa_cfg->sdt_state) | ||
| 4240 | ioa_cfg->sdt_state = GET_DUMP; | ||
| 4241 | |||
| 4242 | ipr_initiate_ioa_reset(ioa_cfg, IPR_SHUTDOWN_NONE); | ||
| 4243 | spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags); | 4257 | spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags); |
| 4244 | return IRQ_HANDLED; | 4258 | return IRQ_HANDLED; |
| 4245 | } | 4259 | } |
| @@ -4266,8 +4280,18 @@ static irqreturn_t ipr_isr(int irq, void *devp) | |||
| 4266 | 4280 | ||
| 4267 | if (ipr_cmd != NULL) { | 4281 | if (ipr_cmd != NULL) { |
| 4268 | /* Clear the PCI interrupt */ | 4282 | /* Clear the PCI interrupt */ |
| 4269 | writel(IPR_PCII_HRRQ_UPDATED, ioa_cfg->regs.clr_interrupt_reg); | 4283 | do { |
| 4270 | int_reg = readl(ioa_cfg->regs.sense_interrupt_reg) & ~int_mask_reg; | 4284 | writel(IPR_PCII_HRRQ_UPDATED, ioa_cfg->regs.clr_interrupt_reg); |
| 4285 | int_reg = readl(ioa_cfg->regs.sense_interrupt_reg) & ~int_mask_reg; | ||
| 4286 | } while (int_reg & IPR_PCII_HRRQ_UPDATED && | ||
| 4287 | num_hrrq++ < IPR_MAX_HRRQ_RETRIES); | ||
| 4288 | |||
| 4289 | if (int_reg & IPR_PCII_HRRQ_UPDATED) { | ||
| 4290 | ipr_isr_eh(ioa_cfg, "Error clearing HRRQ"); | ||
| 4291 | spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags); | ||
| 4292 | return IRQ_HANDLED; | ||
| 4293 | } | ||
| 4294 | |||
| 4271 | } else | 4295 | } else |
| 4272 | break; | 4296 | break; |
| 4273 | } | 4297 | } |
diff --git a/drivers/scsi/ipr.h b/drivers/scsi/ipr.h index 163245a1c3e5..19bbcf39f0c9 100644 --- a/drivers/scsi/ipr.h +++ b/drivers/scsi/ipr.h | |||
| @@ -144,6 +144,7 @@ | |||
| 144 | #define IPR_IOA_MAX_SECTORS 32767 | 144 | #define IPR_IOA_MAX_SECTORS 32767 |
| 145 | #define IPR_VSET_MAX_SECTORS 512 | 145 | #define IPR_VSET_MAX_SECTORS 512 |
| 146 | #define IPR_MAX_CDB_LEN 16 | 146 | #define IPR_MAX_CDB_LEN 16 |
| 147 | #define IPR_MAX_HRRQ_RETRIES 3 | ||
| 147 | 148 | ||
| 148 | #define IPR_DEFAULT_BUS_WIDTH 16 | 149 | #define IPR_DEFAULT_BUS_WIDTH 16 |
| 149 | #define IPR_80MBs_SCSI_RATE ((80 * 10) / (IPR_DEFAULT_BUS_WIDTH / 8)) | 150 | #define IPR_80MBs_SCSI_RATE ((80 * 10) / (IPR_DEFAULT_BUS_WIDTH / 8)) |
diff --git a/drivers/scsi/libsas/sas_expander.c b/drivers/scsi/libsas/sas_expander.c index b3381959acce..33cf988c8c8a 100644 --- a/drivers/scsi/libsas/sas_expander.c +++ b/drivers/scsi/libsas/sas_expander.c | |||
| @@ -960,7 +960,6 @@ static int sas_ex_discover_dev(struct domain_device *dev, int phy_id) | |||
| 960 | 960 | ||
| 961 | } | 961 | } |
| 962 | } | 962 | } |
| 963 | res = 0; | ||
| 964 | } | 963 | } |
| 965 | 964 | ||
| 966 | return res; | 965 | return res; |
diff --git a/drivers/scsi/pmcraid.c b/drivers/scsi/pmcraid.c index f7c70e2a8224..0a97bc9074bb 100644 --- a/drivers/scsi/pmcraid.c +++ b/drivers/scsi/pmcraid.c | |||
| @@ -1071,7 +1071,7 @@ static struct pmcraid_cmd *pmcraid_init_hcam | |||
| 1071 | 1071 | ||
| 1072 | ioarcb->data_transfer_length = cpu_to_le32(rcb_size); | 1072 | ioarcb->data_transfer_length = cpu_to_le32(rcb_size); |
| 1073 | 1073 | ||
| 1074 | ioadl[0].flags |= cpu_to_le32(IOADL_FLAGS_READ_LAST); | 1074 | ioadl[0].flags |= IOADL_FLAGS_READ_LAST; |
| 1075 | ioadl[0].data_len = cpu_to_le32(rcb_size); | 1075 | ioadl[0].data_len = cpu_to_le32(rcb_size); |
| 1076 | ioadl[0].address = cpu_to_le32(dma); | 1076 | ioadl[0].address = cpu_to_le32(dma); |
| 1077 | 1077 | ||
| @@ -2251,7 +2251,7 @@ static void pmcraid_request_sense(struct pmcraid_cmd *cmd) | |||
| 2251 | 2251 | ||
| 2252 | ioadl->address = cpu_to_le64(cmd->sense_buffer_dma); | 2252 | ioadl->address = cpu_to_le64(cmd->sense_buffer_dma); |
| 2253 | ioadl->data_len = cpu_to_le32(SCSI_SENSE_BUFFERSIZE); | 2253 | ioadl->data_len = cpu_to_le32(SCSI_SENSE_BUFFERSIZE); |
| 2254 | ioadl->flags = cpu_to_le32(IOADL_FLAGS_LAST_DESC); | 2254 | ioadl->flags = IOADL_FLAGS_LAST_DESC; |
| 2255 | 2255 | ||
| 2256 | /* request sense might be called as part of error response processing | 2256 | /* request sense might be called as part of error response processing |
| 2257 | * which runs in tasklets context. It is possible that mid-layer might | 2257 | * which runs in tasklets context. It is possible that mid-layer might |
| @@ -3017,7 +3017,7 @@ static int pmcraid_build_ioadl( | |||
| 3017 | ioadl[i].flags = 0; | 3017 | ioadl[i].flags = 0; |
| 3018 | } | 3018 | } |
| 3019 | /* setup last descriptor */ | 3019 | /* setup last descriptor */ |
| 3020 | ioadl[i - 1].flags = cpu_to_le32(IOADL_FLAGS_LAST_DESC); | 3020 | ioadl[i - 1].flags = IOADL_FLAGS_LAST_DESC; |
| 3021 | 3021 | ||
| 3022 | return 0; | 3022 | return 0; |
| 3023 | } | 3023 | } |
| @@ -3387,7 +3387,7 @@ static int pmcraid_build_passthrough_ioadls( | |||
| 3387 | } | 3387 | } |
| 3388 | 3388 | ||
| 3389 | /* setup the last descriptor */ | 3389 | /* setup the last descriptor */ |
| 3390 | ioadl[i - 1].flags = cpu_to_le32(IOADL_FLAGS_LAST_DESC); | 3390 | ioadl[i - 1].flags = IOADL_FLAGS_LAST_DESC; |
| 3391 | 3391 | ||
| 3392 | return 0; | 3392 | return 0; |
| 3393 | } | 3393 | } |
| @@ -5314,7 +5314,7 @@ static void pmcraid_querycfg(struct pmcraid_cmd *cmd) | |||
| 5314 | cpu_to_le32(sizeof(struct pmcraid_config_table)); | 5314 | cpu_to_le32(sizeof(struct pmcraid_config_table)); |
| 5315 | 5315 | ||
| 5316 | ioadl = &(ioarcb->add_data.u.ioadl[0]); | 5316 | ioadl = &(ioarcb->add_data.u.ioadl[0]); |
| 5317 | ioadl->flags = cpu_to_le32(IOADL_FLAGS_LAST_DESC); | 5317 | ioadl->flags = IOADL_FLAGS_LAST_DESC; |
| 5318 | ioadl->address = cpu_to_le64(pinstance->cfg_table_bus_addr); | 5318 | ioadl->address = cpu_to_le64(pinstance->cfg_table_bus_addr); |
| 5319 | ioadl->data_len = cpu_to_le32(sizeof(struct pmcraid_config_table)); | 5319 | ioadl->data_len = cpu_to_le32(sizeof(struct pmcraid_config_table)); |
| 5320 | 5320 | ||
diff --git a/drivers/scsi/scsi_scan.c b/drivers/scsi/scsi_scan.c index 0547a7f44d42..47291bcff0d5 100644 --- a/drivers/scsi/scsi_scan.c +++ b/drivers/scsi/scsi_scan.c | |||
| @@ -952,16 +952,6 @@ static int scsi_add_lun(struct scsi_device *sdev, unsigned char *inq_result, | |||
| 952 | return SCSI_SCAN_LUN_PRESENT; | 952 | return SCSI_SCAN_LUN_PRESENT; |
| 953 | } | 953 | } |
| 954 | 954 | ||
| 955 | static inline void scsi_destroy_sdev(struct scsi_device *sdev) | ||
| 956 | { | ||
| 957 | scsi_device_set_state(sdev, SDEV_DEL); | ||
| 958 | if (sdev->host->hostt->slave_destroy) | ||
| 959 | sdev->host->hostt->slave_destroy(sdev); | ||
| 960 | transport_destroy_device(&sdev->sdev_gendev); | ||
| 961 | put_device(&sdev->sdev_dev); | ||
| 962 | put_device(&sdev->sdev_gendev); | ||
| 963 | } | ||
| 964 | |||
| 965 | #ifdef CONFIG_SCSI_LOGGING | 955 | #ifdef CONFIG_SCSI_LOGGING |
| 966 | /** | 956 | /** |
| 967 | * scsi_inq_str - print INQUIRY data from min to max index, strip trailing whitespace | 957 | * scsi_inq_str - print INQUIRY data from min to max index, strip trailing whitespace |
| @@ -1139,7 +1129,7 @@ static int scsi_probe_and_add_lun(struct scsi_target *starget, | |||
| 1139 | } | 1129 | } |
| 1140 | } | 1130 | } |
| 1141 | } else | 1131 | } else |
| 1142 | scsi_destroy_sdev(sdev); | 1132 | __scsi_remove_device(sdev); |
| 1143 | out: | 1133 | out: |
| 1144 | return res; | 1134 | return res; |
| 1145 | } | 1135 | } |
| @@ -1500,7 +1490,7 @@ static int scsi_report_lun_scan(struct scsi_target *starget, int bflags, | |||
| 1500 | /* | 1490 | /* |
| 1501 | * the sdev we used didn't appear in the report luns scan | 1491 | * the sdev we used didn't appear in the report luns scan |
| 1502 | */ | 1492 | */ |
| 1503 | scsi_destroy_sdev(sdev); | 1493 | __scsi_remove_device(sdev); |
| 1504 | return ret; | 1494 | return ret; |
| 1505 | } | 1495 | } |
| 1506 | 1496 | ||
| @@ -1710,7 +1700,7 @@ static void scsi_sysfs_add_devices(struct Scsi_Host *shost) | |||
| 1710 | shost_for_each_device(sdev, shost) { | 1700 | shost_for_each_device(sdev, shost) { |
| 1711 | if (!scsi_host_scan_allowed(shost) || | 1701 | if (!scsi_host_scan_allowed(shost) || |
| 1712 | scsi_sysfs_add_sdev(sdev) != 0) | 1702 | scsi_sysfs_add_sdev(sdev) != 0) |
| 1713 | scsi_destroy_sdev(sdev); | 1703 | __scsi_remove_device(sdev); |
| 1714 | } | 1704 | } |
| 1715 | } | 1705 | } |
| 1716 | 1706 | ||
| @@ -1943,7 +1933,7 @@ void scsi_free_host_dev(struct scsi_device *sdev) | |||
| 1943 | { | 1933 | { |
| 1944 | BUG_ON(sdev->id != sdev->host->this_id); | 1934 | BUG_ON(sdev->id != sdev->host->this_id); |
| 1945 | 1935 | ||
| 1946 | scsi_destroy_sdev(sdev); | 1936 | __scsi_remove_device(sdev); |
| 1947 | } | 1937 | } |
| 1948 | EXPORT_SYMBOL(scsi_free_host_dev); | 1938 | EXPORT_SYMBOL(scsi_free_host_dev); |
| 1949 | 1939 | ||
diff --git a/drivers/scsi/scsi_sysfs.c b/drivers/scsi/scsi_sysfs.c index 5c7eb63a19d1..392d8db33905 100644 --- a/drivers/scsi/scsi_sysfs.c +++ b/drivers/scsi/scsi_sysfs.c | |||
| @@ -854,82 +854,73 @@ int scsi_sysfs_add_sdev(struct scsi_device *sdev) | |||
| 854 | transport_configure_device(&starget->dev); | 854 | transport_configure_device(&starget->dev); |
| 855 | error = device_add(&sdev->sdev_gendev); | 855 | error = device_add(&sdev->sdev_gendev); |
| 856 | if (error) { | 856 | if (error) { |
| 857 | put_device(sdev->sdev_gendev.parent); | ||
| 858 | printk(KERN_INFO "error 1\n"); | 857 | printk(KERN_INFO "error 1\n"); |
| 859 | return error; | 858 | goto out_remove; |
| 860 | } | 859 | } |
| 861 | error = device_add(&sdev->sdev_dev); | 860 | error = device_add(&sdev->sdev_dev); |
| 862 | if (error) { | 861 | if (error) { |
| 863 | printk(KERN_INFO "error 2\n"); | 862 | printk(KERN_INFO "error 2\n"); |
| 864 | goto clean_device; | 863 | device_del(&sdev->sdev_gendev); |
| 864 | goto out_remove; | ||
| 865 | } | 865 | } |
| 866 | transport_add_device(&sdev->sdev_gendev); | ||
| 867 | sdev->is_visible = 1; | ||
| 866 | 868 | ||
| 867 | /* create queue files, which may be writable, depending on the host */ | 869 | /* create queue files, which may be writable, depending on the host */ |
| 868 | if (sdev->host->hostt->change_queue_depth) | 870 | if (sdev->host->hostt->change_queue_depth) |
| 869 | error = device_create_file(&sdev->sdev_gendev, &sdev_attr_queue_depth_rw); | 871 | error = device_create_file(&sdev->sdev_gendev, &sdev_attr_queue_depth_rw); |
| 870 | else | 872 | else |
| 871 | error = device_create_file(&sdev->sdev_gendev, &dev_attr_queue_depth); | 873 | error = device_create_file(&sdev->sdev_gendev, &dev_attr_queue_depth); |
| 872 | if (error) { | 874 | if (error) |
| 873 | __scsi_remove_device(sdev); | 875 | goto out_remove; |
| 874 | goto out; | 876 | |
| 875 | } | ||
| 876 | if (sdev->host->hostt->change_queue_type) | 877 | if (sdev->host->hostt->change_queue_type) |
| 877 | error = device_create_file(&sdev->sdev_gendev, &sdev_attr_queue_type_rw); | 878 | error = device_create_file(&sdev->sdev_gendev, &sdev_attr_queue_type_rw); |
| 878 | else | 879 | else |
| 879 | error = device_create_file(&sdev->sdev_gendev, &dev_attr_queue_type); | 880 | error = device_create_file(&sdev->sdev_gendev, &dev_attr_queue_type); |
| 880 | if (error) { | 881 | if (error) |
| 881 | __scsi_remove_device(sdev); | 882 | goto out_remove; |
| 882 | goto out; | ||
| 883 | } | ||
| 884 | 883 | ||
| 885 | error = bsg_register_queue(rq, &sdev->sdev_gendev, NULL, NULL); | 884 | error = bsg_register_queue(rq, &sdev->sdev_gendev, NULL, NULL); |
| 886 | 885 | ||
| 887 | if (error) | 886 | if (error) |
| 887 | /* we're treating error on bsg register as non-fatal, | ||
| 888 | * so pretend nothing went wrong */ | ||
| 888 | sdev_printk(KERN_INFO, sdev, | 889 | sdev_printk(KERN_INFO, sdev, |
| 889 | "Failed to register bsg queue, errno=%d\n", error); | 890 | "Failed to register bsg queue, errno=%d\n", error); |
| 890 | 891 | ||
| 891 | /* we're treating error on bsg register as non-fatal, so pretend | ||
| 892 | * nothing went wrong */ | ||
| 893 | error = 0; | ||
| 894 | |||
| 895 | /* add additional host specific attributes */ | 892 | /* add additional host specific attributes */ |
| 896 | if (sdev->host->hostt->sdev_attrs) { | 893 | if (sdev->host->hostt->sdev_attrs) { |
| 897 | for (i = 0; sdev->host->hostt->sdev_attrs[i]; i++) { | 894 | for (i = 0; sdev->host->hostt->sdev_attrs[i]; i++) { |
| 898 | error = device_create_file(&sdev->sdev_gendev, | 895 | error = device_create_file(&sdev->sdev_gendev, |
| 899 | sdev->host->hostt->sdev_attrs[i]); | 896 | sdev->host->hostt->sdev_attrs[i]); |
| 900 | if (error) { | 897 | if (error) |
| 901 | __scsi_remove_device(sdev); | 898 | goto out_remove; |
| 902 | goto out; | ||
| 903 | } | ||
| 904 | } | 899 | } |
| 905 | } | 900 | } |
| 906 | 901 | ||
| 907 | transport_add_device(&sdev->sdev_gendev); | 902 | return 0; |
| 908 | out: | ||
| 909 | return error; | ||
| 910 | |||
| 911 | clean_device: | ||
| 912 | scsi_device_set_state(sdev, SDEV_CANCEL); | ||
| 913 | |||
| 914 | device_del(&sdev->sdev_gendev); | ||
| 915 | transport_destroy_device(&sdev->sdev_gendev); | ||
| 916 | put_device(&sdev->sdev_dev); | ||
| 917 | put_device(&sdev->sdev_gendev); | ||
| 918 | 903 | ||
| 904 | out_remove: | ||
| 905 | __scsi_remove_device(sdev); | ||
| 919 | return error; | 906 | return error; |
| 907 | |||
| 920 | } | 908 | } |
| 921 | 909 | ||
| 922 | void __scsi_remove_device(struct scsi_device *sdev) | 910 | void __scsi_remove_device(struct scsi_device *sdev) |
| 923 | { | 911 | { |
| 924 | struct device *dev = &sdev->sdev_gendev; | 912 | struct device *dev = &sdev->sdev_gendev; |
| 925 | 913 | ||
| 926 | if (scsi_device_set_state(sdev, SDEV_CANCEL) != 0) | 914 | if (sdev->is_visible) { |
| 927 | return; | 915 | if (scsi_device_set_state(sdev, SDEV_CANCEL) != 0) |
| 916 | return; | ||
| 928 | 917 | ||
| 929 | bsg_unregister_queue(sdev->request_queue); | 918 | bsg_unregister_queue(sdev->request_queue); |
| 930 | device_unregister(&sdev->sdev_dev); | 919 | device_unregister(&sdev->sdev_dev); |
| 931 | transport_remove_device(dev); | 920 | transport_remove_device(dev); |
| 932 | device_del(dev); | 921 | device_del(dev); |
| 922 | } else | ||
| 923 | put_device(&sdev->sdev_dev); | ||
| 933 | scsi_device_set_state(sdev, SDEV_DEL); | 924 | scsi_device_set_state(sdev, SDEV_DEL); |
| 934 | if (sdev->host->hostt->slave_destroy) | 925 | if (sdev->host->hostt->slave_destroy) |
| 935 | sdev->host->hostt->slave_destroy(sdev); | 926 | sdev->host->hostt->slave_destroy(sdev); |
diff --git a/drivers/scsi/scsi_transport_fc.c b/drivers/scsi/scsi_transport_fc.c index a67fed10598a..c6f70dae9b2e 100644 --- a/drivers/scsi/scsi_transport_fc.c +++ b/drivers/scsi/scsi_transport_fc.c | |||
| @@ -3656,6 +3656,7 @@ fc_bsg_host_dispatch(struct request_queue *q, struct Scsi_Host *shost, | |||
| 3656 | fail_host_msg: | 3656 | fail_host_msg: |
| 3657 | /* return the errno failure code as the only status */ | 3657 | /* return the errno failure code as the only status */ |
| 3658 | BUG_ON(job->reply_len < sizeof(uint32_t)); | 3658 | BUG_ON(job->reply_len < sizeof(uint32_t)); |
| 3659 | job->reply->reply_payload_rcv_len = 0; | ||
| 3659 | job->reply->result = ret; | 3660 | job->reply->result = ret; |
| 3660 | job->reply_len = sizeof(uint32_t); | 3661 | job->reply_len = sizeof(uint32_t); |
| 3661 | fc_bsg_jobdone(job); | 3662 | fc_bsg_jobdone(job); |
| @@ -3741,6 +3742,7 @@ check_bidi: | |||
| 3741 | fail_rport_msg: | 3742 | fail_rport_msg: |
| 3742 | /* return the errno failure code as the only status */ | 3743 | /* return the errno failure code as the only status */ |
| 3743 | BUG_ON(job->reply_len < sizeof(uint32_t)); | 3744 | BUG_ON(job->reply_len < sizeof(uint32_t)); |
| 3745 | job->reply->reply_payload_rcv_len = 0; | ||
| 3744 | job->reply->result = ret; | 3746 | job->reply->result = ret; |
| 3745 | job->reply_len = sizeof(uint32_t); | 3747 | job->reply_len = sizeof(uint32_t); |
| 3746 | fc_bsg_jobdone(job); | 3748 | fc_bsg_jobdone(job); |
| @@ -3797,6 +3799,7 @@ fc_bsg_request_handler(struct request_queue *q, struct Scsi_Host *shost, | |||
| 3797 | /* check if we have the msgcode value at least */ | 3799 | /* check if we have the msgcode value at least */ |
| 3798 | if (job->request_len < sizeof(uint32_t)) { | 3800 | if (job->request_len < sizeof(uint32_t)) { |
| 3799 | BUG_ON(job->reply_len < sizeof(uint32_t)); | 3801 | BUG_ON(job->reply_len < sizeof(uint32_t)); |
| 3802 | job->reply->reply_payload_rcv_len = 0; | ||
| 3800 | job->reply->result = -ENOMSG; | 3803 | job->reply->result = -ENOMSG; |
| 3801 | job->reply_len = sizeof(uint32_t); | 3804 | job->reply_len = sizeof(uint32_t); |
| 3802 | fc_bsg_jobdone(job); | 3805 | fc_bsg_jobdone(job); |
diff --git a/drivers/scsi/sd_dif.c b/drivers/scsi/sd_dif.c index 88da97745710..84be62149c6c 100644 --- a/drivers/scsi/sd_dif.c +++ b/drivers/scsi/sd_dif.c | |||
| @@ -418,7 +418,7 @@ error: | |||
| 418 | __func__, virt, phys, be32_to_cpu(sdt->ref_tag), | 418 | __func__, virt, phys, be32_to_cpu(sdt->ref_tag), |
| 419 | be16_to_cpu(sdt->app_tag)); | 419 | be16_to_cpu(sdt->app_tag)); |
| 420 | 420 | ||
| 421 | return -EIO; | 421 | return -EILSEQ; |
| 422 | } | 422 | } |
| 423 | 423 | ||
| 424 | /* | 424 | /* |
diff --git a/drivers/serial/8250.c b/drivers/serial/8250.c index b1ae774016f1..737b4c960971 100644 --- a/drivers/serial/8250.c +++ b/drivers/serial/8250.c | |||
| @@ -1089,7 +1089,7 @@ static void autoconfig(struct uart_8250_port *up, unsigned int probeflags) | |||
| 1089 | if (!up->port.iobase && !up->port.mapbase && !up->port.membase) | 1089 | if (!up->port.iobase && !up->port.mapbase && !up->port.membase) |
| 1090 | return; | 1090 | return; |
| 1091 | 1091 | ||
| 1092 | DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04x, 0x%p): ", | 1092 | DEBUG_AUTOCONF("ttyS%d: autoconf (0x%04lx, 0x%p): ", |
| 1093 | serial_index(&up->port), up->port.iobase, up->port.membase); | 1093 | serial_index(&up->port), up->port.iobase, up->port.membase); |
| 1094 | 1094 | ||
| 1095 | /* | 1095 | /* |
diff --git a/drivers/serial/8250_pci.c b/drivers/serial/8250_pci.c index 42e8550cd2b6..b28af13c45a1 100644 --- a/drivers/serial/8250_pci.c +++ b/drivers/serial/8250_pci.c | |||
| @@ -2383,7 +2383,7 @@ pciserial_init_ports(struct pci_dev *dev, const struct pciserial_board *board) | |||
| 2383 | break; | 2383 | break; |
| 2384 | 2384 | ||
| 2385 | #ifdef SERIAL_DEBUG_PCI | 2385 | #ifdef SERIAL_DEBUG_PCI |
| 2386 | printk(KERN_DEBUG "Setup PCI port: port %x, irq %d, type %d\n", | 2386 | printk(KERN_DEBUG "Setup PCI port: port %lx, irq %d, type %d\n", |
| 2387 | serial_port.iobase, serial_port.irq, serial_port.iotype); | 2387 | serial_port.iobase, serial_port.irq, serial_port.iotype); |
| 2388 | #endif | 2388 | #endif |
| 2389 | 2389 | ||
| @@ -3139,6 +3139,12 @@ static struct pci_device_id serial_pci_tbl[] = { | |||
| 3139 | { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_QUATRO_B, | 3139 | { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_QUATRO_B, |
| 3140 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, | 3140 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, |
| 3141 | pbn_b0_bt_2_115200 }, | 3141 | pbn_b0_bt_2_115200 }, |
| 3142 | { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_QUATTRO_A, | ||
| 3143 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, | ||
| 3144 | pbn_b0_bt_2_115200 }, | ||
| 3145 | { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_QUATTRO_B, | ||
| 3146 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, | ||
| 3147 | pbn_b0_bt_2_115200 }, | ||
| 3142 | { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_OCTO_A, | 3148 | { PCI_VENDOR_ID_LAVA, PCI_DEVICE_ID_LAVA_OCTO_A, |
| 3143 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, | 3149 | PCI_ANY_ID, PCI_ANY_ID, 0, 0, |
| 3144 | pbn_b0_bt_4_460800 }, | 3150 | pbn_b0_bt_4_460800 }, |
diff --git a/drivers/serial/bcm63xx_uart.c b/drivers/serial/bcm63xx_uart.c index beddaa6e9069..37ad0c449937 100644 --- a/drivers/serial/bcm63xx_uart.c +++ b/drivers/serial/bcm63xx_uart.c | |||
| @@ -242,7 +242,7 @@ static void bcm_uart_do_rx(struct uart_port *port) | |||
| 242 | * higher than fifo size anyway since we're much faster than | 242 | * higher than fifo size anyway since we're much faster than |
| 243 | * serial port */ | 243 | * serial port */ |
| 244 | max_count = 32; | 244 | max_count = 32; |
| 245 | tty = port->info->port.tty; | 245 | tty = port->state->port.tty; |
| 246 | do { | 246 | do { |
| 247 | unsigned int iestat, c, cstat; | 247 | unsigned int iestat, c, cstat; |
| 248 | char flag; | 248 | char flag; |
| @@ -318,7 +318,7 @@ static void bcm_uart_do_tx(struct uart_port *port) | |||
| 318 | return; | 318 | return; |
| 319 | } | 319 | } |
| 320 | 320 | ||
| 321 | xmit = &port->info->xmit; | 321 | xmit = &port->state->xmit; |
| 322 | if (uart_circ_empty(xmit)) | 322 | if (uart_circ_empty(xmit)) |
| 323 | goto txq_empty; | 323 | goto txq_empty; |
| 324 | 324 | ||
diff --git a/drivers/serial/of_serial.c b/drivers/serial/of_serial.c index 02406ba6da1c..cdf172eda2e3 100644 --- a/drivers/serial/of_serial.c +++ b/drivers/serial/of_serial.c | |||
| @@ -161,6 +161,7 @@ static int of_platform_serial_remove(struct of_device *ofdev) | |||
| 161 | static struct of_device_id __devinitdata of_platform_serial_table[] = { | 161 | static struct of_device_id __devinitdata of_platform_serial_table[] = { |
| 162 | { .type = "serial", .compatible = "ns8250", .data = (void *)PORT_8250, }, | 162 | { .type = "serial", .compatible = "ns8250", .data = (void *)PORT_8250, }, |
| 163 | { .type = "serial", .compatible = "ns16450", .data = (void *)PORT_16450, }, | 163 | { .type = "serial", .compatible = "ns16450", .data = (void *)PORT_16450, }, |
| 164 | { .type = "serial", .compatible = "ns16550a", .data = (void *)PORT_16550A, }, | ||
| 164 | { .type = "serial", .compatible = "ns16550", .data = (void *)PORT_16550, }, | 165 | { .type = "serial", .compatible = "ns16550", .data = (void *)PORT_16550, }, |
| 165 | { .type = "serial", .compatible = "ns16750", .data = (void *)PORT_16750, }, | 166 | { .type = "serial", .compatible = "ns16750", .data = (void *)PORT_16750, }, |
| 166 | { .type = "serial", .compatible = "ns16850", .data = (void *)PORT_16850, }, | 167 | { .type = "serial", .compatible = "ns16850", .data = (void *)PORT_16850, }, |
diff --git a/drivers/serial/suncore.c b/drivers/serial/suncore.c index a2d4a19550ab..ed7d958b0a01 100644 --- a/drivers/serial/suncore.c +++ b/drivers/serial/suncore.c | |||
| @@ -53,20 +53,21 @@ void sunserial_unregister_minors(struct uart_driver *drv, int count) | |||
| 53 | EXPORT_SYMBOL(sunserial_unregister_minors); | 53 | EXPORT_SYMBOL(sunserial_unregister_minors); |
| 54 | 54 | ||
| 55 | int sunserial_console_match(struct console *con, struct device_node *dp, | 55 | int sunserial_console_match(struct console *con, struct device_node *dp, |
| 56 | struct uart_driver *drv, int line) | 56 | struct uart_driver *drv, int line, bool ignore_line) |
| 57 | { | 57 | { |
| 58 | int off; | ||
| 59 | |||
| 60 | if (!con || of_console_device != dp) | 58 | if (!con || of_console_device != dp) |
| 61 | return 0; | 59 | return 0; |
| 62 | 60 | ||
| 63 | off = 0; | 61 | if (!ignore_line) { |
| 64 | if (of_console_options && | 62 | int off = 0; |
| 65 | *of_console_options == 'b') | ||
| 66 | off = 1; | ||
| 67 | 63 | ||
| 68 | if ((line & 1) != off) | 64 | if (of_console_options && |
| 69 | return 0; | 65 | *of_console_options == 'b') |
| 66 | off = 1; | ||
| 67 | |||
| 68 | if ((line & 1) != off) | ||
| 69 | return 0; | ||
| 70 | } | ||
| 70 | 71 | ||
| 71 | con->index = line; | 72 | con->index = line; |
| 72 | drv->cons = con; | 73 | drv->cons = con; |
| @@ -76,23 +77,24 @@ int sunserial_console_match(struct console *con, struct device_node *dp, | |||
| 76 | } | 77 | } |
| 77 | EXPORT_SYMBOL(sunserial_console_match); | 78 | EXPORT_SYMBOL(sunserial_console_match); |
| 78 | 79 | ||
| 79 | void | 80 | void sunserial_console_termios(struct console *con, struct device_node *uart_dp) |
| 80 | sunserial_console_termios(struct console *con) | ||
| 81 | { | 81 | { |
| 82 | struct device_node *dp; | 82 | const char *mode, *s; |
| 83 | const char *od, *mode, *s; | ||
| 84 | char mode_prop[] = "ttyX-mode"; | 83 | char mode_prop[] = "ttyX-mode"; |
| 85 | int baud, bits, stop, cflag; | 84 | int baud, bits, stop, cflag; |
| 86 | char parity; | 85 | char parity; |
| 87 | 86 | ||
| 88 | dp = of_find_node_by_path("/options"); | 87 | if (!strcmp(uart_dp->name, "rsc") || |
| 89 | od = of_get_property(dp, "output-device", NULL); | 88 | !strcmp(uart_dp->name, "rsc-console") || |
| 90 | if (!strcmp(od, "rsc")) { | 89 | !strcmp(uart_dp->name, "rsc-control")) { |
| 91 | mode = of_get_property(of_console_device, | 90 | mode = of_get_property(uart_dp, |
| 92 | "ssp-console-modes", NULL); | 91 | "ssp-console-modes", NULL); |
| 93 | if (!mode) | 92 | if (!mode) |
| 94 | mode = "115200,8,n,1,-"; | 93 | mode = "115200,8,n,1,-"; |
| 94 | } else if (!strcmp(uart_dp->name, "lom-console")) { | ||
| 95 | mode = "9600,8,n,1,-"; | ||
| 95 | } else { | 96 | } else { |
| 97 | struct device_node *dp; | ||
| 96 | char c; | 98 | char c; |
| 97 | 99 | ||
| 98 | c = 'a'; | 100 | c = 'a'; |
| @@ -101,6 +103,7 @@ sunserial_console_termios(struct console *con) | |||
| 101 | 103 | ||
| 102 | mode_prop[3] = c; | 104 | mode_prop[3] = c; |
| 103 | 105 | ||
| 106 | dp = of_find_node_by_path("/options"); | ||
| 104 | mode = of_get_property(dp, mode_prop, NULL); | 107 | mode = of_get_property(dp, mode_prop, NULL); |
| 105 | if (!mode) | 108 | if (!mode) |
| 106 | mode = "9600,8,n,1,-"; | 109 | mode = "9600,8,n,1,-"; |
diff --git a/drivers/serial/suncore.h b/drivers/serial/suncore.h index 042668aa602e..db2057936c31 100644 --- a/drivers/serial/suncore.h +++ b/drivers/serial/suncore.h | |||
| @@ -26,7 +26,8 @@ extern int sunserial_register_minors(struct uart_driver *, int); | |||
| 26 | extern void sunserial_unregister_minors(struct uart_driver *, int); | 26 | extern void sunserial_unregister_minors(struct uart_driver *, int); |
| 27 | 27 | ||
| 28 | extern int sunserial_console_match(struct console *, struct device_node *, | 28 | extern int sunserial_console_match(struct console *, struct device_node *, |
| 29 | struct uart_driver *, int); | 29 | struct uart_driver *, int, bool); |
| 30 | extern void sunserial_console_termios(struct console *); | 30 | extern void sunserial_console_termios(struct console *, |
| 31 | struct device_node *); | ||
| 31 | 32 | ||
| 32 | #endif /* !(_SERIAL_SUN_H) */ | 33 | #endif /* !(_SERIAL_SUN_H) */ |
diff --git a/drivers/serial/sunhv.c b/drivers/serial/sunhv.c index d548652dee50..d14cca7fb88d 100644 --- a/drivers/serial/sunhv.c +++ b/drivers/serial/sunhv.c | |||
| @@ -566,7 +566,7 @@ static int __devinit hv_probe(struct of_device *op, const struct of_device_id *m | |||
| 566 | goto out_free_con_read_page; | 566 | goto out_free_con_read_page; |
| 567 | 567 | ||
| 568 | sunserial_console_match(&sunhv_console, op->node, | 568 | sunserial_console_match(&sunhv_console, op->node, |
| 569 | &sunhv_reg, port->line); | 569 | &sunhv_reg, port->line, false); |
| 570 | 570 | ||
| 571 | err = uart_add_one_port(&sunhv_reg, port); | 571 | err = uart_add_one_port(&sunhv_reg, port); |
| 572 | if (err) | 572 | if (err) |
diff --git a/drivers/serial/sunsab.c b/drivers/serial/sunsab.c index d1ad34128635..d514e28d0755 100644 --- a/drivers/serial/sunsab.c +++ b/drivers/serial/sunsab.c | |||
| @@ -883,7 +883,7 @@ static int sunsab_console_setup(struct console *con, char *options) | |||
| 883 | printk("Console: ttyS%d (SAB82532)\n", | 883 | printk("Console: ttyS%d (SAB82532)\n", |
| 884 | (sunsab_reg.minor - 64) + con->index); | 884 | (sunsab_reg.minor - 64) + con->index); |
| 885 | 885 | ||
| 886 | sunserial_console_termios(con); | 886 | sunserial_console_termios(con, to_of_device(up->port.dev)->node); |
| 887 | 887 | ||
| 888 | switch (con->cflag & CBAUD) { | 888 | switch (con->cflag & CBAUD) { |
| 889 | case B150: baud = 150; break; | 889 | case B150: baud = 150; break; |
| @@ -1027,10 +1027,12 @@ static int __devinit sab_probe(struct of_device *op, const struct of_device_id * | |||
| 1027 | goto out1; | 1027 | goto out1; |
| 1028 | 1028 | ||
| 1029 | sunserial_console_match(SUNSAB_CONSOLE(), op->node, | 1029 | sunserial_console_match(SUNSAB_CONSOLE(), op->node, |
| 1030 | &sunsab_reg, up[0].port.line); | 1030 | &sunsab_reg, up[0].port.line, |
| 1031 | false); | ||
| 1031 | 1032 | ||
| 1032 | sunserial_console_match(SUNSAB_CONSOLE(), op->node, | 1033 | sunserial_console_match(SUNSAB_CONSOLE(), op->node, |
| 1033 | &sunsab_reg, up[1].port.line); | 1034 | &sunsab_reg, up[1].port.line, |
| 1035 | false); | ||
| 1034 | 1036 | ||
| 1035 | err = uart_add_one_port(&sunsab_reg, &up[0].port); | 1037 | err = uart_add_one_port(&sunsab_reg, &up[0].port); |
| 1036 | if (err) | 1038 | if (err) |
| @@ -1116,7 +1118,6 @@ static int __init sunsab_init(void) | |||
| 1116 | if (!sunsab_ports) | 1118 | if (!sunsab_ports) |
| 1117 | return -ENOMEM; | 1119 | return -ENOMEM; |
| 1118 | 1120 | ||
| 1119 | sunsab_reg.cons = SUNSAB_CONSOLE(); | ||
| 1120 | err = sunserial_register_minors(&sunsab_reg, num_channels); | 1121 | err = sunserial_register_minors(&sunsab_reg, num_channels); |
| 1121 | if (err) { | 1122 | if (err) { |
| 1122 | kfree(sunsab_ports); | 1123 | kfree(sunsab_ports); |
diff --git a/drivers/serial/sunsu.c b/drivers/serial/sunsu.c index 68d262b15749..170d3d68c8f0 100644 --- a/drivers/serial/sunsu.c +++ b/drivers/serial/sunsu.c | |||
| @@ -1329,11 +1329,9 @@ static void sunsu_console_write(struct console *co, const char *s, | |||
| 1329 | */ | 1329 | */ |
| 1330 | static int __init sunsu_console_setup(struct console *co, char *options) | 1330 | static int __init sunsu_console_setup(struct console *co, char *options) |
| 1331 | { | 1331 | { |
| 1332 | static struct ktermios dummy; | ||
| 1333 | struct ktermios termios; | ||
| 1332 | struct uart_port *port; | 1334 | struct uart_port *port; |
| 1333 | int baud = 9600; | ||
| 1334 | int bits = 8; | ||
| 1335 | int parity = 'n'; | ||
| 1336 | int flow = 'n'; | ||
| 1337 | 1335 | ||
| 1338 | printk("Console: ttyS%d (SU)\n", | 1336 | printk("Console: ttyS%d (SU)\n", |
| 1339 | (sunsu_reg.minor - 64) + co->index); | 1337 | (sunsu_reg.minor - 64) + co->index); |
| @@ -1352,10 +1350,15 @@ static int __init sunsu_console_setup(struct console *co, char *options) | |||
| 1352 | */ | 1350 | */ |
| 1353 | spin_lock_init(&port->lock); | 1351 | spin_lock_init(&port->lock); |
| 1354 | 1352 | ||
| 1355 | if (options) | 1353 | /* Get firmware console settings. */ |
| 1356 | uart_parse_options(options, &baud, &parity, &bits, &flow); | 1354 | sunserial_console_termios(co, to_of_device(port->dev)->node); |
| 1357 | 1355 | ||
| 1358 | return uart_set_options(port, co, baud, parity, bits, flow); | 1356 | memset(&termios, 0, sizeof(struct ktermios)); |
| 1357 | termios.c_cflag = co->cflag; | ||
| 1358 | port->mctrl |= TIOCM_DTR; | ||
| 1359 | port->ops->set_termios(port, &termios, &dummy); | ||
| 1360 | |||
| 1361 | return 0; | ||
| 1359 | } | 1362 | } |
| 1360 | 1363 | ||
| 1361 | static struct console sunsu_console = { | 1364 | static struct console sunsu_console = { |
| @@ -1409,6 +1412,7 @@ static int __devinit su_probe(struct of_device *op, const struct of_device_id *m | |||
| 1409 | struct uart_sunsu_port *up; | 1412 | struct uart_sunsu_port *up; |
| 1410 | struct resource *rp; | 1413 | struct resource *rp; |
| 1411 | enum su_type type; | 1414 | enum su_type type; |
| 1415 | bool ignore_line; | ||
| 1412 | int err; | 1416 | int err; |
| 1413 | 1417 | ||
| 1414 | type = su_get_type(dp); | 1418 | type = su_get_type(dp); |
| @@ -1467,8 +1471,14 @@ static int __devinit su_probe(struct of_device *op, const struct of_device_id *m | |||
| 1467 | 1471 | ||
| 1468 | up->port.ops = &sunsu_pops; | 1472 | up->port.ops = &sunsu_pops; |
| 1469 | 1473 | ||
| 1474 | ignore_line = false; | ||
| 1475 | if (!strcmp(dp->name, "rsc-console") || | ||
| 1476 | !strcmp(dp->name, "lom-console")) | ||
| 1477 | ignore_line = true; | ||
| 1478 | |||
| 1470 | sunserial_console_match(SUNSU_CONSOLE(), dp, | 1479 | sunserial_console_match(SUNSU_CONSOLE(), dp, |
| 1471 | &sunsu_reg, up->port.line); | 1480 | &sunsu_reg, up->port.line, |
| 1481 | ignore_line); | ||
| 1472 | err = uart_add_one_port(&sunsu_reg, &up->port); | 1482 | err = uart_add_one_port(&sunsu_reg, &up->port); |
| 1473 | if (err) | 1483 | if (err) |
| 1474 | goto out_unmap; | 1484 | goto out_unmap; |
| @@ -1517,6 +1527,10 @@ static const struct of_device_id su_match[] = { | |||
| 1517 | .name = "serial", | 1527 | .name = "serial", |
| 1518 | .compatible = "su", | 1528 | .compatible = "su", |
| 1519 | }, | 1529 | }, |
| 1530 | { | ||
| 1531 | .type = "serial", | ||
| 1532 | .compatible = "su", | ||
| 1533 | }, | ||
| 1520 | {}, | 1534 | {}, |
| 1521 | }; | 1535 | }; |
| 1522 | MODULE_DEVICE_TABLE(of, su_match); | 1536 | MODULE_DEVICE_TABLE(of, su_match); |
| @@ -1548,6 +1562,12 @@ static int __init sunsu_init(void) | |||
| 1548 | num_uart++; | 1562 | num_uart++; |
| 1549 | } | 1563 | } |
| 1550 | } | 1564 | } |
| 1565 | for_each_node_by_type(dp, "serial") { | ||
| 1566 | if (of_device_is_compatible(dp, "su")) { | ||
| 1567 | if (su_get_type(dp) == SU_PORT_PORT) | ||
| 1568 | num_uart++; | ||
| 1569 | } | ||
| 1570 | } | ||
| 1551 | 1571 | ||
| 1552 | if (num_uart) { | 1572 | if (num_uart) { |
| 1553 | err = sunserial_register_minors(&sunsu_reg, num_uart); | 1573 | err = sunserial_register_minors(&sunsu_reg, num_uart); |
diff --git a/drivers/serial/sunzilog.c b/drivers/serial/sunzilog.c index ef693ae22e7f..2c7a66af4f52 100644 --- a/drivers/serial/sunzilog.c +++ b/drivers/serial/sunzilog.c | |||
| @@ -1180,7 +1180,7 @@ static int __init sunzilog_console_setup(struct console *con, char *options) | |||
| 1180 | (sunzilog_reg.minor - 64) + con->index, con->index); | 1180 | (sunzilog_reg.minor - 64) + con->index, con->index); |
| 1181 | 1181 | ||
| 1182 | /* Get firmware console settings. */ | 1182 | /* Get firmware console settings. */ |
| 1183 | sunserial_console_termios(con); | 1183 | sunserial_console_termios(con, to_of_device(up->port.dev)->node); |
| 1184 | 1184 | ||
| 1185 | /* Firmware console speed is limited to 150-->38400 baud so | 1185 | /* Firmware console speed is limited to 150-->38400 baud so |
| 1186 | * this hackish cflag thing is OK. | 1186 | * this hackish cflag thing is OK. |
| @@ -1416,7 +1416,8 @@ static int __devinit zs_probe(struct of_device *op, const struct of_device_id *m | |||
| 1416 | 1416 | ||
| 1417 | if (!keyboard_mouse) { | 1417 | if (!keyboard_mouse) { |
| 1418 | if (sunserial_console_match(SUNZILOG_CONSOLE(), op->node, | 1418 | if (sunserial_console_match(SUNZILOG_CONSOLE(), op->node, |
| 1419 | &sunzilog_reg, up[0].port.line)) | 1419 | &sunzilog_reg, up[0].port.line, |
| 1420 | false)) | ||
| 1420 | up->flags |= SUNZILOG_FLAG_IS_CONS; | 1421 | up->flags |= SUNZILOG_FLAG_IS_CONS; |
| 1421 | err = uart_add_one_port(&sunzilog_reg, &up[0].port); | 1422 | err = uart_add_one_port(&sunzilog_reg, &up[0].port); |
| 1422 | if (err) { | 1423 | if (err) { |
| @@ -1425,7 +1426,8 @@ static int __devinit zs_probe(struct of_device *op, const struct of_device_id *m | |||
| 1425 | return err; | 1426 | return err; |
| 1426 | } | 1427 | } |
| 1427 | if (sunserial_console_match(SUNZILOG_CONSOLE(), op->node, | 1428 | if (sunserial_console_match(SUNZILOG_CONSOLE(), op->node, |
| 1428 | &sunzilog_reg, up[1].port.line)) | 1429 | &sunzilog_reg, up[1].port.line, |
| 1430 | false)) | ||
| 1429 | up->flags |= SUNZILOG_FLAG_IS_CONS; | 1431 | up->flags |= SUNZILOG_FLAG_IS_CONS; |
| 1430 | err = uart_add_one_port(&sunzilog_reg, &up[1].port); | 1432 | err = uart_add_one_port(&sunzilog_reg, &up[1].port); |
| 1431 | if (err) { | 1433 | if (err) { |
diff --git a/drivers/spi/spi_stmp.c b/drivers/spi/spi_stmp.c index d871dc23909c..2552bb364005 100644 --- a/drivers/spi/spi_stmp.c +++ b/drivers/spi/spi_stmp.c | |||
| @@ -242,7 +242,7 @@ static int stmp_spi_txrx_dma(struct stmp_spi *ss, int cs, | |||
| 242 | wait_for_completion(&ss->done); | 242 | wait_for_completion(&ss->done); |
| 243 | 243 | ||
| 244 | if (!busy_wait(readl(ss->regs + HW_SSP_CTRL0) & BM_SSP_CTRL0_RUN)) | 244 | if (!busy_wait(readl(ss->regs + HW_SSP_CTRL0) & BM_SSP_CTRL0_RUN)) |
| 245 | status = ETIMEDOUT; | 245 | status = -ETIMEDOUT; |
| 246 | 246 | ||
| 247 | if (!dma_buf) | 247 | if (!dma_buf) |
| 248 | dma_unmap_single(ss->master_dev, spi_buf_dma, len, dir); | 248 | dma_unmap_single(ss->master_dev, spi_buf_dma, len, dir); |
diff --git a/drivers/spi/spi_txx9.c b/drivers/spi/spi_txx9.c index 96057de133ad..19f75627c3de 100644 --- a/drivers/spi/spi_txx9.c +++ b/drivers/spi/spi_txx9.c | |||
| @@ -29,6 +29,8 @@ | |||
| 29 | 29 | ||
| 30 | 30 | ||
| 31 | #define SPI_FIFO_SIZE 4 | 31 | #define SPI_FIFO_SIZE 4 |
| 32 | #define SPI_MAX_DIVIDER 0xff /* Max. value for SPCR1.SER */ | ||
| 33 | #define SPI_MIN_DIVIDER 1 /* Min. value for SPCR1.SER */ | ||
| 32 | 34 | ||
| 33 | #define TXx9_SPMCR 0x00 | 35 | #define TXx9_SPMCR 0x00 |
| 34 | #define TXx9_SPCR0 0x04 | 36 | #define TXx9_SPCR0 0x04 |
| @@ -193,11 +195,8 @@ static void txx9spi_work_one(struct txx9spi *c, struct spi_message *m) | |||
| 193 | 195 | ||
| 194 | if (prev_speed_hz != speed_hz | 196 | if (prev_speed_hz != speed_hz |
| 195 | || prev_bits_per_word != bits_per_word) { | 197 | || prev_bits_per_word != bits_per_word) { |
| 196 | u32 n = (c->baseclk + speed_hz - 1) / speed_hz; | 198 | int n = DIV_ROUND_UP(c->baseclk, speed_hz) - 1; |
| 197 | if (n < 1) | 199 | n = clamp(n, SPI_MIN_DIVIDER, SPI_MAX_DIVIDER); |
| 198 | n = 1; | ||
| 199 | else if (n > 0xff) | ||
| 200 | n = 0xff; | ||
| 201 | /* enter config mode */ | 200 | /* enter config mode */ |
| 202 | txx9spi_wr(c, mcr | TXx9_SPMCR_CONFIG | TXx9_SPMCR_BCLR, | 201 | txx9spi_wr(c, mcr | TXx9_SPMCR_CONFIG | TXx9_SPMCR_BCLR, |
| 203 | TXx9_SPMCR); | 202 | TXx9_SPMCR); |
| @@ -370,8 +369,8 @@ static int __init txx9spi_probe(struct platform_device *dev) | |||
| 370 | goto exit; | 369 | goto exit; |
| 371 | } | 370 | } |
| 372 | c->baseclk = clk_get_rate(c->clk); | 371 | c->baseclk = clk_get_rate(c->clk); |
| 373 | c->min_speed_hz = (c->baseclk + 0xff - 1) / 0xff; | 372 | c->min_speed_hz = DIV_ROUND_UP(c->baseclk, SPI_MAX_DIVIDER + 1); |
| 374 | c->max_speed_hz = c->baseclk; | 373 | c->max_speed_hz = c->baseclk / (SPI_MIN_DIVIDER + 1); |
| 375 | 374 | ||
| 376 | res = platform_get_resource(dev, IORESOURCE_MEM, 0); | 375 | res = platform_get_resource(dev, IORESOURCE_MEM, 0); |
| 377 | if (!res) | 376 | if (!res) |
diff --git a/drivers/ssb/scan.c b/drivers/ssb/scan.c index b74212d698c7..e8b89e8ac9bd 100644 --- a/drivers/ssb/scan.c +++ b/drivers/ssb/scan.c | |||
| @@ -162,6 +162,8 @@ static u8 chipid_to_nrcores(u16 chipid) | |||
| 162 | static u32 scan_read32(struct ssb_bus *bus, u8 current_coreidx, | 162 | static u32 scan_read32(struct ssb_bus *bus, u8 current_coreidx, |
| 163 | u16 offset) | 163 | u16 offset) |
| 164 | { | 164 | { |
| 165 | u32 lo, hi; | ||
| 166 | |||
| 165 | switch (bus->bustype) { | 167 | switch (bus->bustype) { |
| 166 | case SSB_BUSTYPE_SSB: | 168 | case SSB_BUSTYPE_SSB: |
| 167 | offset += current_coreidx * SSB_CORE_SIZE; | 169 | offset += current_coreidx * SSB_CORE_SIZE; |
| @@ -174,7 +176,9 @@ static u32 scan_read32(struct ssb_bus *bus, u8 current_coreidx, | |||
| 174 | offset -= 0x800; | 176 | offset -= 0x800; |
| 175 | } else | 177 | } else |
| 176 | ssb_pcmcia_switch_segment(bus, 0); | 178 | ssb_pcmcia_switch_segment(bus, 0); |
| 177 | break; | 179 | lo = readw(bus->mmio + offset); |
| 180 | hi = readw(bus->mmio + offset + 2); | ||
| 181 | return lo | (hi << 16); | ||
| 178 | case SSB_BUSTYPE_SDIO: | 182 | case SSB_BUSTYPE_SDIO: |
| 179 | offset += current_coreidx * SSB_CORE_SIZE; | 183 | offset += current_coreidx * SSB_CORE_SIZE; |
| 180 | return ssb_sdio_scan_read32(bus, offset); | 184 | return ssb_sdio_scan_read32(bus, offset); |
diff --git a/drivers/staging/go7007/s2250-board.c b/drivers/staging/go7007/s2250-board.c index 8c85a9c3665a..f4a6541c3e60 100644 --- a/drivers/staging/go7007/s2250-board.c +++ b/drivers/staging/go7007/s2250-board.c | |||
| @@ -261,7 +261,7 @@ static int read_reg_fp(struct i2c_client *client, u16 addr, u16 *val) | |||
| 261 | 261 | ||
| 262 | memset(buf, 0xcd, 6); | 262 | memset(buf, 0xcd, 6); |
| 263 | usb = go->hpi_context; | 263 | usb = go->hpi_context; |
| 264 | if (down_interruptible(&usb->i2c_lock) != 0) { | 264 | if (mutex_lock_interruptible(&usb->i2c_lock) != 0) { |
| 265 | printk(KERN_INFO "i2c lock failed\n"); | 265 | printk(KERN_INFO "i2c lock failed\n"); |
| 266 | kfree(buf); | 266 | kfree(buf); |
| 267 | return -EINTR; | 267 | return -EINTR; |
| @@ -270,7 +270,7 @@ static int read_reg_fp(struct i2c_client *client, u16 addr, u16 *val) | |||
| 270 | kfree(buf); | 270 | kfree(buf); |
| 271 | return -EFAULT; | 271 | return -EFAULT; |
| 272 | } | 272 | } |
| 273 | up(&usb->i2c_lock); | 273 | mutex_unlock(&usb->i2c_lock); |
| 274 | 274 | ||
| 275 | *val = (buf[0] << 8) | buf[1]; | 275 | *val = (buf[0] << 8) | buf[1]; |
| 276 | kfree(buf); | 276 | kfree(buf); |
diff --git a/drivers/staging/go7007/s2250-loader.h b/drivers/staging/go7007/s2250-loader.h new file mode 100644 index 000000000000..b7c301af16cc --- /dev/null +++ b/drivers/staging/go7007/s2250-loader.h | |||
| @@ -0,0 +1,24 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2005-2006 Micronas USA Inc. | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License (Version 2) as | ||
| 6 | * published by the Free Software Foundation. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program; if not, write to the Free Software Foundation, | ||
| 15 | * Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, USA. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #ifndef _S2250_LOADER_H_ | ||
| 19 | #define _S2250_LOADER_H_ | ||
| 20 | |||
| 21 | extern int s2250loader_init(void); | ||
| 22 | extern void s2250loader_cleanup(void); | ||
| 23 | |||
| 24 | #endif | ||
diff --git a/drivers/staging/hv/BlkVsc.c b/drivers/staging/hv/BlkVsc.c index 51aa861292fc..a48ee3a12646 100644 --- a/drivers/staging/hv/BlkVsc.c +++ b/drivers/staging/hv/BlkVsc.c | |||
| @@ -16,6 +16,7 @@ | |||
| 16 | * Place - Suite 330, Boston, MA 02111-1307 USA. | 16 | * Place - Suite 330, Boston, MA 02111-1307 USA. |
| 17 | * | 17 | * |
| 18 | * Authors: | 18 | * Authors: |
| 19 | * Haiyang Zhang <haiyangz@microsoft.com> | ||
| 19 | * Hank Janssen <hjanssen@microsoft.com> | 20 | * Hank Janssen <hjanssen@microsoft.com> |
| 20 | * | 21 | * |
| 21 | */ | 22 | */ |
diff --git a/drivers/staging/hv/Channel.c b/drivers/staging/hv/Channel.c index d649ee169d95..746370e82115 100644 --- a/drivers/staging/hv/Channel.c +++ b/drivers/staging/hv/Channel.c | |||
| @@ -611,7 +611,7 @@ void VmbusChannelClose(struct vmbus_channel *Channel) | |||
| 611 | 611 | ||
| 612 | /* Stop callback and cancel the timer asap */ | 612 | /* Stop callback and cancel the timer asap */ |
| 613 | Channel->OnChannelCallback = NULL; | 613 | Channel->OnChannelCallback = NULL; |
| 614 | del_timer(&Channel->poll_timer); | 614 | del_timer_sync(&Channel->poll_timer); |
| 615 | 615 | ||
| 616 | /* Send a closing message */ | 616 | /* Send a closing message */ |
| 617 | info = kmalloc(sizeof(*info) + | 617 | info = kmalloc(sizeof(*info) + |
| @@ -978,14 +978,10 @@ void VmbusChannelOnChannelEvent(struct vmbus_channel *Channel) | |||
| 978 | { | 978 | { |
| 979 | DumpVmbusChannel(Channel); | 979 | DumpVmbusChannel(Channel); |
| 980 | ASSERT(Channel->OnChannelCallback); | 980 | ASSERT(Channel->OnChannelCallback); |
| 981 | #ifdef ENABLE_POLLING | 981 | |
| 982 | del_timer(&Channel->poll_timer); | ||
| 983 | Channel->OnChannelCallback(Channel->ChannelCallbackContext); | ||
| 984 | channel->poll_timer.expires(jiffies + usecs_to_jiffies(100); | ||
| 985 | add_timer(&channel->poll_timer); | ||
| 986 | #else | ||
| 987 | Channel->OnChannelCallback(Channel->ChannelCallbackContext); | 982 | Channel->OnChannelCallback(Channel->ChannelCallbackContext); |
| 988 | #endif | 983 | |
| 984 | mod_timer(&Channel->poll_timer, jiffies + usecs_to_jiffies(100)); | ||
| 989 | } | 985 | } |
| 990 | 986 | ||
| 991 | /** | 987 | /** |
| @@ -997,10 +993,6 @@ void VmbusChannelOnTimer(unsigned long data) | |||
| 997 | 993 | ||
| 998 | if (channel->OnChannelCallback) { | 994 | if (channel->OnChannelCallback) { |
| 999 | channel->OnChannelCallback(channel->ChannelCallbackContext); | 995 | channel->OnChannelCallback(channel->ChannelCallbackContext); |
| 1000 | #ifdef ENABLE_POLLING | ||
| 1001 | channel->poll_timer.expires(jiffies + usecs_to_jiffies(100); | ||
| 1002 | add_timer(&channel->poll_timer); | ||
| 1003 | #endif | ||
| 1004 | } | 996 | } |
| 1005 | } | 997 | } |
| 1006 | 998 | ||
diff --git a/drivers/staging/hv/ChannelMgmt.c b/drivers/staging/hv/ChannelMgmt.c index 3db62caedcff..ef38467ed4e2 100644 --- a/drivers/staging/hv/ChannelMgmt.c +++ b/drivers/staging/hv/ChannelMgmt.c | |||
| @@ -119,7 +119,7 @@ static inline void ReleaseVmbusChannel(void *context) | |||
| 119 | */ | 119 | */ |
| 120 | void FreeVmbusChannel(struct vmbus_channel *Channel) | 120 | void FreeVmbusChannel(struct vmbus_channel *Channel) |
| 121 | { | 121 | { |
| 122 | del_timer(&Channel->poll_timer); | 122 | del_timer_sync(&Channel->poll_timer); |
| 123 | 123 | ||
| 124 | /* | 124 | /* |
| 125 | * We have to release the channel's workqueue/thread in the vmbus's | 125 | * We have to release the channel's workqueue/thread in the vmbus's |
diff --git a/drivers/staging/hv/NetVsc.c b/drivers/staging/hv/NetVsc.c index d384c0ddf069..1c717f9a554e 100644 --- a/drivers/staging/hv/NetVsc.c +++ b/drivers/staging/hv/NetVsc.c | |||
| @@ -15,6 +15,7 @@ | |||
| 15 | * Place - Suite 330, Boston, MA 02111-1307 USA. | 15 | * Place - Suite 330, Boston, MA 02111-1307 USA. |
| 16 | * | 16 | * |
| 17 | * Authors: | 17 | * Authors: |
| 18 | * Haiyang Zhang <haiyangz@microsoft.com> | ||
| 18 | * Hank Janssen <hjanssen@microsoft.com> | 19 | * Hank Janssen <hjanssen@microsoft.com> |
| 19 | */ | 20 | */ |
| 20 | #include <linux/kernel.h> | 21 | #include <linux/kernel.h> |
diff --git a/drivers/staging/hv/NetVsc.h b/drivers/staging/hv/NetVsc.h index 3e7112f7c755..6e0e03494126 100644 --- a/drivers/staging/hv/NetVsc.h +++ b/drivers/staging/hv/NetVsc.h | |||
| @@ -16,6 +16,7 @@ | |||
| 16 | * Place - Suite 330, Boston, MA 02111-1307 USA. | 16 | * Place - Suite 330, Boston, MA 02111-1307 USA. |
| 17 | * | 17 | * |
| 18 | * Authors: | 18 | * Authors: |
| 19 | * Haiyang Zhang <haiyangz@microsoft.com> | ||
| 19 | * Hank Janssen <hjanssen@microsoft.com> | 20 | * Hank Janssen <hjanssen@microsoft.com> |
| 20 | * | 21 | * |
| 21 | */ | 22 | */ |
diff --git a/drivers/staging/hv/StorVsc.c b/drivers/staging/hv/StorVsc.c index 14015c927940..2f7c425896f7 100644 --- a/drivers/staging/hv/StorVsc.c +++ b/drivers/staging/hv/StorVsc.c | |||
| @@ -196,7 +196,7 @@ static int StorVscChannelInit(struct hv_device *Device) | |||
| 196 | * Now, initiate the vsc/vsp initialization protocol on the open | 196 | * Now, initiate the vsc/vsp initialization protocol on the open |
| 197 | * channel | 197 | * channel |
| 198 | */ | 198 | */ |
| 199 | memset(request, sizeof(struct storvsc_request_extension), 0); | 199 | memset(request, 0, sizeof(struct storvsc_request_extension)); |
| 200 | request->WaitEvent = osd_WaitEventCreate(); | 200 | request->WaitEvent = osd_WaitEventCreate(); |
| 201 | 201 | ||
| 202 | vstorPacket->Operation = VStorOperationBeginInitialization; | 202 | vstorPacket->Operation = VStorOperationBeginInitialization; |
| @@ -233,7 +233,7 @@ static int StorVscChannelInit(struct hv_device *Device) | |||
| 233 | DPRINT_INFO(STORVSC, "QUERY_PROTOCOL_VERSION_OPERATION..."); | 233 | DPRINT_INFO(STORVSC, "QUERY_PROTOCOL_VERSION_OPERATION..."); |
| 234 | 234 | ||
| 235 | /* reuse the packet for version range supported */ | 235 | /* reuse the packet for version range supported */ |
| 236 | memset(vstorPacket, sizeof(struct vstor_packet), 0); | 236 | memset(vstorPacket, 0, sizeof(struct vstor_packet)); |
| 237 | vstorPacket->Operation = VStorOperationQueryProtocolVersion; | 237 | vstorPacket->Operation = VStorOperationQueryProtocolVersion; |
| 238 | vstorPacket->Flags = REQUEST_COMPLETION_FLAG; | 238 | vstorPacket->Flags = REQUEST_COMPLETION_FLAG; |
| 239 | 239 | ||
| @@ -266,7 +266,7 @@ static int StorVscChannelInit(struct hv_device *Device) | |||
| 266 | /* Query channel properties */ | 266 | /* Query channel properties */ |
| 267 | DPRINT_INFO(STORVSC, "QUERY_PROPERTIES_OPERATION..."); | 267 | DPRINT_INFO(STORVSC, "QUERY_PROPERTIES_OPERATION..."); |
| 268 | 268 | ||
| 269 | memset(vstorPacket, sizeof(struct vstor_packet), 0); | 269 | memset(vstorPacket, 0, sizeof(struct vstor_packet)); |
| 270 | vstorPacket->Operation = VStorOperationQueryProperties; | 270 | vstorPacket->Operation = VStorOperationQueryProperties; |
| 271 | vstorPacket->Flags = REQUEST_COMPLETION_FLAG; | 271 | vstorPacket->Flags = REQUEST_COMPLETION_FLAG; |
| 272 | vstorPacket->StorageChannelProperties.PortNumber = | 272 | vstorPacket->StorageChannelProperties.PortNumber = |
| @@ -305,7 +305,7 @@ static int StorVscChannelInit(struct hv_device *Device) | |||
| 305 | 305 | ||
| 306 | DPRINT_INFO(STORVSC, "END_INITIALIZATION_OPERATION..."); | 306 | DPRINT_INFO(STORVSC, "END_INITIALIZATION_OPERATION..."); |
| 307 | 307 | ||
| 308 | memset(vstorPacket, sizeof(struct vstor_packet), 0); | 308 | memset(vstorPacket, 0, sizeof(struct vstor_packet)); |
| 309 | vstorPacket->Operation = VStorOperationEndInitialization; | 309 | vstorPacket->Operation = VStorOperationEndInitialization; |
| 310 | vstorPacket->Flags = REQUEST_COMPLETION_FLAG; | 310 | vstorPacket->Flags = REQUEST_COMPLETION_FLAG; |
| 311 | 311 | ||
| @@ -508,7 +508,7 @@ static int StorVscConnectToVsp(struct hv_device *Device) | |||
| 508 | int ret; | 508 | int ret; |
| 509 | 509 | ||
| 510 | storDriver = (struct storvsc_driver_object *)Device->Driver; | 510 | storDriver = (struct storvsc_driver_object *)Device->Driver; |
| 511 | memset(&props, sizeof(struct vmstorage_channel_properties), 0); | 511 | memset(&props, 0, sizeof(struct vmstorage_channel_properties)); |
| 512 | 512 | ||
| 513 | /* Open the channel */ | 513 | /* Open the channel */ |
| 514 | ret = Device->Driver->VmbusChannelInterface.Open(Device, | 514 | ret = Device->Driver->VmbusChannelInterface.Open(Device, |
diff --git a/drivers/staging/hv/blkvsc_drv.c b/drivers/staging/hv/blkvsc_drv.c index 99c49261a8b4..62b282844a53 100644 --- a/drivers/staging/hv/blkvsc_drv.c +++ b/drivers/staging/hv/blkvsc_drv.c | |||
| @@ -15,6 +15,7 @@ | |||
| 15 | * Place - Suite 330, Boston, MA 02111-1307 USA. | 15 | * Place - Suite 330, Boston, MA 02111-1307 USA. |
| 16 | * | 16 | * |
| 17 | * Authors: | 17 | * Authors: |
| 18 | * Haiyang Zhang <haiyangz@microsoft.com> | ||
| 18 | * Hank Janssen <hjanssen@microsoft.com> | 19 | * Hank Janssen <hjanssen@microsoft.com> |
| 19 | */ | 20 | */ |
| 20 | #include <linux/init.h> | 21 | #include <linux/init.h> |
diff --git a/drivers/staging/hv/netvsc_drv.c b/drivers/staging/hv/netvsc_drv.c index 3192d50f7251..0d7459e2d036 100644 --- a/drivers/staging/hv/netvsc_drv.c +++ b/drivers/staging/hv/netvsc_drv.c | |||
| @@ -15,6 +15,7 @@ | |||
| 15 | * Place - Suite 330, Boston, MA 02111-1307 USA. | 15 | * Place - Suite 330, Boston, MA 02111-1307 USA. |
| 16 | * | 16 | * |
| 17 | * Authors: | 17 | * Authors: |
| 18 | * Haiyang Zhang <haiyangz@microsoft.com> | ||
| 18 | * Hank Janssen <hjanssen@microsoft.com> | 19 | * Hank Janssen <hjanssen@microsoft.com> |
| 19 | */ | 20 | */ |
| 20 | #include <linux/init.h> | 21 | #include <linux/init.h> |
diff --git a/drivers/staging/octeon/ethernet-mdio.c b/drivers/staging/octeon/ethernet-mdio.c index 42230e62a222..31a58e508924 100644 --- a/drivers/staging/octeon/ethernet-mdio.c +++ b/drivers/staging/octeon/ethernet-mdio.c | |||
| @@ -170,7 +170,7 @@ static u32 cvm_oct_get_link(struct net_device *dev) | |||
| 170 | return ret; | 170 | return ret; |
| 171 | } | 171 | } |
| 172 | 172 | ||
| 173 | struct const ethtool_ops cvm_oct_ethtool_ops = { | 173 | const struct ethtool_ops cvm_oct_ethtool_ops = { |
| 174 | .get_drvinfo = cvm_oct_get_drvinfo, | 174 | .get_drvinfo = cvm_oct_get_drvinfo, |
| 175 | .get_settings = cvm_oct_get_settings, | 175 | .get_settings = cvm_oct_get_settings, |
| 176 | .set_settings = cvm_oct_set_settings, | 176 | .set_settings = cvm_oct_set_settings, |
diff --git a/drivers/staging/octeon/ethernet-spi.c b/drivers/staging/octeon/ethernet-spi.c index 66190b0cb68f..00dc0f4bad19 100644 --- a/drivers/staging/octeon/ethernet-spi.c +++ b/drivers/staging/octeon/ethernet-spi.c | |||
| @@ -317,6 +317,6 @@ void cvm_oct_spi_uninit(struct net_device *dev) | |||
| 317 | cvmx_write_csr(CVMX_SPXX_INT_MSK(interface), 0); | 317 | cvmx_write_csr(CVMX_SPXX_INT_MSK(interface), 0); |
| 318 | cvmx_write_csr(CVMX_STXX_INT_MSK(interface), 0); | 318 | cvmx_write_csr(CVMX_STXX_INT_MSK(interface), 0); |
| 319 | } | 319 | } |
| 320 | free_irq(8 + 46, &number_spi_ports); | 320 | free_irq(OCTEON_IRQ_RML, &number_spi_ports); |
| 321 | } | 321 | } |
| 322 | } | 322 | } |
diff --git a/drivers/staging/octeon/ethernet.c b/drivers/staging/octeon/ethernet.c index b8479517dce2..492c5029992d 100644 --- a/drivers/staging/octeon/ethernet.c +++ b/drivers/staging/octeon/ethernet.c | |||
| @@ -111,6 +111,16 @@ MODULE_PARM_DESC(disable_core_queueing, "\n" | |||
| 111 | "\tallows packets to be sent without lock contention in the packet\n" | 111 | "\tallows packets to be sent without lock contention in the packet\n" |
| 112 | "\tscheduler resulting in some cases in improved throughput.\n"); | 112 | "\tscheduler resulting in some cases in improved throughput.\n"); |
| 113 | 113 | ||
| 114 | |||
| 115 | /* | ||
| 116 | * The offset from mac_addr_base that should be used for the next port | ||
| 117 | * that is configured. By convention, if any mgmt ports exist on the | ||
| 118 | * chip, they get the first mac addresses, The ports controlled by | ||
| 119 | * this driver are numbered sequencially following any mgmt addresses | ||
| 120 | * that may exist. | ||
| 121 | */ | ||
| 122 | static unsigned int cvm_oct_mac_addr_offset; | ||
| 123 | |||
| 114 | /** | 124 | /** |
| 115 | * Periodic timer to check auto negotiation | 125 | * Periodic timer to check auto negotiation |
| 116 | */ | 126 | */ |
| @@ -474,16 +484,30 @@ static int cvm_oct_common_set_mac_address(struct net_device *dev, void *addr) | |||
| 474 | */ | 484 | */ |
| 475 | int cvm_oct_common_init(struct net_device *dev) | 485 | int cvm_oct_common_init(struct net_device *dev) |
| 476 | { | 486 | { |
| 477 | static int count; | ||
| 478 | char mac[8] = { 0x00, 0x00, | ||
| 479 | octeon_bootinfo->mac_addr_base[0], | ||
| 480 | octeon_bootinfo->mac_addr_base[1], | ||
| 481 | octeon_bootinfo->mac_addr_base[2], | ||
| 482 | octeon_bootinfo->mac_addr_base[3], | ||
| 483 | octeon_bootinfo->mac_addr_base[4], | ||
| 484 | octeon_bootinfo->mac_addr_base[5] + count | ||
| 485 | }; | ||
| 486 | struct octeon_ethernet *priv = netdev_priv(dev); | 487 | struct octeon_ethernet *priv = netdev_priv(dev); |
| 488 | struct sockaddr sa; | ||
| 489 | u64 mac = ((u64)(octeon_bootinfo->mac_addr_base[0] & 0xff) << 40) | | ||
| 490 | ((u64)(octeon_bootinfo->mac_addr_base[1] & 0xff) << 32) | | ||
| 491 | ((u64)(octeon_bootinfo->mac_addr_base[2] & 0xff) << 24) | | ||
| 492 | ((u64)(octeon_bootinfo->mac_addr_base[3] & 0xff) << 16) | | ||
| 493 | ((u64)(octeon_bootinfo->mac_addr_base[4] & 0xff) << 8) | | ||
| 494 | (u64)(octeon_bootinfo->mac_addr_base[5] & 0xff); | ||
| 495 | |||
| 496 | mac += cvm_oct_mac_addr_offset; | ||
| 497 | sa.sa_data[0] = (mac >> 40) & 0xff; | ||
| 498 | sa.sa_data[1] = (mac >> 32) & 0xff; | ||
| 499 | sa.sa_data[2] = (mac >> 24) & 0xff; | ||
| 500 | sa.sa_data[3] = (mac >> 16) & 0xff; | ||
| 501 | sa.sa_data[4] = (mac >> 8) & 0xff; | ||
| 502 | sa.sa_data[5] = mac & 0xff; | ||
| 503 | |||
| 504 | if (cvm_oct_mac_addr_offset >= octeon_bootinfo->mac_addr_count) | ||
| 505 | printk(KERN_DEBUG "%s: Using MAC outside of the assigned range:" | ||
| 506 | " %02x:%02x:%02x:%02x:%02x:%02x\n", dev->name, | ||
| 507 | sa.sa_data[0] & 0xff, sa.sa_data[1] & 0xff, | ||
| 508 | sa.sa_data[2] & 0xff, sa.sa_data[3] & 0xff, | ||
| 509 | sa.sa_data[4] & 0xff, sa.sa_data[5] & 0xff); | ||
| 510 | cvm_oct_mac_addr_offset++; | ||
| 487 | 511 | ||
| 488 | /* | 512 | /* |
| 489 | * Force the interface to use the POW send if always_use_pow | 513 | * Force the interface to use the POW send if always_use_pow |
| @@ -496,14 +520,12 @@ int cvm_oct_common_init(struct net_device *dev) | |||
| 496 | if (priv->queue != -1 && USE_HW_TCPUDP_CHECKSUM) | 520 | if (priv->queue != -1 && USE_HW_TCPUDP_CHECKSUM) |
| 497 | dev->features |= NETIF_F_IP_CSUM; | 521 | dev->features |= NETIF_F_IP_CSUM; |
| 498 | 522 | ||
| 499 | count++; | ||
| 500 | |||
| 501 | /* We do our own locking, Linux doesn't need to */ | 523 | /* We do our own locking, Linux doesn't need to */ |
| 502 | dev->features |= NETIF_F_LLTX; | 524 | dev->features |= NETIF_F_LLTX; |
| 503 | SET_ETHTOOL_OPS(dev, &cvm_oct_ethtool_ops); | 525 | SET_ETHTOOL_OPS(dev, &cvm_oct_ethtool_ops); |
| 504 | 526 | ||
| 505 | cvm_oct_mdio_setup_device(dev); | 527 | cvm_oct_mdio_setup_device(dev); |
| 506 | dev->netdev_ops->ndo_set_mac_address(dev, mac); | 528 | dev->netdev_ops->ndo_set_mac_address(dev, &sa); |
| 507 | dev->netdev_ops->ndo_change_mtu(dev, dev->mtu); | 529 | dev->netdev_ops->ndo_change_mtu(dev, dev->mtu); |
| 508 | 530 | ||
| 509 | /* | 531 | /* |
| @@ -620,6 +642,13 @@ static int __init cvm_oct_init_module(void) | |||
| 620 | 642 | ||
| 621 | pr_notice("cavium-ethernet %s\n", OCTEON_ETHERNET_VERSION); | 643 | pr_notice("cavium-ethernet %s\n", OCTEON_ETHERNET_VERSION); |
| 622 | 644 | ||
| 645 | if (OCTEON_IS_MODEL(OCTEON_CN52XX)) | ||
| 646 | cvm_oct_mac_addr_offset = 2; /* First two are the mgmt ports. */ | ||
| 647 | else if (OCTEON_IS_MODEL(OCTEON_CN56XX)) | ||
| 648 | cvm_oct_mac_addr_offset = 1; /* First one is the mgmt port. */ | ||
| 649 | else | ||
| 650 | cvm_oct_mac_addr_offset = 0; | ||
| 651 | |||
| 623 | cvm_oct_proc_initialize(); | 652 | cvm_oct_proc_initialize(); |
| 624 | cvm_oct_rx_initialize(); | 653 | cvm_oct_rx_initialize(); |
| 625 | cvm_oct_configure_common_hw(); | 654 | cvm_oct_configure_common_hw(); |
diff --git a/drivers/staging/rtl8187se/TODO b/drivers/staging/rtl8187se/TODO index c09a9160739d..a762e79873e9 100644 --- a/drivers/staging/rtl8187se/TODO +++ b/drivers/staging/rtl8187se/TODO | |||
| @@ -11,5 +11,4 @@ TODO: | |||
| 11 | - sparse fixes | 11 | - sparse fixes |
| 12 | - integrate with drivers/net/wireless/rtl818x | 12 | - integrate with drivers/net/wireless/rtl818x |
| 13 | 13 | ||
| 14 | Please send any patches to Greg Kroah-Hartman <greg@kroah.com> and | 14 | Please send any patches to Greg Kroah-Hartman <greg@kroah.com>. |
| 15 | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>. | ||
diff --git a/drivers/staging/rtl8192su/TODO b/drivers/staging/rtl8192su/TODO index b13be9edb278..f11eec700030 100644 --- a/drivers/staging/rtl8192su/TODO +++ b/drivers/staging/rtl8192su/TODO | |||
| @@ -14,5 +14,4 @@ TODO: | |||
| 14 | - sparse fixes | 14 | - sparse fixes |
| 15 | - integrate with drivers/net/wireless/rtl818x | 15 | - integrate with drivers/net/wireless/rtl818x |
| 16 | 16 | ||
| 17 | Please send any patches to Greg Kroah-Hartman <greg@kroah.com> and | 17 | Please send any patches to Greg Kroah-Hartman <greg@kroah.com>. |
| 18 | Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>. | ||
diff --git a/drivers/staging/vt6655/TODO b/drivers/staging/vt6655/TODO index 8462cd17eb61..cb04aaafc46f 100644 --- a/drivers/staging/vt6655/TODO +++ b/drivers/staging/vt6655/TODO | |||
| @@ -16,6 +16,5 @@ TODO: | |||
| 16 | - sparse fixes | 16 | - sparse fixes |
| 17 | - integrate with drivers/net/wireless | 17 | - integrate with drivers/net/wireless |
| 18 | 18 | ||
| 19 | Please send any patches to Greg Kroah-Hartman <greg@kroah.com>, | 19 | Please send any patches to Greg Kroah-Hartman <greg@kroah.com> |
| 20 | Forest Bond <forest@alittletooquiet.net> and Bartlomiej Zolnierkiewicz | 20 | and Forest Bond <forest@alittletooquiet.net>. |
| 21 | <bzolnier@gmail.com>. | ||
diff --git a/drivers/staging/vt6656/TODO b/drivers/staging/vt6656/TODO index 17cf50c6735e..a318995ba07f 100644 --- a/drivers/staging/vt6656/TODO +++ b/drivers/staging/vt6656/TODO | |||
| @@ -15,6 +15,5 @@ TODO: | |||
| 15 | - sparse fixes | 15 | - sparse fixes |
| 16 | - integrate with drivers/net/wireless | 16 | - integrate with drivers/net/wireless |
| 17 | 17 | ||
| 18 | Please send any patches to Greg Kroah-Hartman <greg@kroah.com>, | 18 | Please send any patches to Greg Kroah-Hartman <greg@kroah.com> |
| 19 | Forest Bond <forest@alittletooquiet.net> and Bartlomiej Zolnierkiewicz | 19 | and Forest Bond <forest@alittletooquiet.net>. |
| 20 | <bzolnier@gmail.com>. | ||
diff --git a/drivers/uio/uio_pdrv_genirq.c b/drivers/uio/uio_pdrv_genirq.c index 02347c57357d..aa53db9f2e88 100644 --- a/drivers/uio/uio_pdrv_genirq.c +++ b/drivers/uio/uio_pdrv_genirq.c | |||
| @@ -178,6 +178,7 @@ static int uio_pdrv_genirq_probe(struct platform_device *pdev) | |||
| 178 | return 0; | 178 | return 0; |
| 179 | bad1: | 179 | bad1: |
| 180 | kfree(priv); | 180 | kfree(priv); |
| 181 | pm_runtime_disable(&pdev->dev); | ||
| 181 | bad0: | 182 | bad0: |
| 182 | return ret; | 183 | return ret; |
| 183 | } | 184 | } |
diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c index e3861b21e776..e4eca7810bcf 100644 --- a/drivers/usb/class/cdc-acm.c +++ b/drivers/usb/class/cdc-acm.c | |||
| @@ -609,9 +609,9 @@ static int acm_tty_open(struct tty_struct *tty, struct file *filp) | |||
| 609 | 609 | ||
| 610 | acm->throttle = 0; | 610 | acm->throttle = 0; |
| 611 | 611 | ||
| 612 | tasklet_schedule(&acm->urb_task); | ||
| 613 | set_bit(ASYNCB_INITIALIZED, &acm->port.flags); | 612 | set_bit(ASYNCB_INITIALIZED, &acm->port.flags); |
| 614 | rv = tty_port_block_til_ready(&acm->port, tty, filp); | 613 | rv = tty_port_block_til_ready(&acm->port, tty, filp); |
| 614 | tasklet_schedule(&acm->urb_task); | ||
| 615 | done: | 615 | done: |
| 616 | mutex_unlock(&acm->mutex); | 616 | mutex_unlock(&acm->mutex); |
| 617 | err_out: | 617 | err_out: |
| @@ -686,15 +686,21 @@ static void acm_tty_close(struct tty_struct *tty, struct file *filp) | |||
| 686 | 686 | ||
| 687 | /* Perform the closing process and see if we need to do the hardware | 687 | /* Perform the closing process and see if we need to do the hardware |
| 688 | shutdown */ | 688 | shutdown */ |
| 689 | if (!acm || tty_port_close_start(&acm->port, tty, filp) == 0) | 689 | if (!acm) |
| 690 | return; | ||
| 691 | if (tty_port_close_start(&acm->port, tty, filp) == 0) { | ||
| 692 | mutex_lock(&open_mutex); | ||
| 693 | if (!acm->dev) { | ||
| 694 | tty_port_tty_set(&acm->port, NULL); | ||
| 695 | acm_tty_unregister(acm); | ||
| 696 | tty->driver_data = NULL; | ||
| 697 | } | ||
| 698 | mutex_unlock(&open_mutex); | ||
| 690 | return; | 699 | return; |
| 700 | } | ||
| 691 | acm_port_down(acm, 0); | 701 | acm_port_down(acm, 0); |
| 692 | tty_port_close_end(&acm->port, tty); | 702 | tty_port_close_end(&acm->port, tty); |
| 693 | mutex_lock(&open_mutex); | ||
| 694 | tty_port_tty_set(&acm->port, NULL); | 703 | tty_port_tty_set(&acm->port, NULL); |
| 695 | if (!acm->dev) | ||
| 696 | acm_tty_unregister(acm); | ||
| 697 | mutex_unlock(&open_mutex); | ||
| 698 | } | 704 | } |
| 699 | 705 | ||
| 700 | static int acm_tty_write(struct tty_struct *tty, | 706 | static int acm_tty_write(struct tty_struct *tty, |
diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c index 5ce839137ad6..0f857e645058 100644 --- a/drivers/usb/core/hub.c +++ b/drivers/usb/core/hub.c | |||
| @@ -444,7 +444,7 @@ resubmit: | |||
| 444 | static inline int | 444 | static inline int |
| 445 | hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt) | 445 | hub_clear_tt_buffer (struct usb_device *hdev, u16 devinfo, u16 tt) |
| 446 | { | 446 | { |
| 447 | return usb_control_msg(hdev, usb_rcvctrlpipe(hdev, 0), | 447 | return usb_control_msg(hdev, usb_sndctrlpipe(hdev, 0), |
| 448 | HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo, | 448 | HUB_CLEAR_TT_BUFFER, USB_RT_PORT, devinfo, |
| 449 | tt, NULL, 0, 1000); | 449 | tt, NULL, 0, 1000); |
| 450 | } | 450 | } |
diff --git a/drivers/usb/gadget/amd5536udc.c b/drivers/usb/gadget/amd5536udc.c index d5b65962dd36..731150d4b1d9 100644 --- a/drivers/usb/gadget/amd5536udc.c +++ b/drivers/usb/gadget/amd5536udc.c | |||
| @@ -1213,7 +1213,12 @@ udc_queue(struct usb_ep *usbep, struct usb_request *usbreq, gfp_t gfp) | |||
| 1213 | tmp &= AMD_UNMASK_BIT(ep->num); | 1213 | tmp &= AMD_UNMASK_BIT(ep->num); |
| 1214 | writel(tmp, &dev->regs->ep_irqmsk); | 1214 | writel(tmp, &dev->regs->ep_irqmsk); |
| 1215 | } | 1215 | } |
| 1216 | } | 1216 | } else if (ep->in) { |
| 1217 | /* enable ep irq */ | ||
| 1218 | tmp = readl(&dev->regs->ep_irqmsk); | ||
| 1219 | tmp &= AMD_UNMASK_BIT(ep->num); | ||
| 1220 | writel(tmp, &dev->regs->ep_irqmsk); | ||
| 1221 | } | ||
| 1217 | 1222 | ||
| 1218 | } else if (ep->dma) { | 1223 | } else if (ep->dma) { |
| 1219 | 1224 | ||
| @@ -2005,18 +2010,17 @@ __acquires(dev->lock) | |||
| 2005 | { | 2010 | { |
| 2006 | int tmp; | 2011 | int tmp; |
| 2007 | 2012 | ||
| 2008 | /* empty queues and init hardware */ | ||
| 2009 | udc_basic_init(dev); | ||
| 2010 | for (tmp = 0; tmp < UDC_EP_NUM; tmp++) { | ||
| 2011 | empty_req_queue(&dev->ep[tmp]); | ||
| 2012 | } | ||
| 2013 | |||
| 2014 | if (dev->gadget.speed != USB_SPEED_UNKNOWN) { | 2013 | if (dev->gadget.speed != USB_SPEED_UNKNOWN) { |
| 2015 | spin_unlock(&dev->lock); | 2014 | spin_unlock(&dev->lock); |
| 2016 | driver->disconnect(&dev->gadget); | 2015 | driver->disconnect(&dev->gadget); |
| 2017 | spin_lock(&dev->lock); | 2016 | spin_lock(&dev->lock); |
| 2018 | } | 2017 | } |
| 2019 | /* init */ | 2018 | |
| 2019 | /* empty queues and init hardware */ | ||
| 2020 | udc_basic_init(dev); | ||
| 2021 | for (tmp = 0; tmp < UDC_EP_NUM; tmp++) | ||
| 2022 | empty_req_queue(&dev->ep[tmp]); | ||
| 2023 | |||
| 2020 | udc_setup_endpoints(dev); | 2024 | udc_setup_endpoints(dev); |
| 2021 | } | 2025 | } |
| 2022 | 2026 | ||
| @@ -2472,6 +2476,13 @@ static irqreturn_t udc_data_in_isr(struct udc *dev, int ep_ix) | |||
| 2472 | } | 2476 | } |
| 2473 | } | 2477 | } |
| 2474 | 2478 | ||
| 2479 | } else if (!use_dma && ep->in) { | ||
| 2480 | /* disable interrupt */ | ||
| 2481 | tmp = readl( | ||
| 2482 | &dev->regs->ep_irqmsk); | ||
| 2483 | tmp |= AMD_BIT(ep->num); | ||
| 2484 | writel(tmp, | ||
| 2485 | &dev->regs->ep_irqmsk); | ||
| 2475 | } | 2486 | } |
| 2476 | } | 2487 | } |
| 2477 | /* clear status bits */ | 2488 | /* clear status bits */ |
| @@ -3279,6 +3290,17 @@ static int udc_pci_probe( | |||
| 3279 | goto finished; | 3290 | goto finished; |
| 3280 | } | 3291 | } |
| 3281 | 3292 | ||
| 3293 | spin_lock_init(&dev->lock); | ||
| 3294 | /* udc csr registers base */ | ||
| 3295 | dev->csr = dev->virt_addr + UDC_CSR_ADDR; | ||
| 3296 | /* dev registers base */ | ||
| 3297 | dev->regs = dev->virt_addr + UDC_DEVCFG_ADDR; | ||
| 3298 | /* ep registers base */ | ||
| 3299 | dev->ep_regs = dev->virt_addr + UDC_EPREGS_ADDR; | ||
| 3300 | /* fifo's base */ | ||
| 3301 | dev->rxfifo = (u32 __iomem *)(dev->virt_addr + UDC_RXFIFO_ADDR); | ||
| 3302 | dev->txfifo = (u32 __iomem *)(dev->virt_addr + UDC_TXFIFO_ADDR); | ||
| 3303 | |||
| 3282 | if (request_irq(pdev->irq, udc_irq, IRQF_SHARED, name, dev) != 0) { | 3304 | if (request_irq(pdev->irq, udc_irq, IRQF_SHARED, name, dev) != 0) { |
| 3283 | dev_dbg(&dev->pdev->dev, "request_irq(%d) fail\n", pdev->irq); | 3305 | dev_dbg(&dev->pdev->dev, "request_irq(%d) fail\n", pdev->irq); |
| 3284 | kfree(dev); | 3306 | kfree(dev); |
| @@ -3331,7 +3353,6 @@ static int udc_probe(struct udc *dev) | |||
| 3331 | udc_pollstall_timer.data = 0; | 3353 | udc_pollstall_timer.data = 0; |
| 3332 | 3354 | ||
| 3333 | /* device struct setup */ | 3355 | /* device struct setup */ |
| 3334 | spin_lock_init(&dev->lock); | ||
| 3335 | dev->gadget.ops = &udc_ops; | 3356 | dev->gadget.ops = &udc_ops; |
| 3336 | 3357 | ||
| 3337 | dev_set_name(&dev->gadget.dev, "gadget"); | 3358 | dev_set_name(&dev->gadget.dev, "gadget"); |
| @@ -3340,16 +3361,6 @@ static int udc_probe(struct udc *dev) | |||
| 3340 | dev->gadget.name = name; | 3361 | dev->gadget.name = name; |
| 3341 | dev->gadget.is_dualspeed = 1; | 3362 | dev->gadget.is_dualspeed = 1; |
| 3342 | 3363 | ||
| 3343 | /* udc csr registers base */ | ||
| 3344 | dev->csr = dev->virt_addr + UDC_CSR_ADDR; | ||
| 3345 | /* dev registers base */ | ||
| 3346 | dev->regs = dev->virt_addr + UDC_DEVCFG_ADDR; | ||
| 3347 | /* ep registers base */ | ||
| 3348 | dev->ep_regs = dev->virt_addr + UDC_EPREGS_ADDR; | ||
| 3349 | /* fifo's base */ | ||
| 3350 | dev->rxfifo = (u32 __iomem *)(dev->virt_addr + UDC_RXFIFO_ADDR); | ||
| 3351 | dev->txfifo = (u32 __iomem *)(dev->virt_addr + UDC_TXFIFO_ADDR); | ||
| 3352 | |||
| 3353 | /* init registers, interrupts, ... */ | 3364 | /* init registers, interrupts, ... */ |
| 3354 | startup_registers(dev); | 3365 | startup_registers(dev); |
| 3355 | 3366 | ||
diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c index 9835e0713943..f5f5601701c9 100644 --- a/drivers/usb/host/ehci-hcd.c +++ b/drivers/usb/host/ehci-hcd.c | |||
| @@ -28,6 +28,7 @@ | |||
| 28 | #include <linux/errno.h> | 28 | #include <linux/errno.h> |
| 29 | #include <linux/init.h> | 29 | #include <linux/init.h> |
| 30 | #include <linux/timer.h> | 30 | #include <linux/timer.h> |
| 31 | #include <linux/ktime.h> | ||
| 31 | #include <linux/list.h> | 32 | #include <linux/list.h> |
| 32 | #include <linux/interrupt.h> | 33 | #include <linux/interrupt.h> |
| 33 | #include <linux/usb.h> | 34 | #include <linux/usb.h> |
| @@ -676,6 +677,7 @@ static int ehci_run (struct usb_hcd *hcd) | |||
| 676 | ehci_readl(ehci, &ehci->regs->command); /* unblock posted writes */ | 677 | ehci_readl(ehci, &ehci->regs->command); /* unblock posted writes */ |
| 677 | msleep(5); | 678 | msleep(5); |
| 678 | up_write(&ehci_cf_port_reset_rwsem); | 679 | up_write(&ehci_cf_port_reset_rwsem); |
| 680 | ehci->last_periodic_enable = ktime_get_real(); | ||
| 679 | 681 | ||
| 680 | temp = HC_VERSION(ehci_readl(ehci, &ehci->caps->hc_capbase)); | 682 | temp = HC_VERSION(ehci_readl(ehci, &ehci->caps->hc_capbase)); |
| 681 | ehci_info (ehci, | 683 | ehci_info (ehci, |
diff --git a/drivers/usb/host/ehci-pci.c b/drivers/usb/host/ehci-pci.c index 378861b9d79a..ead5f4f2aa5a 100644 --- a/drivers/usb/host/ehci-pci.c +++ b/drivers/usb/host/ehci-pci.c | |||
| @@ -111,6 +111,10 @@ static int ehci_pci_setup(struct usb_hcd *hcd) | |||
| 111 | switch (pdev->vendor) { | 111 | switch (pdev->vendor) { |
| 112 | case PCI_VENDOR_ID_INTEL: | 112 | case PCI_VENDOR_ID_INTEL: |
| 113 | ehci->need_io_watchdog = 0; | 113 | ehci->need_io_watchdog = 0; |
| 114 | if (pdev->device == 0x27cc) { | ||
| 115 | ehci->broken_periodic = 1; | ||
| 116 | ehci_info(ehci, "using broken periodic workaround\n"); | ||
| 117 | } | ||
| 114 | break; | 118 | break; |
| 115 | case PCI_VENDOR_ID_TDI: | 119 | case PCI_VENDOR_ID_TDI: |
| 116 | if (pdev->device == PCI_DEVICE_ID_TDI_EHCI) { | 120 | if (pdev->device == PCI_DEVICE_ID_TDI_EHCI) { |
diff --git a/drivers/usb/host/ehci-q.c b/drivers/usb/host/ehci-q.c index 00ad9ce392ed..139a2cc3f641 100644 --- a/drivers/usb/host/ehci-q.c +++ b/drivers/usb/host/ehci-q.c | |||
| @@ -487,8 +487,20 @@ halt: | |||
| 487 | * we must clear the TT buffer (11.17.5). | 487 | * we must clear the TT buffer (11.17.5). |
| 488 | */ | 488 | */ |
| 489 | if (unlikely(last_status != -EINPROGRESS && | 489 | if (unlikely(last_status != -EINPROGRESS && |
| 490 | last_status != -EREMOTEIO)) | 490 | last_status != -EREMOTEIO)) { |
| 491 | ehci_clear_tt_buffer(ehci, qh, urb, token); | 491 | /* The TT's in some hubs malfunction when they |
| 492 | * receive this request following a STALL (they | ||
| 493 | * stop sending isochronous packets). Since a | ||
| 494 | * STALL can't leave the TT buffer in a busy | ||
| 495 | * state (if you believe Figures 11-48 - 11-51 | ||
| 496 | * in the USB 2.0 spec), we won't clear the TT | ||
| 497 | * buffer in this case. Strictly speaking this | ||
| 498 | * is a violation of the spec. | ||
| 499 | */ | ||
| 500 | if (last_status != -EPIPE) | ||
| 501 | ehci_clear_tt_buffer(ehci, qh, urb, | ||
| 502 | token); | ||
| 503 | } | ||
| 492 | } | 504 | } |
| 493 | 505 | ||
| 494 | /* if we're removing something not at the queue head, | 506 | /* if we're removing something not at the queue head, |
diff --git a/drivers/usb/host/ehci-sched.c b/drivers/usb/host/ehci-sched.c index b25cdea93a1f..a5535b5e3fe2 100644 --- a/drivers/usb/host/ehci-sched.c +++ b/drivers/usb/host/ehci-sched.c | |||
| @@ -475,6 +475,8 @@ static int enable_periodic (struct ehci_hcd *ehci) | |||
| 475 | /* make sure ehci_work scans these */ | 475 | /* make sure ehci_work scans these */ |
| 476 | ehci->next_uframe = ehci_readl(ehci, &ehci->regs->frame_index) | 476 | ehci->next_uframe = ehci_readl(ehci, &ehci->regs->frame_index) |
| 477 | % (ehci->periodic_size << 3); | 477 | % (ehci->periodic_size << 3); |
| 478 | if (unlikely(ehci->broken_periodic)) | ||
| 479 | ehci->last_periodic_enable = ktime_get_real(); | ||
| 478 | return 0; | 480 | return 0; |
| 479 | } | 481 | } |
| 480 | 482 | ||
| @@ -486,6 +488,16 @@ static int disable_periodic (struct ehci_hcd *ehci) | |||
| 486 | if (--ehci->periodic_sched) | 488 | if (--ehci->periodic_sched) |
| 487 | return 0; | 489 | return 0; |
| 488 | 490 | ||
| 491 | if (unlikely(ehci->broken_periodic)) { | ||
| 492 | /* delay experimentally determined */ | ||
| 493 | ktime_t safe = ktime_add_us(ehci->last_periodic_enable, 1000); | ||
| 494 | ktime_t now = ktime_get_real(); | ||
| 495 | s64 delay = ktime_us_delta(safe, now); | ||
| 496 | |||
| 497 | if (unlikely(delay > 0)) | ||
| 498 | udelay(delay); | ||
| 499 | } | ||
| 500 | |||
| 489 | /* did setting PSE not take effect yet? | 501 | /* did setting PSE not take effect yet? |
| 490 | * takes effect only at frame boundaries... | 502 | * takes effect only at frame boundaries... |
| 491 | */ | 503 | */ |
diff --git a/drivers/usb/host/ehci.h b/drivers/usb/host/ehci.h index 064e76821ff5..2d85e21ff282 100644 --- a/drivers/usb/host/ehci.h +++ b/drivers/usb/host/ehci.h | |||
| @@ -118,6 +118,7 @@ struct ehci_hcd { /* one per controller */ | |||
| 118 | unsigned stamp; | 118 | unsigned stamp; |
| 119 | unsigned random_frame; | 119 | unsigned random_frame; |
| 120 | unsigned long next_statechange; | 120 | unsigned long next_statechange; |
| 121 | ktime_t last_periodic_enable; | ||
| 121 | u32 command; | 122 | u32 command; |
| 122 | 123 | ||
| 123 | /* SILICON QUIRKS */ | 124 | /* SILICON QUIRKS */ |
| @@ -127,6 +128,7 @@ struct ehci_hcd { /* one per controller */ | |||
| 127 | unsigned big_endian_desc:1; | 128 | unsigned big_endian_desc:1; |
| 128 | unsigned has_amcc_usb23:1; | 129 | unsigned has_amcc_usb23:1; |
| 129 | unsigned need_io_watchdog:1; | 130 | unsigned need_io_watchdog:1; |
| 131 | unsigned broken_periodic:1; | ||
| 130 | 132 | ||
| 131 | /* required for usb32 quirk */ | 133 | /* required for usb32 quirk */ |
| 132 | #define OHCI_CTRL_HCFS (3 << 6) | 134 | #define OHCI_CTRL_HCFS (3 << 6) |
diff --git a/drivers/usb/host/ohci-hcd.c b/drivers/usb/host/ohci-hcd.c index 78bb7710f36d..24eb74781919 100644 --- a/drivers/usb/host/ohci-hcd.c +++ b/drivers/usb/host/ohci-hcd.c | |||
| @@ -87,6 +87,7 @@ static int ohci_restart (struct ohci_hcd *ohci); | |||
| 87 | #ifdef CONFIG_PCI | 87 | #ifdef CONFIG_PCI |
| 88 | static void quirk_amd_pll(int state); | 88 | static void quirk_amd_pll(int state); |
| 89 | static void amd_iso_dev_put(void); | 89 | static void amd_iso_dev_put(void); |
| 90 | static void sb800_prefetch(struct ohci_hcd *ohci, int on); | ||
| 90 | #else | 91 | #else |
| 91 | static inline void quirk_amd_pll(int state) | 92 | static inline void quirk_amd_pll(int state) |
| 92 | { | 93 | { |
| @@ -96,6 +97,10 @@ static inline void amd_iso_dev_put(void) | |||
| 96 | { | 97 | { |
| 97 | return; | 98 | return; |
| 98 | } | 99 | } |
| 100 | static inline void sb800_prefetch(struct ohci_hcd *ohci, int on) | ||
| 101 | { | ||
| 102 | return; | ||
| 103 | } | ||
| 99 | #endif | 104 | #endif |
| 100 | 105 | ||
| 101 | 106 | ||
diff --git a/drivers/usb/host/ohci-pci.c b/drivers/usb/host/ohci-pci.c index d2ba04dd785e..b8a1148f248e 100644 --- a/drivers/usb/host/ohci-pci.c +++ b/drivers/usb/host/ohci-pci.c | |||
| @@ -177,6 +177,13 @@ static int ohci_quirk_amd700(struct usb_hcd *hcd) | |||
| 177 | return 0; | 177 | return 0; |
| 178 | 178 | ||
| 179 | pci_read_config_byte(amd_smbus_dev, PCI_REVISION_ID, &rev); | 179 | pci_read_config_byte(amd_smbus_dev, PCI_REVISION_ID, &rev); |
| 180 | |||
| 181 | /* SB800 needs pre-fetch fix */ | ||
| 182 | if ((rev >= 0x40) && (rev <= 0x4f)) { | ||
| 183 | ohci->flags |= OHCI_QUIRK_AMD_PREFETCH; | ||
| 184 | ohci_dbg(ohci, "enabled AMD prefetch quirk\n"); | ||
| 185 | } | ||
| 186 | |||
| 180 | if ((rev > 0x3b) || (rev < 0x30)) { | 187 | if ((rev > 0x3b) || (rev < 0x30)) { |
| 181 | pci_dev_put(amd_smbus_dev); | 188 | pci_dev_put(amd_smbus_dev); |
| 182 | amd_smbus_dev = NULL; | 189 | amd_smbus_dev = NULL; |
| @@ -262,6 +269,19 @@ static void amd_iso_dev_put(void) | |||
| 262 | 269 | ||
| 263 | } | 270 | } |
| 264 | 271 | ||
| 272 | static void sb800_prefetch(struct ohci_hcd *ohci, int on) | ||
| 273 | { | ||
| 274 | struct pci_dev *pdev; | ||
| 275 | u16 misc; | ||
| 276 | |||
| 277 | pdev = to_pci_dev(ohci_to_hcd(ohci)->self.controller); | ||
| 278 | pci_read_config_word(pdev, 0x50, &misc); | ||
| 279 | if (on == 0) | ||
| 280 | pci_write_config_word(pdev, 0x50, misc & 0xfcff); | ||
| 281 | else | ||
| 282 | pci_write_config_word(pdev, 0x50, misc | 0x0300); | ||
| 283 | } | ||
| 284 | |||
| 265 | /* List of quirks for OHCI */ | 285 | /* List of quirks for OHCI */ |
| 266 | static const struct pci_device_id ohci_pci_quirks[] = { | 286 | static const struct pci_device_id ohci_pci_quirks[] = { |
| 267 | { | 287 | { |
diff --git a/drivers/usb/host/ohci-q.c b/drivers/usb/host/ohci-q.c index 16fecb8ecc39..35288bcae0db 100644 --- a/drivers/usb/host/ohci-q.c +++ b/drivers/usb/host/ohci-q.c | |||
| @@ -49,9 +49,12 @@ __acquires(ohci->lock) | |||
| 49 | switch (usb_pipetype (urb->pipe)) { | 49 | switch (usb_pipetype (urb->pipe)) { |
| 50 | case PIPE_ISOCHRONOUS: | 50 | case PIPE_ISOCHRONOUS: |
| 51 | ohci_to_hcd(ohci)->self.bandwidth_isoc_reqs--; | 51 | ohci_to_hcd(ohci)->self.bandwidth_isoc_reqs--; |
| 52 | if (ohci_to_hcd(ohci)->self.bandwidth_isoc_reqs == 0 | 52 | if (ohci_to_hcd(ohci)->self.bandwidth_isoc_reqs == 0) { |
| 53 | && quirk_amdiso(ohci)) | 53 | if (quirk_amdiso(ohci)) |
| 54 | quirk_amd_pll(1); | 54 | quirk_amd_pll(1); |
| 55 | if (quirk_amdprefetch(ohci)) | ||
| 56 | sb800_prefetch(ohci, 0); | ||
| 57 | } | ||
| 55 | break; | 58 | break; |
| 56 | case PIPE_INTERRUPT: | 59 | case PIPE_INTERRUPT: |
| 57 | ohci_to_hcd(ohci)->self.bandwidth_int_reqs--; | 60 | ohci_to_hcd(ohci)->self.bandwidth_int_reqs--; |
| @@ -680,9 +683,12 @@ static void td_submit_urb ( | |||
| 680 | data + urb->iso_frame_desc [cnt].offset, | 683 | data + urb->iso_frame_desc [cnt].offset, |
| 681 | urb->iso_frame_desc [cnt].length, urb, cnt); | 684 | urb->iso_frame_desc [cnt].length, urb, cnt); |
| 682 | } | 685 | } |
| 683 | if (ohci_to_hcd(ohci)->self.bandwidth_isoc_reqs == 0 | 686 | if (ohci_to_hcd(ohci)->self.bandwidth_isoc_reqs == 0) { |
| 684 | && quirk_amdiso(ohci)) | 687 | if (quirk_amdiso(ohci)) |
| 685 | quirk_amd_pll(0); | 688 | quirk_amd_pll(0); |
| 689 | if (quirk_amdprefetch(ohci)) | ||
| 690 | sb800_prefetch(ohci, 1); | ||
| 691 | } | ||
| 686 | periodic = ohci_to_hcd(ohci)->self.bandwidth_isoc_reqs++ == 0 | 692 | periodic = ohci_to_hcd(ohci)->self.bandwidth_isoc_reqs++ == 0 |
| 687 | && ohci_to_hcd(ohci)->self.bandwidth_int_reqs == 0; | 693 | && ohci_to_hcd(ohci)->self.bandwidth_int_reqs == 0; |
| 688 | break; | 694 | break; |
diff --git a/drivers/usb/host/ohci.h b/drivers/usb/host/ohci.h index 222011f6172c..5bf15fed0d9f 100644 --- a/drivers/usb/host/ohci.h +++ b/drivers/usb/host/ohci.h | |||
| @@ -402,6 +402,7 @@ struct ohci_hcd { | |||
| 402 | #define OHCI_QUIRK_FRAME_NO 0x80 /* no big endian frame_no shift */ | 402 | #define OHCI_QUIRK_FRAME_NO 0x80 /* no big endian frame_no shift */ |
| 403 | #define OHCI_QUIRK_HUB_POWER 0x100 /* distrust firmware power/oc setup */ | 403 | #define OHCI_QUIRK_HUB_POWER 0x100 /* distrust firmware power/oc setup */ |
| 404 | #define OHCI_QUIRK_AMD_ISO 0x200 /* ISO transfers*/ | 404 | #define OHCI_QUIRK_AMD_ISO 0x200 /* ISO transfers*/ |
| 405 | #define OHCI_QUIRK_AMD_PREFETCH 0x400 /* pre-fetch for ISO transfer */ | ||
| 405 | // there are also chip quirks/bugs in init logic | 406 | // there are also chip quirks/bugs in init logic |
| 406 | 407 | ||
| 407 | struct work_struct nec_work; /* Worker for NEC quirk */ | 408 | struct work_struct nec_work; /* Worker for NEC quirk */ |
| @@ -433,6 +434,10 @@ static inline int quirk_amdiso(struct ohci_hcd *ohci) | |||
| 433 | { | 434 | { |
| 434 | return ohci->flags & OHCI_QUIRK_AMD_ISO; | 435 | return ohci->flags & OHCI_QUIRK_AMD_ISO; |
| 435 | } | 436 | } |
| 437 | static inline int quirk_amdprefetch(struct ohci_hcd *ohci) | ||
| 438 | { | ||
| 439 | return ohci->flags & OHCI_QUIRK_AMD_PREFETCH; | ||
| 440 | } | ||
| 436 | #else | 441 | #else |
| 437 | static inline int quirk_nec(struct ohci_hcd *ohci) | 442 | static inline int quirk_nec(struct ohci_hcd *ohci) |
| 438 | { | 443 | { |
| @@ -446,6 +451,10 @@ static inline int quirk_amdiso(struct ohci_hcd *ohci) | |||
| 446 | { | 451 | { |
| 447 | return 0; | 452 | return 0; |
| 448 | } | 453 | } |
| 454 | static inline int quirk_amdprefetch(struct ohci_hcd *ohci) | ||
| 455 | { | ||
| 456 | return 0; | ||
| 457 | } | ||
| 449 | #endif | 458 | #endif |
| 450 | 459 | ||
| 451 | /* convert between an hcd pointer and the corresponding ohci_hcd */ | 460 | /* convert between an hcd pointer and the corresponding ohci_hcd */ |
diff --git a/drivers/usb/host/xhci-mem.c b/drivers/usb/host/xhci-mem.c index 1db4fea8c170..b8fd270a8b0d 100644 --- a/drivers/usb/host/xhci-mem.c +++ b/drivers/usb/host/xhci-mem.c | |||
| @@ -802,9 +802,11 @@ void xhci_mem_cleanup(struct xhci_hcd *xhci) | |||
| 802 | int i; | 802 | int i; |
| 803 | 803 | ||
| 804 | /* Free the Event Ring Segment Table and the actual Event Ring */ | 804 | /* Free the Event Ring Segment Table and the actual Event Ring */ |
| 805 | xhci_writel(xhci, 0, &xhci->ir_set->erst_size); | 805 | if (xhci->ir_set) { |
| 806 | xhci_write_64(xhci, 0, &xhci->ir_set->erst_base); | 806 | xhci_writel(xhci, 0, &xhci->ir_set->erst_size); |
| 807 | xhci_write_64(xhci, 0, &xhci->ir_set->erst_dequeue); | 807 | xhci_write_64(xhci, 0, &xhci->ir_set->erst_base); |
| 808 | xhci_write_64(xhci, 0, &xhci->ir_set->erst_dequeue); | ||
| 809 | } | ||
| 808 | size = sizeof(struct xhci_erst_entry)*(xhci->erst.num_entries); | 810 | size = sizeof(struct xhci_erst_entry)*(xhci->erst.num_entries); |
| 809 | if (xhci->erst.entries) | 811 | if (xhci->erst.entries) |
| 810 | pci_free_consistent(pdev, size, | 812 | pci_free_consistent(pdev, size, |
| @@ -841,9 +843,9 @@ void xhci_mem_cleanup(struct xhci_hcd *xhci) | |||
| 841 | xhci->dcbaa, xhci->dcbaa->dma); | 843 | xhci->dcbaa, xhci->dcbaa->dma); |
| 842 | xhci->dcbaa = NULL; | 844 | xhci->dcbaa = NULL; |
| 843 | 845 | ||
| 846 | scratchpad_free(xhci); | ||
| 844 | xhci->page_size = 0; | 847 | xhci->page_size = 0; |
| 845 | xhci->page_shift = 0; | 848 | xhci->page_shift = 0; |
| 846 | scratchpad_free(xhci); | ||
| 847 | } | 849 | } |
| 848 | 850 | ||
| 849 | int xhci_mem_init(struct xhci_hcd *xhci, gfp_t flags) | 851 | int xhci_mem_init(struct xhci_hcd *xhci, gfp_t flags) |
diff --git a/drivers/usb/host/xhci-ring.c b/drivers/usb/host/xhci-ring.c index 173c39c76489..821b7b4709de 100644 --- a/drivers/usb/host/xhci-ring.c +++ b/drivers/usb/host/xhci-ring.c | |||
| @@ -864,9 +864,11 @@ static struct xhci_segment *trb_in_td( | |||
| 864 | cur_seg = start_seg; | 864 | cur_seg = start_seg; |
| 865 | 865 | ||
| 866 | do { | 866 | do { |
| 867 | if (start_dma == 0) | ||
| 868 | return 0; | ||
| 867 | /* We may get an event for a Link TRB in the middle of a TD */ | 869 | /* We may get an event for a Link TRB in the middle of a TD */ |
| 868 | end_seg_dma = xhci_trb_virt_to_dma(cur_seg, | 870 | end_seg_dma = xhci_trb_virt_to_dma(cur_seg, |
| 869 | &start_seg->trbs[TRBS_PER_SEGMENT - 1]); | 871 | &cur_seg->trbs[TRBS_PER_SEGMENT - 1]); |
| 870 | /* If the end TRB isn't in this segment, this is set to 0 */ | 872 | /* If the end TRB isn't in this segment, this is set to 0 */ |
| 871 | end_trb_dma = xhci_trb_virt_to_dma(cur_seg, end_trb); | 873 | end_trb_dma = xhci_trb_virt_to_dma(cur_seg, end_trb); |
| 872 | 874 | ||
| @@ -893,8 +895,9 @@ static struct xhci_segment *trb_in_td( | |||
| 893 | } | 895 | } |
| 894 | cur_seg = cur_seg->next; | 896 | cur_seg = cur_seg->next; |
| 895 | start_dma = xhci_trb_virt_to_dma(cur_seg, &cur_seg->trbs[0]); | 897 | start_dma = xhci_trb_virt_to_dma(cur_seg, &cur_seg->trbs[0]); |
| 896 | } while (1); | 898 | } while (cur_seg != start_seg); |
| 897 | 899 | ||
| 900 | return 0; | ||
| 898 | } | 901 | } |
| 899 | 902 | ||
| 900 | /* | 903 | /* |
diff --git a/drivers/usb/mon/mon_bin.c b/drivers/usb/mon/mon_bin.c index 9ed3e741bee1..10f3205798e8 100644 --- a/drivers/usb/mon/mon_bin.c +++ b/drivers/usb/mon/mon_bin.c | |||
| @@ -348,12 +348,12 @@ static unsigned int mon_buff_area_alloc_contiguous(struct mon_reader_bin *rp, | |||
| 348 | 348 | ||
| 349 | /* | 349 | /* |
| 350 | * Return a few (kilo-)bytes to the head of the buffer. | 350 | * Return a few (kilo-)bytes to the head of the buffer. |
| 351 | * This is used if a DMA fetch fails. | 351 | * This is used if a data fetch fails. |
| 352 | */ | 352 | */ |
| 353 | static void mon_buff_area_shrink(struct mon_reader_bin *rp, unsigned int size) | 353 | static void mon_buff_area_shrink(struct mon_reader_bin *rp, unsigned int size) |
| 354 | { | 354 | { |
| 355 | 355 | ||
| 356 | size = (size + PKT_ALIGN-1) & ~(PKT_ALIGN-1); | 356 | /* size &= ~(PKT_ALIGN-1); -- we're called with aligned size */ |
| 357 | rp->b_cnt -= size; | 357 | rp->b_cnt -= size; |
| 358 | if (rp->b_in < size) | 358 | if (rp->b_in < size) |
| 359 | rp->b_in += rp->b_size; | 359 | rp->b_in += rp->b_size; |
| @@ -433,6 +433,7 @@ static void mon_bin_event(struct mon_reader_bin *rp, struct urb *urb, | |||
| 433 | unsigned int urb_length; | 433 | unsigned int urb_length; |
| 434 | unsigned int offset; | 434 | unsigned int offset; |
| 435 | unsigned int length; | 435 | unsigned int length; |
| 436 | unsigned int delta; | ||
| 436 | unsigned int ndesc, lendesc; | 437 | unsigned int ndesc, lendesc; |
| 437 | unsigned char dir; | 438 | unsigned char dir; |
| 438 | struct mon_bin_hdr *ep; | 439 | struct mon_bin_hdr *ep; |
| @@ -537,8 +538,10 @@ static void mon_bin_event(struct mon_reader_bin *rp, struct urb *urb, | |||
| 537 | if (length != 0) { | 538 | if (length != 0) { |
| 538 | ep->flag_data = mon_bin_get_data(rp, offset, urb, length); | 539 | ep->flag_data = mon_bin_get_data(rp, offset, urb, length); |
| 539 | if (ep->flag_data != 0) { /* Yes, it's 0x00, not '0' */ | 540 | if (ep->flag_data != 0) { /* Yes, it's 0x00, not '0' */ |
| 540 | ep->len_cap = 0; | 541 | delta = (ep->len_cap + PKT_ALIGN-1) & ~(PKT_ALIGN-1); |
| 541 | mon_buff_area_shrink(rp, length); | 542 | ep->len_cap -= length; |
| 543 | delta -= (ep->len_cap + PKT_ALIGN-1) & ~(PKT_ALIGN-1); | ||
| 544 | mon_buff_area_shrink(rp, delta); | ||
| 542 | } | 545 | } |
| 543 | } else { | 546 | } else { |
| 544 | ep->flag_data = data_tag; | 547 | ep->flag_data = data_tag; |
diff --git a/drivers/usb/musb/cppi_dma.c b/drivers/usb/musb/cppi_dma.c index c3577bbbae6c..ef2332a9941d 100644 --- a/drivers/usb/musb/cppi_dma.c +++ b/drivers/usb/musb/cppi_dma.c | |||
| @@ -1442,11 +1442,6 @@ static int cppi_channel_abort(struct dma_channel *channel) | |||
| 1442 | musb_writew(regs, MUSB_TXCSR, value); | 1442 | musb_writew(regs, MUSB_TXCSR, value); |
| 1443 | musb_writew(regs, MUSB_TXCSR, value); | 1443 | musb_writew(regs, MUSB_TXCSR, value); |
| 1444 | 1444 | ||
| 1445 | /* re-enable interrupt */ | ||
| 1446 | if (enabled) | ||
| 1447 | musb_writel(tibase, DAVINCI_TXCPPI_INTENAB_REG, | ||
| 1448 | (1 << cppi_ch->index)); | ||
| 1449 | |||
| 1450 | /* While we scrub the TX state RAM, ensure that we clean | 1445 | /* While we scrub the TX state RAM, ensure that we clean |
| 1451 | * up any interrupt that's currently asserted: | 1446 | * up any interrupt that's currently asserted: |
| 1452 | * 1. Write to completion Ptr value 0x1(bit 0 set) | 1447 | * 1. Write to completion Ptr value 0x1(bit 0 set) |
| @@ -1459,6 +1454,11 @@ static int cppi_channel_abort(struct dma_channel *channel) | |||
| 1459 | cppi_reset_tx(tx_ram, 1); | 1454 | cppi_reset_tx(tx_ram, 1); |
| 1460 | musb_writel(&tx_ram->tx_complete, 0, 0); | 1455 | musb_writel(&tx_ram->tx_complete, 0, 0); |
| 1461 | 1456 | ||
| 1457 | /* re-enable interrupt */ | ||
| 1458 | if (enabled) | ||
| 1459 | musb_writel(tibase, DAVINCI_TXCPPI_INTENAB_REG, | ||
| 1460 | (1 << cppi_ch->index)); | ||
| 1461 | |||
| 1462 | cppi_dump_tx(5, cppi_ch, " (done teardown)"); | 1462 | cppi_dump_tx(5, cppi_ch, " (done teardown)"); |
| 1463 | 1463 | ||
| 1464 | /* REVISIT tx side _should_ clean up the same way | 1464 | /* REVISIT tx side _should_ clean up the same way |
diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c index 3a61ddb62bd2..547e0e390726 100644 --- a/drivers/usb/musb/musb_core.c +++ b/drivers/usb/musb/musb_core.c | |||
| @@ -1450,7 +1450,7 @@ static int __init musb_core_init(u16 musb_type, struct musb *musb) | |||
| 1450 | #endif | 1450 | #endif |
| 1451 | 1451 | ||
| 1452 | if (hw_ep->max_packet_sz_tx) { | 1452 | if (hw_ep->max_packet_sz_tx) { |
| 1453 | printk(KERN_DEBUG | 1453 | DBG(1, |
| 1454 | "%s: hw_ep %d%s, %smax %d\n", | 1454 | "%s: hw_ep %d%s, %smax %d\n", |
| 1455 | musb_driver_name, i, | 1455 | musb_driver_name, i, |
| 1456 | hw_ep->is_shared_fifo ? "shared" : "tx", | 1456 | hw_ep->is_shared_fifo ? "shared" : "tx", |
| @@ -1459,7 +1459,7 @@ static int __init musb_core_init(u16 musb_type, struct musb *musb) | |||
| 1459 | hw_ep->max_packet_sz_tx); | 1459 | hw_ep->max_packet_sz_tx); |
| 1460 | } | 1460 | } |
| 1461 | if (hw_ep->max_packet_sz_rx && !hw_ep->is_shared_fifo) { | 1461 | if (hw_ep->max_packet_sz_rx && !hw_ep->is_shared_fifo) { |
| 1462 | printk(KERN_DEBUG | 1462 | DBG(1, |
| 1463 | "%s: hw_ep %d%s, %smax %d\n", | 1463 | "%s: hw_ep %d%s, %smax %d\n", |
| 1464 | musb_driver_name, i, | 1464 | musb_driver_name, i, |
| 1465 | "rx", | 1465 | "rx", |
diff --git a/drivers/usb/musb/musb_gadget.c b/drivers/usb/musb/musb_gadget.c index 8b3c4e2ed7b8..74073f9a43f0 100644 --- a/drivers/usb/musb/musb_gadget.c +++ b/drivers/usb/musb/musb_gadget.c | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | * Copyright 2005 Mentor Graphics Corporation | 4 | * Copyright 2005 Mentor Graphics Corporation |
| 5 | * Copyright (C) 2005-2006 by Texas Instruments | 5 | * Copyright (C) 2005-2006 by Texas Instruments |
| 6 | * Copyright (C) 2006-2007 Nokia Corporation | 6 | * Copyright (C) 2006-2007 Nokia Corporation |
| 7 | * Copyright (C) 2009 MontaVista Software, Inc. <source@mvista.com> | ||
| 7 | * | 8 | * |
| 8 | * This program is free software; you can redistribute it and/or | 9 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License | 10 | * modify it under the terms of the GNU General Public License |
| @@ -436,14 +437,6 @@ void musb_g_tx(struct musb *musb, u8 epnum) | |||
| 436 | csr |= MUSB_TXCSR_P_WZC_BITS; | 437 | csr |= MUSB_TXCSR_P_WZC_BITS; |
| 437 | csr &= ~MUSB_TXCSR_P_SENTSTALL; | 438 | csr &= ~MUSB_TXCSR_P_SENTSTALL; |
| 438 | musb_writew(epio, MUSB_TXCSR, csr); | 439 | musb_writew(epio, MUSB_TXCSR, csr); |
| 439 | if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) { | ||
| 440 | dma->status = MUSB_DMA_STATUS_CORE_ABORT; | ||
| 441 | musb->dma_controller->channel_abort(dma); | ||
| 442 | } | ||
| 443 | |||
| 444 | if (request) | ||
| 445 | musb_g_giveback(musb_ep, request, -EPIPE); | ||
| 446 | |||
| 447 | break; | 440 | break; |
| 448 | } | 441 | } |
| 449 | 442 | ||
| @@ -582,15 +575,25 @@ void musb_g_tx(struct musb *musb, u8 epnum) | |||
| 582 | */ | 575 | */ |
| 583 | static void rxstate(struct musb *musb, struct musb_request *req) | 576 | static void rxstate(struct musb *musb, struct musb_request *req) |
| 584 | { | 577 | { |
| 585 | u16 csr = 0; | ||
| 586 | const u8 epnum = req->epnum; | 578 | const u8 epnum = req->epnum; |
| 587 | struct usb_request *request = &req->request; | 579 | struct usb_request *request = &req->request; |
| 588 | struct musb_ep *musb_ep = &musb->endpoints[epnum].ep_out; | 580 | struct musb_ep *musb_ep = &musb->endpoints[epnum].ep_out; |
| 589 | void __iomem *epio = musb->endpoints[epnum].regs; | 581 | void __iomem *epio = musb->endpoints[epnum].regs; |
| 590 | unsigned fifo_count = 0; | 582 | unsigned fifo_count = 0; |
| 591 | u16 len = musb_ep->packet_sz; | 583 | u16 len = musb_ep->packet_sz; |
| 584 | u16 csr = musb_readw(epio, MUSB_RXCSR); | ||
| 592 | 585 | ||
| 593 | csr = musb_readw(epio, MUSB_RXCSR); | 586 | /* We shouldn't get here while DMA is active, but we do... */ |
| 587 | if (dma_channel_status(musb_ep->dma) == MUSB_DMA_STATUS_BUSY) { | ||
| 588 | DBG(4, "DMA pending...\n"); | ||
| 589 | return; | ||
| 590 | } | ||
| 591 | |||
| 592 | if (csr & MUSB_RXCSR_P_SENDSTALL) { | ||
| 593 | DBG(5, "%s stalling, RXCSR %04x\n", | ||
| 594 | musb_ep->end_point.name, csr); | ||
| 595 | return; | ||
| 596 | } | ||
| 594 | 597 | ||
| 595 | if (is_cppi_enabled() && musb_ep->dma) { | 598 | if (is_cppi_enabled() && musb_ep->dma) { |
| 596 | struct dma_controller *c = musb->dma_controller; | 599 | struct dma_controller *c = musb->dma_controller; |
| @@ -761,19 +764,10 @@ void musb_g_rx(struct musb *musb, u8 epnum) | |||
| 761 | csr, dma ? " (dma)" : "", request); | 764 | csr, dma ? " (dma)" : "", request); |
| 762 | 765 | ||
| 763 | if (csr & MUSB_RXCSR_P_SENTSTALL) { | 766 | if (csr & MUSB_RXCSR_P_SENTSTALL) { |
| 764 | if (dma_channel_status(dma) == MUSB_DMA_STATUS_BUSY) { | ||
| 765 | dma->status = MUSB_DMA_STATUS_CORE_ABORT; | ||
| 766 | (void) musb->dma_controller->channel_abort(dma); | ||
| 767 | request->actual += musb_ep->dma->actual_len; | ||
| 768 | } | ||
| 769 | |||
| 770 | csr |= MUSB_RXCSR_P_WZC_BITS; | 767 | csr |= MUSB_RXCSR_P_WZC_BITS; |
| 771 | csr &= ~MUSB_RXCSR_P_SENTSTALL; | 768 | csr &= ~MUSB_RXCSR_P_SENTSTALL; |
| 772 | musb_writew(epio, MUSB_RXCSR, csr); | 769 | musb_writew(epio, MUSB_RXCSR, csr); |
| 773 | 770 | return; | |
| 774 | if (request) | ||
| 775 | musb_g_giveback(musb_ep, request, -EPIPE); | ||
| 776 | goto done; | ||
| 777 | } | 771 | } |
| 778 | 772 | ||
| 779 | if (csr & MUSB_RXCSR_P_OVERRUN) { | 773 | if (csr & MUSB_RXCSR_P_OVERRUN) { |
| @@ -795,7 +789,7 @@ void musb_g_rx(struct musb *musb, u8 epnum) | |||
| 795 | DBG((csr & MUSB_RXCSR_DMAENAB) ? 4 : 1, | 789 | DBG((csr & MUSB_RXCSR_DMAENAB) ? 4 : 1, |
| 796 | "%s busy, csr %04x\n", | 790 | "%s busy, csr %04x\n", |
| 797 | musb_ep->end_point.name, csr); | 791 | musb_ep->end_point.name, csr); |
| 798 | goto done; | 792 | return; |
| 799 | } | 793 | } |
| 800 | 794 | ||
| 801 | if (dma && (csr & MUSB_RXCSR_DMAENAB)) { | 795 | if (dma && (csr & MUSB_RXCSR_DMAENAB)) { |
| @@ -826,22 +820,15 @@ void musb_g_rx(struct musb *musb, u8 epnum) | |||
| 826 | if ((request->actual < request->length) | 820 | if ((request->actual < request->length) |
| 827 | && (musb_ep->dma->actual_len | 821 | && (musb_ep->dma->actual_len |
| 828 | == musb_ep->packet_sz)) | 822 | == musb_ep->packet_sz)) |
| 829 | goto done; | 823 | return; |
| 830 | #endif | 824 | #endif |
| 831 | musb_g_giveback(musb_ep, request, 0); | 825 | musb_g_giveback(musb_ep, request, 0); |
| 832 | 826 | ||
| 833 | request = next_request(musb_ep); | 827 | request = next_request(musb_ep); |
| 834 | if (!request) | 828 | if (!request) |
| 835 | goto done; | 829 | return; |
| 836 | |||
| 837 | /* don't start more i/o till the stall clears */ | ||
| 838 | musb_ep_select(mbase, epnum); | ||
| 839 | csr = musb_readw(epio, MUSB_RXCSR); | ||
| 840 | if (csr & MUSB_RXCSR_P_SENDSTALL) | ||
| 841 | goto done; | ||
| 842 | } | 830 | } |
| 843 | 831 | ||
| 844 | |||
| 845 | /* analyze request if the ep is hot */ | 832 | /* analyze request if the ep is hot */ |
| 846 | if (request) | 833 | if (request) |
| 847 | rxstate(musb, to_musb_request(request)); | 834 | rxstate(musb, to_musb_request(request)); |
| @@ -849,8 +836,6 @@ void musb_g_rx(struct musb *musb, u8 epnum) | |||
| 849 | DBG(3, "packet waiting for %s%s request\n", | 836 | DBG(3, "packet waiting for %s%s request\n", |
| 850 | musb_ep->desc ? "" : "inactive ", | 837 | musb_ep->desc ? "" : "inactive ", |
| 851 | musb_ep->end_point.name); | 838 | musb_ep->end_point.name); |
| 852 | |||
| 853 | done: | ||
| 854 | return; | 839 | return; |
| 855 | } | 840 | } |
| 856 | 841 | ||
| @@ -1244,7 +1229,7 @@ int musb_gadget_set_halt(struct usb_ep *ep, int value) | |||
| 1244 | void __iomem *mbase; | 1229 | void __iomem *mbase; |
| 1245 | unsigned long flags; | 1230 | unsigned long flags; |
| 1246 | u16 csr; | 1231 | u16 csr; |
| 1247 | struct musb_request *request = NULL; | 1232 | struct musb_request *request; |
| 1248 | int status = 0; | 1233 | int status = 0; |
| 1249 | 1234 | ||
| 1250 | if (!ep) | 1235 | if (!ep) |
| @@ -1260,24 +1245,29 @@ int musb_gadget_set_halt(struct usb_ep *ep, int value) | |||
| 1260 | 1245 | ||
| 1261 | musb_ep_select(mbase, epnum); | 1246 | musb_ep_select(mbase, epnum); |
| 1262 | 1247 | ||
| 1263 | /* cannot portably stall with non-empty FIFO */ | ||
| 1264 | request = to_musb_request(next_request(musb_ep)); | 1248 | request = to_musb_request(next_request(musb_ep)); |
| 1265 | if (value && musb_ep->is_in) { | 1249 | if (value) { |
| 1266 | csr = musb_readw(epio, MUSB_TXCSR); | 1250 | if (request) { |
| 1267 | if (csr & MUSB_TXCSR_FIFONOTEMPTY) { | 1251 | DBG(3, "request in progress, cannot halt %s\n", |
| 1268 | DBG(3, "%s fifo busy, cannot halt\n", ep->name); | 1252 | ep->name); |
| 1269 | spin_unlock_irqrestore(&musb->lock, flags); | 1253 | status = -EAGAIN; |
| 1270 | return -EAGAIN; | 1254 | goto done; |
| 1255 | } | ||
| 1256 | /* Cannot portably stall with non-empty FIFO */ | ||
| 1257 | if (musb_ep->is_in) { | ||
| 1258 | csr = musb_readw(epio, MUSB_TXCSR); | ||
| 1259 | if (csr & MUSB_TXCSR_FIFONOTEMPTY) { | ||
| 1260 | DBG(3, "FIFO busy, cannot halt %s\n", ep->name); | ||
| 1261 | status = -EAGAIN; | ||
| 1262 | goto done; | ||
| 1263 | } | ||
| 1271 | } | 1264 | } |
| 1272 | |||
| 1273 | } | 1265 | } |
| 1274 | 1266 | ||
| 1275 | /* set/clear the stall and toggle bits */ | 1267 | /* set/clear the stall and toggle bits */ |
| 1276 | DBG(2, "%s: %s stall\n", ep->name, value ? "set" : "clear"); | 1268 | DBG(2, "%s: %s stall\n", ep->name, value ? "set" : "clear"); |
| 1277 | if (musb_ep->is_in) { | 1269 | if (musb_ep->is_in) { |
| 1278 | csr = musb_readw(epio, MUSB_TXCSR); | 1270 | csr = musb_readw(epio, MUSB_TXCSR); |
| 1279 | if (csr & MUSB_TXCSR_FIFONOTEMPTY) | ||
| 1280 | csr |= MUSB_TXCSR_FLUSHFIFO; | ||
| 1281 | csr |= MUSB_TXCSR_P_WZC_BITS | 1271 | csr |= MUSB_TXCSR_P_WZC_BITS |
| 1282 | | MUSB_TXCSR_CLRDATATOG; | 1272 | | MUSB_TXCSR_CLRDATATOG; |
| 1283 | if (value) | 1273 | if (value) |
| @@ -1300,14 +1290,13 @@ int musb_gadget_set_halt(struct usb_ep *ep, int value) | |||
| 1300 | musb_writew(epio, MUSB_RXCSR, csr); | 1290 | musb_writew(epio, MUSB_RXCSR, csr); |
| 1301 | } | 1291 | } |
| 1302 | 1292 | ||
| 1303 | done: | ||
| 1304 | |||
| 1305 | /* maybe start the first request in the queue */ | 1293 | /* maybe start the first request in the queue */ |
| 1306 | if (!musb_ep->busy && !value && request) { | 1294 | if (!musb_ep->busy && !value && request) { |
| 1307 | DBG(3, "restarting the request\n"); | 1295 | DBG(3, "restarting the request\n"); |
| 1308 | musb_ep_restart(musb, request); | 1296 | musb_ep_restart(musb, request); |
| 1309 | } | 1297 | } |
| 1310 | 1298 | ||
| 1299 | done: | ||
| 1311 | spin_unlock_irqrestore(&musb->lock, flags); | 1300 | spin_unlock_irqrestore(&musb->lock, flags); |
| 1312 | return status; | 1301 | return status; |
| 1313 | } | 1302 | } |
diff --git a/drivers/usb/musb/musb_gadget_ep0.c b/drivers/usb/musb/musb_gadget_ep0.c index 7a6778675ad3..522efb31b56b 100644 --- a/drivers/usb/musb/musb_gadget_ep0.c +++ b/drivers/usb/musb/musb_gadget_ep0.c | |||
| @@ -511,7 +511,8 @@ static void ep0_txstate(struct musb *musb) | |||
| 511 | 511 | ||
| 512 | /* update the flags */ | 512 | /* update the flags */ |
| 513 | if (fifo_count < MUSB_MAX_END0_PACKET | 513 | if (fifo_count < MUSB_MAX_END0_PACKET |
| 514 | || request->actual == request->length) { | 514 | || (request->actual == request->length |
| 515 | && !request->zero)) { | ||
| 515 | musb->ep0_state = MUSB_EP0_STAGE_STATUSOUT; | 516 | musb->ep0_state = MUSB_EP0_STAGE_STATUSOUT; |
| 516 | csr |= MUSB_CSR0_P_DATAEND; | 517 | csr |= MUSB_CSR0_P_DATAEND; |
| 517 | } else | 518 | } else |
diff --git a/drivers/usb/musb/musb_host.c b/drivers/usb/musb/musb_host.c index cf94511485f2..e3ab40a966eb 100644 --- a/drivers/usb/musb/musb_host.c +++ b/drivers/usb/musb/musb_host.c | |||
| @@ -1301,8 +1301,11 @@ void musb_host_tx(struct musb *musb, u8 epnum) | |||
| 1301 | return; | 1301 | return; |
| 1302 | } else if (usb_pipeisoc(pipe) && dma) { | 1302 | } else if (usb_pipeisoc(pipe) && dma) { |
| 1303 | if (musb_tx_dma_program(musb->dma_controller, hw_ep, qh, urb, | 1303 | if (musb_tx_dma_program(musb->dma_controller, hw_ep, qh, urb, |
| 1304 | offset, length)) | 1304 | offset, length)) { |
| 1305 | if (is_cppi_enabled() || tusb_dma_omap()) | ||
| 1306 | musb_h_tx_dma_start(hw_ep); | ||
| 1305 | return; | 1307 | return; |
| 1308 | } | ||
| 1306 | } else if (tx_csr & MUSB_TXCSR_DMAENAB) { | 1309 | } else if (tx_csr & MUSB_TXCSR_DMAENAB) { |
| 1307 | DBG(1, "not complete, but DMA enabled?\n"); | 1310 | DBG(1, "not complete, but DMA enabled?\n"); |
| 1308 | return; | 1311 | return; |
diff --git a/drivers/usb/serial/cp210x.c b/drivers/usb/serial/cp210x.c index 698252a4dc5d..bd254ec97d14 100644 --- a/drivers/usb/serial/cp210x.c +++ b/drivers/usb/serial/cp210x.c | |||
| @@ -50,6 +50,8 @@ static int cp210x_tiocmset_port(struct usb_serial_port *port, struct file *, | |||
| 50 | static void cp210x_break_ctl(struct tty_struct *, int); | 50 | static void cp210x_break_ctl(struct tty_struct *, int); |
| 51 | static int cp210x_startup(struct usb_serial *); | 51 | static int cp210x_startup(struct usb_serial *); |
| 52 | static void cp210x_disconnect(struct usb_serial *); | 52 | static void cp210x_disconnect(struct usb_serial *); |
| 53 | static void cp210x_dtr_rts(struct usb_serial_port *p, int on); | ||
| 54 | static int cp210x_carrier_raised(struct usb_serial_port *p); | ||
| 53 | 55 | ||
| 54 | static int debug; | 56 | static int debug; |
| 55 | 57 | ||
| @@ -143,6 +145,8 @@ static struct usb_serial_driver cp210x_device = { | |||
| 143 | .tiocmset = cp210x_tiocmset, | 145 | .tiocmset = cp210x_tiocmset, |
| 144 | .attach = cp210x_startup, | 146 | .attach = cp210x_startup, |
| 145 | .disconnect = cp210x_disconnect, | 147 | .disconnect = cp210x_disconnect, |
| 148 | .dtr_rts = cp210x_dtr_rts, | ||
| 149 | .carrier_raised = cp210x_carrier_raised | ||
| 146 | }; | 150 | }; |
| 147 | 151 | ||
| 148 | /* Config request types */ | 152 | /* Config request types */ |
| @@ -746,6 +750,14 @@ static int cp210x_tiocmset_port(struct usb_serial_port *port, struct file *file, | |||
| 746 | return cp210x_set_config(port, CP210X_SET_MHS, &control, 2); | 750 | return cp210x_set_config(port, CP210X_SET_MHS, &control, 2); |
| 747 | } | 751 | } |
| 748 | 752 | ||
| 753 | static void cp210x_dtr_rts(struct usb_serial_port *p, int on) | ||
| 754 | { | ||
| 755 | if (on) | ||
| 756 | cp210x_tiocmset_port(p, NULL, TIOCM_DTR|TIOCM_RTS, 0); | ||
| 757 | else | ||
| 758 | cp210x_tiocmset_port(p, NULL, 0, TIOCM_DTR|TIOCM_RTS); | ||
| 759 | } | ||
| 760 | |||
| 749 | static int cp210x_tiocmget (struct tty_struct *tty, struct file *file) | 761 | static int cp210x_tiocmget (struct tty_struct *tty, struct file *file) |
| 750 | { | 762 | { |
| 751 | struct usb_serial_port *port = tty->driver_data; | 763 | struct usb_serial_port *port = tty->driver_data; |
| @@ -768,6 +780,15 @@ static int cp210x_tiocmget (struct tty_struct *tty, struct file *file) | |||
| 768 | return result; | 780 | return result; |
| 769 | } | 781 | } |
| 770 | 782 | ||
| 783 | static int cp210x_carrier_raised(struct usb_serial_port *p) | ||
| 784 | { | ||
| 785 | unsigned int control; | ||
| 786 | cp210x_get_config(p, CP210X_GET_MDMSTS, &control, 1); | ||
| 787 | if (control & CONTROL_DCD) | ||
| 788 | return 1; | ||
| 789 | return 0; | ||
| 790 | } | ||
| 791 | |||
| 771 | static void cp210x_break_ctl (struct tty_struct *tty, int break_state) | 792 | static void cp210x_break_ctl (struct tty_struct *tty, int break_state) |
| 772 | { | 793 | { |
| 773 | struct usb_serial_port *port = tty->driver_data; | 794 | struct usb_serial_port *port = tty->driver_data; |
diff --git a/drivers/usb/serial/ftdi_sio.c b/drivers/usb/serial/ftdi_sio.c index 9c60d6d4908a..ebcc6d0e2e91 100644 --- a/drivers/usb/serial/ftdi_sio.c +++ b/drivers/usb/serial/ftdi_sio.c | |||
| @@ -1937,7 +1937,7 @@ static void ftdi_write_bulk_callback(struct urb *urb) | |||
| 1937 | return; | 1937 | return; |
| 1938 | } | 1938 | } |
| 1939 | /* account for transferred data */ | 1939 | /* account for transferred data */ |
| 1940 | countback = urb->actual_length; | 1940 | countback = urb->transfer_buffer_length; |
| 1941 | data_offset = priv->write_offset; | 1941 | data_offset = priv->write_offset; |
| 1942 | if (data_offset > 0) { | 1942 | if (data_offset > 0) { |
| 1943 | /* Subtract the control bytes */ | 1943 | /* Subtract the control bytes */ |
| @@ -1950,7 +1950,6 @@ static void ftdi_write_bulk_callback(struct urb *urb) | |||
| 1950 | 1950 | ||
| 1951 | if (status) { | 1951 | if (status) { |
| 1952 | dbg("nonzero write bulk status received: %d", status); | 1952 | dbg("nonzero write bulk status received: %d", status); |
| 1953 | return; | ||
| 1954 | } | 1953 | } |
| 1955 | 1954 | ||
| 1956 | usb_serial_port_softint(port); | 1955 | usb_serial_port_softint(port); |
diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c index cd44c68954df..0577e4b61114 100644 --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c | |||
| @@ -308,6 +308,7 @@ static int option_resume(struct usb_serial *serial); | |||
| 308 | 308 | ||
| 309 | #define DLINK_VENDOR_ID 0x1186 | 309 | #define DLINK_VENDOR_ID 0x1186 |
| 310 | #define DLINK_PRODUCT_DWM_652 0x3e04 | 310 | #define DLINK_PRODUCT_DWM_652 0x3e04 |
| 311 | #define DLINK_PRODUCT_DWM_652_U5 0xce16 | ||
| 311 | 312 | ||
| 312 | #define QISDA_VENDOR_ID 0x1da5 | 313 | #define QISDA_VENDOR_ID 0x1da5 |
| 313 | #define QISDA_PRODUCT_H21_4512 0x4512 | 314 | #define QISDA_PRODUCT_H21_4512 0x4512 |
| @@ -335,6 +336,10 @@ static int option_resume(struct usb_serial *serial); | |||
| 335 | #define AIRPLUS_VENDOR_ID 0x1011 | 336 | #define AIRPLUS_VENDOR_ID 0x1011 |
| 336 | #define AIRPLUS_PRODUCT_MCD650 0x3198 | 337 | #define AIRPLUS_PRODUCT_MCD650 0x3198 |
| 337 | 338 | ||
| 339 | /* 4G Systems products */ | ||
| 340 | #define FOUR_G_SYSTEMS_VENDOR_ID 0x1c9e | ||
| 341 | #define FOUR_G_SYSTEMS_PRODUCT_W14 0x9603 | ||
| 342 | |||
| 338 | static struct usb_device_id option_ids[] = { | 343 | static struct usb_device_id option_ids[] = { |
| 339 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COLT) }, | 344 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COLT) }, |
| 340 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA) }, | 345 | { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_RICOLA) }, |
| @@ -586,6 +591,7 @@ static struct usb_device_id option_ids[] = { | |||
| 586 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_AC2726, 0xff, 0xff, 0xff) }, | 591 | { USB_DEVICE_AND_INTERFACE_INFO(ZTE_VENDOR_ID, ZTE_PRODUCT_AC2726, 0xff, 0xff, 0xff) }, |
| 587 | { USB_DEVICE(BENQ_VENDOR_ID, BENQ_PRODUCT_H10) }, | 592 | { USB_DEVICE(BENQ_VENDOR_ID, BENQ_PRODUCT_H10) }, |
| 588 | { USB_DEVICE(DLINK_VENDOR_ID, DLINK_PRODUCT_DWM_652) }, | 593 | { USB_DEVICE(DLINK_VENDOR_ID, DLINK_PRODUCT_DWM_652) }, |
| 594 | { USB_DEVICE(ALINK_VENDOR_ID, DLINK_PRODUCT_DWM_652_U5) }, /* Yes, ALINK_VENDOR_ID */ | ||
| 589 | { USB_DEVICE(QISDA_VENDOR_ID, QISDA_PRODUCT_H21_4512) }, | 595 | { USB_DEVICE(QISDA_VENDOR_ID, QISDA_PRODUCT_H21_4512) }, |
| 590 | { USB_DEVICE(QISDA_VENDOR_ID, QISDA_PRODUCT_H21_4523) }, | 596 | { USB_DEVICE(QISDA_VENDOR_ID, QISDA_PRODUCT_H21_4523) }, |
| 591 | { USB_DEVICE(QISDA_VENDOR_ID, QISDA_PRODUCT_H20_4515) }, | 597 | { USB_DEVICE(QISDA_VENDOR_ID, QISDA_PRODUCT_H20_4515) }, |
| @@ -597,6 +603,7 @@ static struct usb_device_id option_ids[] = { | |||
| 597 | { USB_DEVICE(ALCATEL_VENDOR_ID, ALCATEL_PRODUCT_X060S) }, | 603 | { USB_DEVICE(ALCATEL_VENDOR_ID, ALCATEL_PRODUCT_X060S) }, |
| 598 | { USB_DEVICE(AIRPLUS_VENDOR_ID, AIRPLUS_PRODUCT_MCD650) }, | 604 | { USB_DEVICE(AIRPLUS_VENDOR_ID, AIRPLUS_PRODUCT_MCD650) }, |
| 599 | { USB_DEVICE(TLAYTECH_VENDOR_ID, TLAYTECH_PRODUCT_TEU800) }, | 605 | { USB_DEVICE(TLAYTECH_VENDOR_ID, TLAYTECH_PRODUCT_TEU800) }, |
| 606 | { USB_DEVICE(FOUR_G_SYSTEMS_VENDOR_ID, FOUR_G_SYSTEMS_PRODUCT_W14) }, | ||
| 600 | { } /* Terminating entry */ | 607 | { } /* Terminating entry */ |
| 601 | }; | 608 | }; |
| 602 | MODULE_DEVICE_TABLE(usb, option_ids); | 609 | MODULE_DEVICE_TABLE(usb, option_ids); |
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index 9bbb2855ea91..188e1ba3b69f 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig | |||
| @@ -2121,7 +2121,7 @@ config FB_EP93XX | |||
| 2121 | 2121 | ||
| 2122 | config FB_PRE_INIT_FB | 2122 | config FB_PRE_INIT_FB |
| 2123 | bool "Don't reinitialize, use bootloader's GDC/Display configuration" | 2123 | bool "Don't reinitialize, use bootloader's GDC/Display configuration" |
| 2124 | depends on FB_MB862XX_LIME | 2124 | depends on FB && FB_MB862XX_LIME |
| 2125 | ---help--- | 2125 | ---help--- |
| 2126 | Select this option if display contents should be inherited as set by | 2126 | Select this option if display contents should be inherited as set by |
| 2127 | the bootloader. | 2127 | the bootloader. |
diff --git a/drivers/video/atafb.c b/drivers/video/atafb.c index 8cd279be74e5..37624f74e88b 100644 --- a/drivers/video/atafb.c +++ b/drivers/video/atafb.c | |||
| @@ -329,12 +329,6 @@ extern unsigned char fontdata_8x16[]; | |||
| 329 | * | 329 | * |
| 330 | * * perform fb specific mmap * | 330 | * * perform fb specific mmap * |
| 331 | * int (*fb_mmap)(struct fb_info *info, struct vm_area_struct *vma); | 331 | * int (*fb_mmap)(struct fb_info *info, struct vm_area_struct *vma); |
| 332 | * | ||
| 333 | * * save current hardware state * | ||
| 334 | * void (*fb_save_state)(struct fb_info *info); | ||
| 335 | * | ||
| 336 | * * restore saved state * | ||
| 337 | * void (*fb_restore_state)(struct fb_info *info); | ||
| 338 | * } ; | 332 | * } ; |
| 339 | */ | 333 | */ |
| 340 | 334 | ||
diff --git a/drivers/video/atmel_lcdfb.c b/drivers/video/atmel_lcdfb.c index 2830ffd72976..d5e801076d33 100644 --- a/drivers/video/atmel_lcdfb.c +++ b/drivers/video/atmel_lcdfb.c | |||
| @@ -484,6 +484,7 @@ static int atmel_lcdfb_set_par(struct fb_info *info) | |||
| 484 | unsigned long value; | 484 | unsigned long value; |
| 485 | unsigned long clk_value_khz; | 485 | unsigned long clk_value_khz; |
| 486 | unsigned long bits_per_line; | 486 | unsigned long bits_per_line; |
| 487 | unsigned long pix_factor = 2; | ||
| 487 | 488 | ||
| 488 | might_sleep(); | 489 | might_sleep(); |
| 489 | 490 | ||
| @@ -516,20 +517,24 @@ static int atmel_lcdfb_set_par(struct fb_info *info) | |||
| 516 | /* Now, the LCDC core... */ | 517 | /* Now, the LCDC core... */ |
| 517 | 518 | ||
| 518 | /* Set pixel clock */ | 519 | /* Set pixel clock */ |
| 520 | if (cpu_is_at91sam9g45() && !cpu_is_at91sam9g45es()) | ||
| 521 | pix_factor = 1; | ||
| 522 | |||
| 519 | clk_value_khz = clk_get_rate(sinfo->lcdc_clk) / 1000; | 523 | clk_value_khz = clk_get_rate(sinfo->lcdc_clk) / 1000; |
| 520 | 524 | ||
| 521 | value = DIV_ROUND_UP(clk_value_khz, PICOS2KHZ(info->var.pixclock)); | 525 | value = DIV_ROUND_UP(clk_value_khz, PICOS2KHZ(info->var.pixclock)); |
| 522 | 526 | ||
| 523 | if (value < 2) { | 527 | if (value < pix_factor) { |
| 524 | dev_notice(info->device, "Bypassing pixel clock divider\n"); | 528 | dev_notice(info->device, "Bypassing pixel clock divider\n"); |
| 525 | lcdc_writel(sinfo, ATMEL_LCDC_LCDCON1, ATMEL_LCDC_BYPASS); | 529 | lcdc_writel(sinfo, ATMEL_LCDC_LCDCON1, ATMEL_LCDC_BYPASS); |
| 526 | } else { | 530 | } else { |
| 527 | value = (value / 2) - 1; | 531 | value = (value / pix_factor) - 1; |
| 528 | dev_dbg(info->device, " * programming CLKVAL = 0x%08lx\n", | 532 | dev_dbg(info->device, " * programming CLKVAL = 0x%08lx\n", |
| 529 | value); | 533 | value); |
| 530 | lcdc_writel(sinfo, ATMEL_LCDC_LCDCON1, | 534 | lcdc_writel(sinfo, ATMEL_LCDC_LCDCON1, |
| 531 | value << ATMEL_LCDC_CLKVAL_OFFSET); | 535 | value << ATMEL_LCDC_CLKVAL_OFFSET); |
| 532 | info->var.pixclock = KHZ2PICOS(clk_value_khz / (2 * (value + 1))); | 536 | info->var.pixclock = |
| 537 | KHZ2PICOS(clk_value_khz / (pix_factor * (value + 1))); | ||
| 533 | dev_dbg(info->device, " updated pixclk: %lu KHz\n", | 538 | dev_dbg(info->device, " updated pixclk: %lu KHz\n", |
| 534 | PICOS2KHZ(info->var.pixclock)); | 539 | PICOS2KHZ(info->var.pixclock)); |
| 535 | } | 540 | } |
diff --git a/drivers/video/backlight/corgi_lcd.c b/drivers/video/backlight/corgi_lcd.c index 2211a852af9c..96774949cd30 100644 --- a/drivers/video/backlight/corgi_lcd.c +++ b/drivers/video/backlight/corgi_lcd.c | |||
| @@ -433,8 +433,9 @@ static int corgi_bl_update_status(struct backlight_device *bd) | |||
| 433 | 433 | ||
| 434 | if (corgibl_flags & CORGIBL_SUSPENDED) | 434 | if (corgibl_flags & CORGIBL_SUSPENDED) |
| 435 | intensity = 0; | 435 | intensity = 0; |
| 436 | if (corgibl_flags & CORGIBL_BATTLOW) | 436 | |
| 437 | intensity &= lcd->limit_mask; | 437 | if ((corgibl_flags & CORGIBL_BATTLOW) && intensity > lcd->limit_mask) |
| 438 | intensity = lcd->limit_mask; | ||
| 438 | 439 | ||
| 439 | return corgi_bl_set_intensity(lcd, intensity); | 440 | return corgi_bl_set_intensity(lcd, intensity); |
| 440 | } | 441 | } |
diff --git a/drivers/video/backlight/lcd.c b/drivers/video/backlight/lcd.c index b6449470106c..a482dd7b0311 100644 --- a/drivers/video/backlight/lcd.c +++ b/drivers/video/backlight/lcd.c | |||
| @@ -56,7 +56,7 @@ static int fb_notifier_callback(struct notifier_block *self, | |||
| 56 | 56 | ||
| 57 | static int lcd_register_fb(struct lcd_device *ld) | 57 | static int lcd_register_fb(struct lcd_device *ld) |
| 58 | { | 58 | { |
| 59 | memset(&ld->fb_notif, 0, sizeof(&ld->fb_notif)); | 59 | memset(&ld->fb_notif, 0, sizeof(ld->fb_notif)); |
| 60 | ld->fb_notif.notifier_call = fb_notifier_callback; | 60 | ld->fb_notif.notifier_call = fb_notifier_callback; |
| 61 | return fb_register_client(&ld->fb_notif); | 61 | return fb_register_client(&ld->fb_notif); |
| 62 | } | 62 | } |
diff --git a/drivers/video/console/fbcon.c b/drivers/video/console/fbcon.c index 5a686cea23f4..3681c6a88212 100644 --- a/drivers/video/console/fbcon.c +++ b/drivers/video/console/fbcon.c | |||
| @@ -2311,14 +2311,11 @@ static int fbcon_blank(struct vc_data *vc, int blank, int mode_switch) | |||
| 2311 | ops->graphics = 1; | 2311 | ops->graphics = 1; |
| 2312 | 2312 | ||
| 2313 | if (!blank) { | 2313 | if (!blank) { |
| 2314 | if (info->fbops->fb_save_state) | ||
| 2315 | info->fbops->fb_save_state(info); | ||
| 2316 | var.activate = FB_ACTIVATE_NOW | FB_ACTIVATE_FORCE; | 2314 | var.activate = FB_ACTIVATE_NOW | FB_ACTIVATE_FORCE; |
| 2317 | fb_set_var(info, &var); | 2315 | fb_set_var(info, &var); |
| 2318 | ops->graphics = 0; | 2316 | ops->graphics = 0; |
| 2319 | ops->var = info->var; | 2317 | ops->var = info->var; |
| 2320 | } else if (info->fbops->fb_restore_state) | 2318 | } |
| 2321 | info->fbops->fb_restore_state(info); | ||
| 2322 | } | 2319 | } |
| 2323 | 2320 | ||
| 2324 | if (!fbcon_is_inactive(vc, info)) { | 2321 | if (!fbcon_is_inactive(vc, info)) { |
diff --git a/drivers/video/da8xx-fb.c b/drivers/video/da8xx-fb.c index d065894ce38f..ea1fd3f47511 100644 --- a/drivers/video/da8xx-fb.c +++ b/drivers/video/da8xx-fb.c | |||
| @@ -554,11 +554,11 @@ static int fb_check_var(struct fb_var_screeninfo *var, | |||
| 554 | var->transp.length = 0; | 554 | var->transp.length = 0; |
| 555 | break; | 555 | break; |
| 556 | case 16: /* RGB 565 */ | 556 | case 16: /* RGB 565 */ |
| 557 | var->red.offset = 0; | 557 | var->red.offset = 11; |
| 558 | var->red.length = 5; | 558 | var->red.length = 5; |
| 559 | var->green.offset = 5; | 559 | var->green.offset = 5; |
| 560 | var->green.length = 6; | 560 | var->green.length = 6; |
| 561 | var->blue.offset = 11; | 561 | var->blue.offset = 0; |
| 562 | var->blue.length = 5; | 562 | var->blue.length = 5; |
| 563 | var->transp.offset = 0; | 563 | var->transp.offset = 0; |
| 564 | var->transp.length = 0; | 564 | var->transp.length = 0; |
| @@ -591,7 +591,7 @@ static int __devexit fb_remove(struct platform_device *dev) | |||
| 591 | unregister_framebuffer(info); | 591 | unregister_framebuffer(info); |
| 592 | fb_dealloc_cmap(&info->cmap); | 592 | fb_dealloc_cmap(&info->cmap); |
| 593 | dma_free_coherent(NULL, par->databuf_sz + PAGE_SIZE, | 593 | dma_free_coherent(NULL, par->databuf_sz + PAGE_SIZE, |
| 594 | info->screen_base, | 594 | info->screen_base - PAGE_SIZE, |
| 595 | info->fix.smem_start); | 595 | info->fix.smem_start); |
| 596 | free_irq(par->irq, par); | 596 | free_irq(par->irq, par); |
| 597 | clk_disable(par->lcdc_clk); | 597 | clk_disable(par->lcdc_clk); |
| @@ -704,7 +704,7 @@ static int __init fb_probe(struct platform_device *device) | |||
| 704 | 704 | ||
| 705 | if (i == ARRAY_SIZE(known_lcd_panels)) { | 705 | if (i == ARRAY_SIZE(known_lcd_panels)) { |
| 706 | dev_err(&device->dev, "GLCD: No valid panel found\n"); | 706 | dev_err(&device->dev, "GLCD: No valid panel found\n"); |
| 707 | ret = ENODEV; | 707 | ret = -ENODEV; |
| 708 | goto err_clk_disable; | 708 | goto err_clk_disable; |
| 709 | } else | 709 | } else |
| 710 | dev_info(&device->dev, "GLCD: Found %s panel\n", | 710 | dev_info(&device->dev, "GLCD: Found %s panel\n", |
| @@ -749,6 +749,7 @@ static int __init fb_probe(struct platform_device *device) | |||
| 749 | (PAGE_SIZE - par->palette_sz); | 749 | (PAGE_SIZE - par->palette_sz); |
| 750 | 750 | ||
| 751 | /* the rest of the frame buffer is pixel data */ | 751 | /* the rest of the frame buffer is pixel data */ |
| 752 | da8xx_fb_info->screen_base = par->v_palette_base + par->palette_sz; | ||
| 752 | da8xx_fb_fix.smem_start = par->p_palette_base + par->palette_sz; | 753 | da8xx_fb_fix.smem_start = par->p_palette_base + par->palette_sz; |
| 753 | da8xx_fb_fix.smem_len = par->databuf_sz - par->palette_sz; | 754 | da8xx_fb_fix.smem_len = par->databuf_sz - par->palette_sz; |
| 754 | da8xx_fb_fix.line_length = (lcdc_info->width * lcd_cfg->bpp) / 8; | 755 | da8xx_fb_fix.line_length = (lcdc_info->width * lcd_cfg->bpp) / 8; |
| @@ -787,6 +788,8 @@ static int __init fb_probe(struct platform_device *device) | |||
| 787 | da8xx_fb_info->var = da8xx_fb_var; | 788 | da8xx_fb_info->var = da8xx_fb_var; |
| 788 | da8xx_fb_info->fbops = &da8xx_fb_ops; | 789 | da8xx_fb_info->fbops = &da8xx_fb_ops; |
| 789 | da8xx_fb_info->pseudo_palette = par->pseudo_palette; | 790 | da8xx_fb_info->pseudo_palette = par->pseudo_palette; |
| 791 | da8xx_fb_info->fix.visual = (da8xx_fb_info->var.bits_per_pixel <= 8) ? | ||
| 792 | FB_VISUAL_PSEUDOCOLOR : FB_VISUAL_TRUECOLOR; | ||
| 790 | 793 | ||
| 791 | ret = fb_alloc_cmap(&da8xx_fb_info->cmap, PALETTE_SIZE, 0); | 794 | ret = fb_alloc_cmap(&da8xx_fb_info->cmap, PALETTE_SIZE, 0); |
| 792 | if (ret) | 795 | if (ret) |
| @@ -825,7 +828,7 @@ err_free_irq: | |||
| 825 | 828 | ||
| 826 | err_release_fb_mem: | 829 | err_release_fb_mem: |
| 827 | dma_free_coherent(NULL, par->databuf_sz + PAGE_SIZE, | 830 | dma_free_coherent(NULL, par->databuf_sz + PAGE_SIZE, |
| 828 | da8xx_fb_info->screen_base, | 831 | da8xx_fb_info->screen_base - PAGE_SIZE, |
| 829 | da8xx_fb_info->fix.smem_start); | 832 | da8xx_fb_info->fix.smem_start); |
| 830 | 833 | ||
| 831 | err_release_fb: | 834 | err_release_fb: |
diff --git a/drivers/video/gbefb.c b/drivers/video/gbefb.c index 1a83709f9611..f67db4268374 100644 --- a/drivers/video/gbefb.c +++ b/drivers/video/gbefb.c | |||
| @@ -1147,7 +1147,7 @@ static int __init gbefb_probe(struct platform_device *p_dev) | |||
| 1147 | gbefb_setup(options); | 1147 | gbefb_setup(options); |
| 1148 | #endif | 1148 | #endif |
| 1149 | 1149 | ||
| 1150 | if (!request_region(GBE_BASE, sizeof(struct sgi_gbe), "GBE")) { | 1150 | if (!request_mem_region(GBE_BASE, sizeof(struct sgi_gbe), "GBE")) { |
| 1151 | printk(KERN_ERR "gbefb: couldn't reserve mmio region\n"); | 1151 | printk(KERN_ERR "gbefb: couldn't reserve mmio region\n"); |
| 1152 | ret = -EBUSY; | 1152 | ret = -EBUSY; |
| 1153 | goto out_release_framebuffer; | 1153 | goto out_release_framebuffer; |
diff --git a/drivers/video/msm/mddi.c b/drivers/video/msm/mddi.c index 5c5a1ad1d397..474421fe79a6 100644 --- a/drivers/video/msm/mddi.c +++ b/drivers/video/msm/mddi.c | |||
| @@ -24,6 +24,7 @@ | |||
| 24 | #include <linux/spinlock.h> | 24 | #include <linux/spinlock.h> |
| 25 | #include <linux/clk.h> | 25 | #include <linux/clk.h> |
| 26 | #include <linux/io.h> | 26 | #include <linux/io.h> |
| 27 | #include <linux/sched.h> | ||
| 27 | #include <mach/msm_iomap.h> | 28 | #include <mach/msm_iomap.h> |
| 28 | #include <mach/irqs.h> | 29 | #include <mach/irqs.h> |
| 29 | #include <mach/board.h> | 30 | #include <mach/board.h> |
diff --git a/drivers/video/msm/mddi_client_nt35399.c b/drivers/video/msm/mddi_client_nt35399.c index 9c78050ac799..c9e9349451cb 100644 --- a/drivers/video/msm/mddi_client_nt35399.c +++ b/drivers/video/msm/mddi_client_nt35399.c | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | #include <linux/kernel.h> | 19 | #include <linux/kernel.h> |
| 20 | #include <linux/platform_device.h> | 20 | #include <linux/platform_device.h> |
| 21 | #include <linux/interrupt.h> | 21 | #include <linux/interrupt.h> |
| 22 | #include <linux/sched.h> | ||
| 22 | #include <linux/gpio.h> | 23 | #include <linux/gpio.h> |
| 23 | #include <mach/msm_fb.h> | 24 | #include <mach/msm_fb.h> |
| 24 | 25 | ||
diff --git a/drivers/video/msm/mddi_client_toshiba.c b/drivers/video/msm/mddi_client_toshiba.c index 80d0f5fdf0b1..71048e78f7f0 100644 --- a/drivers/video/msm/mddi_client_toshiba.c +++ b/drivers/video/msm/mddi_client_toshiba.c | |||
| @@ -20,6 +20,7 @@ | |||
| 20 | #include <linux/platform_device.h> | 20 | #include <linux/platform_device.h> |
| 21 | #include <linux/interrupt.h> | 21 | #include <linux/interrupt.h> |
| 22 | #include <linux/gpio.h> | 22 | #include <linux/gpio.h> |
| 23 | #include <linux/sched.h> | ||
| 23 | #include <mach/msm_fb.h> | 24 | #include <mach/msm_fb.h> |
| 24 | 25 | ||
| 25 | 26 | ||
diff --git a/drivers/video/msm/mdp.c b/drivers/video/msm/mdp.c index 99636a2b20f2..6c519e2fa2b7 100644 --- a/drivers/video/msm/mdp.c +++ b/drivers/video/msm/mdp.c | |||
| @@ -22,9 +22,6 @@ | |||
| 22 | #include <linux/wait.h> | 22 | #include <linux/wait.h> |
| 23 | #include <linux/clk.h> | 23 | #include <linux/clk.h> |
| 24 | #include <linux/file.h> | 24 | #include <linux/file.h> |
| 25 | #ifdef CONFIG_ANDROID_PMEM | ||
| 26 | #include <linux/android_pmem.h> | ||
| 27 | #endif | ||
| 28 | #include <linux/major.h> | 25 | #include <linux/major.h> |
| 29 | 26 | ||
| 30 | #include <mach/msm_iomap.h> | 27 | #include <mach/msm_iomap.h> |
| @@ -262,11 +259,6 @@ int get_img(struct mdp_img *img, struct fb_info *info, | |||
| 262 | struct file *file; | 259 | struct file *file; |
| 263 | unsigned long vstart; | 260 | unsigned long vstart; |
| 264 | 261 | ||
| 265 | #ifdef CONFIG_ANDROID_PMEM | ||
| 266 | if (!get_pmem_file(img->memory_id, start, &vstart, len, filep)) | ||
| 267 | return 0; | ||
| 268 | #endif | ||
| 269 | |||
| 270 | file = fget_light(img->memory_id, &put_needed); | 262 | file = fget_light(img->memory_id, &put_needed); |
| 271 | if (file == NULL) | 263 | if (file == NULL) |
| 272 | return -1; | 264 | return -1; |
| @@ -283,12 +275,6 @@ int get_img(struct mdp_img *img, struct fb_info *info, | |||
| 283 | 275 | ||
| 284 | void put_img(struct file *src_file, struct file *dst_file) | 276 | void put_img(struct file *src_file, struct file *dst_file) |
| 285 | { | 277 | { |
| 286 | #ifdef CONFIG_ANDROID_PMEM | ||
| 287 | if (src_file) | ||
| 288 | put_pmem_file(src_file); | ||
| 289 | if (dst_file) | ||
| 290 | put_pmem_file(dst_file); | ||
| 291 | #endif | ||
| 292 | } | 278 | } |
| 293 | 279 | ||
| 294 | int mdp_blit(struct mdp_device *mdp_dev, struct fb_info *fb, | 280 | int mdp_blit(struct mdp_device *mdp_dev, struct fb_info *fb, |
| @@ -320,9 +306,6 @@ int mdp_blit(struct mdp_device *mdp_dev, struct fb_info *fb, | |||
| 320 | if (unlikely(get_img(&req->dst, fb, &dst_start, &dst_len, &dst_file))) { | 306 | if (unlikely(get_img(&req->dst, fb, &dst_start, &dst_len, &dst_file))) { |
| 321 | printk(KERN_ERR "mpd_ppp: could not retrieve dst image from " | 307 | printk(KERN_ERR "mpd_ppp: could not retrieve dst image from " |
| 322 | "memory\n"); | 308 | "memory\n"); |
| 323 | #ifdef CONFIG_ANDROID_PMEM | ||
| 324 | put_pmem_file(src_file); | ||
| 325 | #endif | ||
| 326 | return -EINVAL; | 309 | return -EINVAL; |
| 327 | } | 310 | } |
| 328 | mutex_lock(&mdp_mutex); | 311 | mutex_lock(&mdp_mutex); |
| @@ -499,7 +482,6 @@ int mdp_probe(struct platform_device *pdev) | |||
| 499 | /* register mdp device */ | 482 | /* register mdp device */ |
| 500 | mdp->mdp_dev.dev.parent = &pdev->dev; | 483 | mdp->mdp_dev.dev.parent = &pdev->dev; |
| 501 | mdp->mdp_dev.dev.class = mdp_class; | 484 | mdp->mdp_dev.dev.class = mdp_class; |
| 502 | snprintf(mdp->mdp_dev.dev.bus_id, BUS_ID_SIZE, "mdp%d", pdev->id); | ||
| 503 | 485 | ||
| 504 | /* if you can remove the platform device you'd have to implement | 486 | /* if you can remove the platform device you'd have to implement |
| 505 | * this: | 487 | * this: |
diff --git a/drivers/video/msm/mdp_ppp.c b/drivers/video/msm/mdp_ppp.c index ba2c4673b648..4ff001f4cbbd 100644 --- a/drivers/video/msm/mdp_ppp.c +++ b/drivers/video/msm/mdp_ppp.c | |||
| @@ -16,7 +16,6 @@ | |||
| 16 | #include <linux/file.h> | 16 | #include <linux/file.h> |
| 17 | #include <linux/delay.h> | 17 | #include <linux/delay.h> |
| 18 | #include <linux/msm_mdp.h> | 18 | #include <linux/msm_mdp.h> |
| 19 | #include <linux/android_pmem.h> | ||
| 20 | #include <mach/msm_fb.h> | 19 | #include <mach/msm_fb.h> |
| 21 | 20 | ||
| 22 | #include "mdp_hw.h" | 21 | #include "mdp_hw.h" |
| @@ -579,25 +578,6 @@ static int valid_src_dst(unsigned long src_start, unsigned long src_len, | |||
| 579 | static void flush_imgs(struct mdp_blit_req *req, struct mdp_regs *regs, | 578 | static void flush_imgs(struct mdp_blit_req *req, struct mdp_regs *regs, |
| 580 | struct file *src_file, struct file *dst_file) | 579 | struct file *src_file, struct file *dst_file) |
| 581 | { | 580 | { |
| 582 | #ifdef CONFIG_ANDROID_PMEM | ||
| 583 | uint32_t src0_len, src1_len, dst0_len, dst1_len; | ||
| 584 | |||
| 585 | /* flush src images to memory before dma to mdp */ | ||
| 586 | get_len(&req->src, &req->src_rect, regs->src_bpp, &src0_len, | ||
| 587 | &src1_len); | ||
| 588 | flush_pmem_file(src_file, req->src.offset, src0_len); | ||
| 589 | if (IS_PSEUDOPLNR(req->src.format)) | ||
| 590 | flush_pmem_file(src_file, req->src.offset + src0_len, | ||
| 591 | src1_len); | ||
| 592 | |||
| 593 | /* flush dst images */ | ||
| 594 | get_len(&req->dst, &req->dst_rect, regs->dst_bpp, &dst0_len, | ||
| 595 | &dst1_len); | ||
| 596 | flush_pmem_file(dst_file, req->dst.offset, dst0_len); | ||
| 597 | if (IS_PSEUDOPLNR(req->dst.format)) | ||
| 598 | flush_pmem_file(dst_file, req->dst.offset + dst0_len, | ||
| 599 | dst1_len); | ||
| 600 | #endif | ||
| 601 | } | 581 | } |
| 602 | 582 | ||
| 603 | static void get_chroma_addr(struct mdp_img *img, struct mdp_rect *rect, | 583 | static void get_chroma_addr(struct mdp_img *img, struct mdp_rect *rect, |
diff --git a/drivers/video/savage/savagefb_driver.c b/drivers/video/savage/savagefb_driver.c index 37b135d5d12e..842d157e1025 100644 --- a/drivers/video/savage/savagefb_driver.c +++ b/drivers/video/savage/savagefb_driver.c | |||
| @@ -1565,7 +1565,7 @@ static int savagefb_blank(int blank, struct fb_info *info) | |||
| 1565 | vga_out8(0x3c5, sr8, par); | 1565 | vga_out8(0x3c5, sr8, par); |
| 1566 | vga_out8(0x3c4, 0x0d, par); | 1566 | vga_out8(0x3c4, 0x0d, par); |
| 1567 | srd = vga_in8(0x3c5, par); | 1567 | srd = vga_in8(0x3c5, par); |
| 1568 | srd &= 0x03; | 1568 | srd &= 0x50; |
| 1569 | 1569 | ||
| 1570 | switch (blank) { | 1570 | switch (blank) { |
| 1571 | case FB_BLANK_UNBLANK: | 1571 | case FB_BLANK_UNBLANK: |
| @@ -1606,22 +1606,6 @@ static int savagefb_blank(int blank, struct fb_info *info) | |||
| 1606 | return (blank == FB_BLANK_NORMAL) ? 1 : 0; | 1606 | return (blank == FB_BLANK_NORMAL) ? 1 : 0; |
| 1607 | } | 1607 | } |
| 1608 | 1608 | ||
| 1609 | static void savagefb_save_state(struct fb_info *info) | ||
| 1610 | { | ||
| 1611 | struct savagefb_par *par = info->par; | ||
| 1612 | |||
| 1613 | savage_get_default_par(par, &par->save); | ||
| 1614 | } | ||
| 1615 | |||
| 1616 | static void savagefb_restore_state(struct fb_info *info) | ||
| 1617 | { | ||
| 1618 | struct savagefb_par *par = info->par; | ||
| 1619 | |||
| 1620 | savagefb_blank(FB_BLANK_POWERDOWN, info); | ||
| 1621 | savage_set_default_par(par, &par->save); | ||
| 1622 | savagefb_blank(FB_BLANK_UNBLANK, info); | ||
| 1623 | } | ||
| 1624 | |||
| 1625 | static int savagefb_open(struct fb_info *info, int user) | 1609 | static int savagefb_open(struct fb_info *info, int user) |
| 1626 | { | 1610 | { |
| 1627 | struct savagefb_par *par = info->par; | 1611 | struct savagefb_par *par = info->par; |
| @@ -1667,8 +1651,6 @@ static struct fb_ops savagefb_ops = { | |||
| 1667 | .fb_setcolreg = savagefb_setcolreg, | 1651 | .fb_setcolreg = savagefb_setcolreg, |
| 1668 | .fb_pan_display = savagefb_pan_display, | 1652 | .fb_pan_display = savagefb_pan_display, |
| 1669 | .fb_blank = savagefb_blank, | 1653 | .fb_blank = savagefb_blank, |
| 1670 | .fb_save_state = savagefb_save_state, | ||
| 1671 | .fb_restore_state = savagefb_restore_state, | ||
| 1672 | #if defined(CONFIG_FB_SAVAGE_ACCEL) | 1654 | #if defined(CONFIG_FB_SAVAGE_ACCEL) |
| 1673 | .fb_fillrect = savagefb_fillrect, | 1655 | .fb_fillrect = savagefb_fillrect, |
| 1674 | .fb_copyarea = savagefb_copyarea, | 1656 | .fb_copyarea = savagefb_copyarea, |
diff --git a/drivers/video/uvesafb.c b/drivers/video/uvesafb.c index e35232a18571..54fbb2995a5f 100644 --- a/drivers/video/uvesafb.c +++ b/drivers/video/uvesafb.c | |||
| @@ -1411,23 +1411,6 @@ static int uvesafb_check_var(struct fb_var_screeninfo *var, | |||
| 1411 | return 0; | 1411 | return 0; |
| 1412 | } | 1412 | } |
| 1413 | 1413 | ||
| 1414 | static void uvesafb_save_state(struct fb_info *info) | ||
| 1415 | { | ||
| 1416 | struct uvesafb_par *par = info->par; | ||
| 1417 | |||
| 1418 | if (par->vbe_state_saved) | ||
| 1419 | kfree(par->vbe_state_saved); | ||
| 1420 | |||
| 1421 | par->vbe_state_saved = uvesafb_vbe_state_save(par); | ||
| 1422 | } | ||
| 1423 | |||
| 1424 | static void uvesafb_restore_state(struct fb_info *info) | ||
| 1425 | { | ||
| 1426 | struct uvesafb_par *par = info->par; | ||
| 1427 | |||
| 1428 | uvesafb_vbe_state_restore(par, par->vbe_state_saved); | ||
| 1429 | } | ||
| 1430 | |||
| 1431 | static struct fb_ops uvesafb_ops = { | 1414 | static struct fb_ops uvesafb_ops = { |
| 1432 | .owner = THIS_MODULE, | 1415 | .owner = THIS_MODULE, |
| 1433 | .fb_open = uvesafb_open, | 1416 | .fb_open = uvesafb_open, |
| @@ -1441,8 +1424,6 @@ static struct fb_ops uvesafb_ops = { | |||
| 1441 | .fb_imageblit = cfb_imageblit, | 1424 | .fb_imageblit = cfb_imageblit, |
| 1442 | .fb_check_var = uvesafb_check_var, | 1425 | .fb_check_var = uvesafb_check_var, |
| 1443 | .fb_set_par = uvesafb_set_par, | 1426 | .fb_set_par = uvesafb_set_par, |
| 1444 | .fb_save_state = uvesafb_save_state, | ||
| 1445 | .fb_restore_state = uvesafb_restore_state, | ||
| 1446 | }; | 1427 | }; |
| 1447 | 1428 | ||
| 1448 | static void __devinit uvesafb_init_info(struct fb_info *info, | 1429 | static void __devinit uvesafb_init_info(struct fb_info *info, |
| @@ -1459,15 +1440,6 @@ static void __devinit uvesafb_init_info(struct fb_info *info, | |||
| 1459 | info->fix.ypanstep = par->ypan ? 1 : 0; | 1440 | info->fix.ypanstep = par->ypan ? 1 : 0; |
| 1460 | info->fix.ywrapstep = (par->ypan > 1) ? 1 : 0; | 1441 | info->fix.ywrapstep = (par->ypan > 1) ? 1 : 0; |
| 1461 | 1442 | ||
| 1462 | /* | ||
| 1463 | * If we were unable to get the state buffer size, disable | ||
| 1464 | * functions for saving and restoring the hardware state. | ||
| 1465 | */ | ||
| 1466 | if (par->vbe_state_size == 0) { | ||
| 1467 | info->fbops->fb_save_state = NULL; | ||
| 1468 | info->fbops->fb_restore_state = NULL; | ||
| 1469 | } | ||
| 1470 | |||
| 1471 | /* Disable blanking if the user requested so. */ | 1443 | /* Disable blanking if the user requested so. */ |
| 1472 | if (!blank) | 1444 | if (!blank) |
| 1473 | info->fbops->fb_blank = NULL; | 1445 | info->fbops->fb_blank = NULL; |
diff --git a/drivers/watchdog/pnx4008_wdt.c b/drivers/watchdog/pnx4008_wdt.c index f24d04132eda..4d227b152001 100644 --- a/drivers/watchdog/pnx4008_wdt.c +++ b/drivers/watchdog/pnx4008_wdt.c | |||
| @@ -317,7 +317,7 @@ static int __devexit pnx4008_wdt_remove(struct platform_device *pdev) | |||
| 317 | 317 | ||
| 318 | static struct platform_driver platform_wdt_driver = { | 318 | static struct platform_driver platform_wdt_driver = { |
| 319 | .driver = { | 319 | .driver = { |
| 320 | .name = "watchdog", | 320 | .name = "pnx4008-watchdog", |
| 321 | .owner = THIS_MODULE, | 321 | .owner = THIS_MODULE, |
| 322 | }, | 322 | }, |
| 323 | .probe = pnx4008_wdt_probe, | 323 | .probe = pnx4008_wdt_probe, |
| @@ -352,4 +352,4 @@ MODULE_PARM_DESC(nowayout, | |||
| 352 | 352 | ||
| 353 | MODULE_LICENSE("GPL"); | 353 | MODULE_LICENSE("GPL"); |
| 354 | MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR); | 354 | MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR); |
| 355 | MODULE_ALIAS("platform:watchdog"); | 355 | MODULE_ALIAS("platform:pnx4008-watchdog"); |
diff --git a/drivers/watchdog/rc32434_wdt.c b/drivers/watchdog/rc32434_wdt.c index f6cccc9df022..bf12d06b5877 100644 --- a/drivers/watchdog/rc32434_wdt.c +++ b/drivers/watchdog/rc32434_wdt.c | |||
| @@ -62,7 +62,7 @@ extern unsigned int idt_cpu_freq; | |||
| 62 | static int timeout = WATCHDOG_TIMEOUT; | 62 | static int timeout = WATCHDOG_TIMEOUT; |
| 63 | module_param(timeout, int, 0); | 63 | module_param(timeout, int, 0); |
| 64 | MODULE_PARM_DESC(timeout, "Watchdog timeout value, in seconds (default=" | 64 | MODULE_PARM_DESC(timeout, "Watchdog timeout value, in seconds (default=" |
| 65 | WATCHDOG_TIMEOUT ")"); | 65 | __MODULE_STRING(WATCHDOG_TIMEOUT) ")"); |
| 66 | 66 | ||
| 67 | static int nowayout = WATCHDOG_NOWAYOUT; | 67 | static int nowayout = WATCHDOG_NOWAYOUT; |
| 68 | module_param(nowayout, int, 0); | 68 | module_param(nowayout, int, 0); |
| @@ -276,7 +276,7 @@ static int __devinit rc32434_wdt_probe(struct platform_device *pdev) | |||
| 276 | return -ENODEV; | 276 | return -ENODEV; |
| 277 | } | 277 | } |
| 278 | 278 | ||
| 279 | wdt_reg = ioremap_nocache(r->start, r->end - r->start); | 279 | wdt_reg = ioremap_nocache(r->start, resource_size(r)); |
| 280 | if (!wdt_reg) { | 280 | if (!wdt_reg) { |
| 281 | printk(KERN_ERR PFX "failed to remap I/O resources\n"); | 281 | printk(KERN_ERR PFX "failed to remap I/O resources\n"); |
| 282 | return -ENXIO; | 282 | return -ENXIO; |
diff --git a/drivers/watchdog/sbc_fitpc2_wdt.c b/drivers/watchdog/sbc_fitpc2_wdt.c index 852ca1977917..91430a89107c 100644 --- a/drivers/watchdog/sbc_fitpc2_wdt.c +++ b/drivers/watchdog/sbc_fitpc2_wdt.c | |||
| @@ -227,7 +227,7 @@ static int __init fitpc2_wdt_init(void) | |||
| 227 | } | 227 | } |
| 228 | 228 | ||
| 229 | err = misc_register(&fitpc2_wdt_miscdev); | 229 | err = misc_register(&fitpc2_wdt_miscdev); |
| 230 | if (!err) { | 230 | if (err) { |
| 231 | pr_err("cannot register miscdev on minor=%d (err=%d)\n", | 231 | pr_err("cannot register miscdev on minor=%d (err=%d)\n", |
| 232 | WATCHDOG_MINOR, err); | 232 | WATCHDOG_MINOR, err); |
| 233 | goto err_margin; | 233 | goto err_margin; |
