diff options
Diffstat (limited to 'drivers')
320 files changed, 7404 insertions, 2456 deletions
diff --git a/drivers/acpi/processor_perflib.c b/drivers/acpi/processor_perflib.c index 53e7ac9403a..e854582f29a 100644 --- a/drivers/acpi/processor_perflib.c +++ b/drivers/acpi/processor_perflib.c @@ -465,7 +465,7 @@ static int acpi_processor_get_performance_states(struct acpi_processor *pr)  	return result;  } -static int acpi_processor_get_performance_info(struct acpi_processor *pr) +int acpi_processor_get_performance_info(struct acpi_processor *pr)  {  	int result = 0;  	acpi_status status = AE_OK; @@ -509,7 +509,7 @@ static int acpi_processor_get_performance_info(struct acpi_processor *pr)  #endif  	return result;  } - +EXPORT_SYMBOL_GPL(acpi_processor_get_performance_info);  int acpi_processor_notify_smm(struct module *calling_module)  {  	acpi_status status; diff --git a/drivers/amba/tegra-ahb.c b/drivers/amba/tegra-ahb.c index 093c4355496..1f44e56cc65 100644 --- a/drivers/amba/tegra-ahb.c +++ b/drivers/amba/tegra-ahb.c @@ -158,7 +158,7 @@ int tegra_ahb_enable_smmu(struct device_node *dn)  EXPORT_SYMBOL(tegra_ahb_enable_smmu);  #endif -#ifdef CONFIG_PM_SLEEP +#ifdef CONFIG_PM  static int tegra_ahb_suspend(struct device *dev)  {  	int i; diff --git a/drivers/ata/Kconfig b/drivers/ata/Kconfig index 3e751b74615..a5a3ebcbdd2 100644 --- a/drivers/ata/Kconfig +++ b/drivers/ata/Kconfig @@ -59,15 +59,16 @@ config ATA_ACPI  	  option libata.noacpi=1  config SATA_ZPODD -	bool "SATA Zero Power ODD Support" +	bool "SATA Zero Power Optical Disc Drive (ZPODD) support"  	depends on ATA_ACPI  	default n  	help -	  This option adds support for SATA ZPODD. It requires both -	  ODD and the platform support, and if enabled, will automatically -	  power on/off the ODD when certain condition is satisfied. This -	  does not impact user's experience of the ODD, only power is saved -	  when ODD is not in use(i.e. no disc inside). +	  This option adds support for SATA Zero Power Optical Disc +	  Drive (ZPODD). It requires both the ODD and the platform +	  support, and if enabled, will automatically power on/off the +	  ODD when certain condition is satisfied. This does not impact +	  end user's experience of the ODD, only power is saved when +	  the ODD is not in use (i.e. no disc inside).  	  If unsure, say N. diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index a99112cfd8b..6a67b07de49 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c @@ -281,6 +281,8 @@ static const struct pci_device_id ahci_pci_tbl[] = {  	{ PCI_VDEVICE(INTEL, 0x1f37), board_ahci }, /* Avoton RAID */  	{ PCI_VDEVICE(INTEL, 0x1f3e), board_ahci }, /* Avoton RAID */  	{ PCI_VDEVICE(INTEL, 0x1f3f), board_ahci }, /* Avoton RAID */ +	{ PCI_VDEVICE(INTEL, 0x2823), board_ahci }, /* Wellsburg RAID */ +	{ PCI_VDEVICE(INTEL, 0x2827), board_ahci }, /* Wellsburg RAID */  	{ PCI_VDEVICE(INTEL, 0x8d02), board_ahci }, /* Wellsburg AHCI */  	{ PCI_VDEVICE(INTEL, 0x8d04), board_ahci }, /* Wellsburg RAID */  	{ PCI_VDEVICE(INTEL, 0x8d06), board_ahci }, /* Wellsburg RAID */ diff --git a/drivers/ata/ata_piix.c b/drivers/ata/ata_piix.c index d2ba439cfe5..ffdd32d2260 100644 --- a/drivers/ata/ata_piix.c +++ b/drivers/ata/ata_piix.c @@ -1547,6 +1547,10 @@ static bool piix_broken_system_poweroff(struct pci_dev *pdev)  static int prefer_ms_hyperv = 1;  module_param(prefer_ms_hyperv, int, 0); +MODULE_PARM_DESC(prefer_ms_hyperv, +	"Prefer Hyper-V paravirtualization drivers instead of ATA, " +	"0 - Use ATA drivers, " +	"1 (Default) - Use the paravirtualization drivers.");  static void piix_ignore_devices_quirk(struct ata_host *host)  { diff --git a/drivers/ata/libata-acpi.c b/drivers/ata/libata-acpi.c index beea3115577..8a52dab412e 100644 --- a/drivers/ata/libata-acpi.c +++ b/drivers/ata/libata-acpi.c @@ -1027,7 +1027,7 @@ static void ata_acpi_register_power_resource(struct ata_device *dev)  	handle = ata_dev_acpi_handle(dev);  	if (handle) -		acpi_dev_pm_remove_dependent(handle, &sdev->sdev_gendev); +		acpi_dev_pm_add_dependent(handle, &sdev->sdev_gendev);  }  static void ata_acpi_unregister_power_resource(struct ata_device *dev) diff --git a/drivers/ata/pata_samsung_cf.c b/drivers/ata/pata_samsung_cf.c index 70b0e01372b..6ef27e98c50 100644 --- a/drivers/ata/pata_samsung_cf.c +++ b/drivers/ata/pata_samsung_cf.c @@ -661,18 +661,7 @@ static struct platform_driver pata_s3c_driver = {  	},  }; -static int __init pata_s3c_init(void) -{ -	return platform_driver_probe(&pata_s3c_driver, pata_s3c_probe); -} - -static void __exit pata_s3c_exit(void) -{ -	platform_driver_unregister(&pata_s3c_driver); -} - -module_init(pata_s3c_init); -module_exit(pata_s3c_exit); +module_platform_driver_probe(pata_s3c_driver, pata_s3c_probe);  MODULE_AUTHOR("Abhilash Kesavan, <a.kesavan@samsung.com>");  MODULE_DESCRIPTION("low-level driver for Samsung PATA controller"); diff --git a/drivers/ata/sata_fsl.c b/drivers/ata/sata_fsl.c index 124b2c1d9c0..608f82fed63 100644 --- a/drivers/ata/sata_fsl.c +++ b/drivers/ata/sata_fsl.c @@ -1511,8 +1511,7 @@ error_exit_with_cleanup:  	if (hcr_base)  		iounmap(hcr_base); -	if (host_priv) -		kfree(host_priv); +	kfree(host_priv);  	return retval;  } diff --git a/drivers/block/nvme.c b/drivers/block/nvme.c index 07fb2dfaae1..9dcefe40380 100644 --- a/drivers/block/nvme.c +++ b/drivers/block/nvme.c @@ -135,6 +135,7 @@ static inline void _nvme_check_size(void)  	BUILD_BUG_ON(sizeof(struct nvme_id_ctrl) != 4096);  	BUILD_BUG_ON(sizeof(struct nvme_id_ns) != 4096);  	BUILD_BUG_ON(sizeof(struct nvme_lba_range_type) != 64); +	BUILD_BUG_ON(sizeof(struct nvme_smart_log) != 512);  }  typedef void (*nvme_completion_fn)(struct nvme_dev *, void *, @@ -237,7 +238,8 @@ static void *free_cmdid(struct nvme_queue *nvmeq, int cmdid,  		*fn = special_completion;  		return CMD_CTX_INVALID;  	} -	*fn = info[cmdid].fn; +	if (fn) +		*fn = info[cmdid].fn;  	ctx = info[cmdid].ctx;  	info[cmdid].fn = special_completion;  	info[cmdid].ctx = CMD_CTX_COMPLETED; @@ -335,6 +337,7 @@ nvme_alloc_iod(unsigned nseg, unsigned nbytes, gfp_t gfp)  		iod->offset = offsetof(struct nvme_iod, sg[nseg]);  		iod->npages = -1;  		iod->length = nbytes; +		iod->nents = 0;  	}  	return iod; @@ -375,7 +378,8 @@ static void bio_completion(struct nvme_dev *dev, void *ctx,  	struct bio *bio = iod->private;  	u16 status = le16_to_cpup(&cqe->status) >> 1; -	dma_unmap_sg(&dev->pci_dev->dev, iod->sg, iod->nents, +	if (iod->nents) +		dma_unmap_sg(&dev->pci_dev->dev, iod->sg, iod->nents,  			bio_data_dir(bio) ? DMA_TO_DEVICE : DMA_FROM_DEVICE);  	nvme_free_iod(dev, iod);  	if (status) { @@ -589,7 +593,7 @@ static int nvme_submit_bio_queue(struct nvme_queue *nvmeq, struct nvme_ns *ns,  	result = nvme_map_bio(nvmeq->q_dmadev, iod, bio, dma_dir, psegs);  	if (result < 0) -		goto free_iod; +		goto free_cmdid;  	length = result;  	cmnd->rw.command_id = cmdid; @@ -609,6 +613,8 @@ static int nvme_submit_bio_queue(struct nvme_queue *nvmeq, struct nvme_ns *ns,  	return 0; + free_cmdid: +	free_cmdid(nvmeq, cmdid, NULL);   free_iod:  	nvme_free_iod(nvmeq->dev, iod);   nomem: @@ -835,8 +841,8 @@ static int nvme_identify(struct nvme_dev *dev, unsigned nsid, unsigned cns,  	return nvme_submit_admin_cmd(dev, &c, NULL);  } -static int nvme_get_features(struct nvme_dev *dev, unsigned fid, -				unsigned nsid, dma_addr_t dma_addr) +static int nvme_get_features(struct nvme_dev *dev, unsigned fid, unsigned nsid, +					dma_addr_t dma_addr, u32 *result)  {  	struct nvme_command c; @@ -846,7 +852,7 @@ static int nvme_get_features(struct nvme_dev *dev, unsigned fid,  	c.features.prp1 = cpu_to_le64(dma_addr);  	c.features.fid = cpu_to_le32(fid); -	return nvme_submit_admin_cmd(dev, &c, NULL); +	return nvme_submit_admin_cmd(dev, &c, result);  }  static int nvme_set_features(struct nvme_dev *dev, unsigned fid, @@ -906,6 +912,10 @@ static void nvme_free_queue(struct nvme_dev *dev, int qid)  	spin_lock_irq(&nvmeq->q_lock);  	nvme_cancel_ios(nvmeq, false); +	while (bio_list_peek(&nvmeq->sq_cong)) { +		struct bio *bio = bio_list_pop(&nvmeq->sq_cong); +		bio_endio(bio, -EIO); +	}  	spin_unlock_irq(&nvmeq->q_lock);  	irq_set_affinity_hint(vector, NULL); @@ -1230,12 +1240,17 @@ static int nvme_user_admin_cmd(struct nvme_dev *dev,  	if (length != cmd.data_len)  		status = -ENOMEM;  	else -		status = nvme_submit_admin_cmd(dev, &c, NULL); +		status = nvme_submit_admin_cmd(dev, &c, &cmd.result);  	if (cmd.data_len) {  		nvme_unmap_user_pages(dev, cmd.opcode & 1, iod);  		nvme_free_iod(dev, iod);  	} + +	if (!status && copy_to_user(&ucmd->result, &cmd.result, +							sizeof(cmd.result))) +		status = -EFAULT; +  	return status;  } @@ -1523,9 +1538,9 @@ static int nvme_dev_add(struct nvme_dev *dev)  			continue;  		res = nvme_get_features(dev, NVME_FEAT_LBA_RANGE, i, -							dma_addr + 4096); +							dma_addr + 4096, NULL);  		if (res) -			continue; +			memset(mem + 4096, 0, 4096);  		ns = nvme_alloc_ns(dev, i, mem, mem + 4096);  		if (ns) diff --git a/drivers/bluetooth/ath3k.c b/drivers/bluetooth/ath3k.c index a8a41e07a22..b282af181b4 100644 --- a/drivers/bluetooth/ath3k.c +++ b/drivers/bluetooth/ath3k.c @@ -74,8 +74,10 @@ static struct usb_device_id ath3k_table[] = {  	/* Atheros AR3012 with sflash firmware*/  	{ USB_DEVICE(0x0CF3, 0x3004) }, +	{ USB_DEVICE(0x0CF3, 0x3008) },  	{ USB_DEVICE(0x0CF3, 0x311D) },  	{ USB_DEVICE(0x13d3, 0x3375) }, +	{ USB_DEVICE(0x04CA, 0x3004) },  	{ USB_DEVICE(0x04CA, 0x3005) },  	{ USB_DEVICE(0x04CA, 0x3006) },  	{ USB_DEVICE(0x04CA, 0x3008) }, @@ -106,8 +108,10 @@ static struct usb_device_id ath3k_blist_tbl[] = {  	/* Atheros AR3012 with sflash firmware*/  	{ USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 }, +	{ USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },  	{ USB_DEVICE(0x0cf3, 0x311D), .driver_info = BTUSB_ATH3012 },  	{ USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 }, +	{ USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 },  	{ USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },  	{ USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 },  	{ USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 }, diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c index 7e351e34547..e547851870e 100644 --- a/drivers/bluetooth/btusb.c +++ b/drivers/bluetooth/btusb.c @@ -132,8 +132,10 @@ static struct usb_device_id blacklist_table[] = {  	/* Atheros 3012 with sflash firmware */  	{ USB_DEVICE(0x0cf3, 0x3004), .driver_info = BTUSB_ATH3012 }, +	{ USB_DEVICE(0x0cf3, 0x3008), .driver_info = BTUSB_ATH3012 },  	{ USB_DEVICE(0x0cf3, 0x311d), .driver_info = BTUSB_ATH3012 },  	{ USB_DEVICE(0x13d3, 0x3375), .driver_info = BTUSB_ATH3012 }, +	{ USB_DEVICE(0x04ca, 0x3004), .driver_info = BTUSB_ATH3012 },  	{ USB_DEVICE(0x04ca, 0x3005), .driver_info = BTUSB_ATH3012 },  	{ USB_DEVICE(0x04ca, 0x3006), .driver_info = BTUSB_ATH3012 },  	{ USB_DEVICE(0x04ca, 0x3008), .driver_info = BTUSB_ATH3012 }, diff --git a/drivers/char/hw_random/virtio-rng.c b/drivers/char/hw_random/virtio-rng.c index 10fd71ccf58..6bf4d47324e 100644 --- a/drivers/char/hw_random/virtio-rng.c +++ b/drivers/char/hw_random/virtio-rng.c @@ -92,14 +92,22 @@ static int probe_common(struct virtio_device *vdev)  {  	int err; +	if (vq) { +		/* We only support one device for now */ +		return -EBUSY; +	}  	/* We expect a single virtqueue. */  	vq = virtio_find_single_vq(vdev, random_recv_done, "input"); -	if (IS_ERR(vq)) -		return PTR_ERR(vq); +	if (IS_ERR(vq)) { +		err = PTR_ERR(vq); +		vq = NULL; +		return err; +	}  	err = hwrng_register(&virtio_hwrng);  	if (err) {  		vdev->config->del_vqs(vdev); +		vq = NULL;  		return err;  	} @@ -112,6 +120,7 @@ static void remove_common(struct virtio_device *vdev)  	busy = false;  	hwrng_unregister(&virtio_hwrng);  	vdev->config->del_vqs(vdev); +	vq = NULL;  }  static int virtrng_probe(struct virtio_device *vdev) diff --git a/drivers/clk/clk-vt8500.c b/drivers/clk/clk-vt8500.c index b5538bba7a1..09c63315e57 100644 --- a/drivers/clk/clk-vt8500.c +++ b/drivers/clk/clk-vt8500.c @@ -157,7 +157,7 @@ static int vt8500_dclk_set_rate(struct clk_hw *hw, unsigned long rate,  	divisor =  parent_rate / rate;  	/* If prate / rate would be decimal, incr the divisor */ -	if (rate * divisor < *prate) +	if (rate * divisor < parent_rate)  		divisor++;  	if (divisor == cdev->div_mask + 1) diff --git a/drivers/clk/tegra/clk-tegra20.c b/drivers/clk/tegra/clk-tegra20.c index 143ce1f899a..1e2de730536 100644 --- a/drivers/clk/tegra/clk-tegra20.c +++ b/drivers/clk/tegra/clk-tegra20.c @@ -1292,7 +1292,6 @@ static struct tegra_clk_duplicate tegra_clk_duplicates[] = {  	TEGRA_CLK_DUPLICATE(usbd,   "tegra-ehci.0", NULL),  	TEGRA_CLK_DUPLICATE(usbd,   "tegra-otg",    NULL),  	TEGRA_CLK_DUPLICATE(cclk,   NULL,           "cpu"), -	TEGRA_CLK_DUPLICATE(twd,    "smp_twd",      NULL),  	TEGRA_CLK_DUPLICATE(clk_max, NULL, NULL), /* Must be the last entry */  }; diff --git a/drivers/clk/tegra/clk-tegra30.c b/drivers/clk/tegra/clk-tegra30.c index 32c61cb6d0b..ba6f51bc9f3 100644 --- a/drivers/clk/tegra/clk-tegra30.c +++ b/drivers/clk/tegra/clk-tegra30.c @@ -1931,7 +1931,6 @@ static struct tegra_clk_duplicate tegra_clk_duplicates[] = {  	TEGRA_CLK_DUPLICATE(cml1, "tegra_sata_cml", NULL),  	TEGRA_CLK_DUPLICATE(cml0, "tegra_pcie", "cml"),  	TEGRA_CLK_DUPLICATE(pciex, "tegra_pcie", "pciex"), -	TEGRA_CLK_DUPLICATE(twd, "smp_twd", NULL),  	TEGRA_CLK_DUPLICATE(vcp, "nvavp", "vcp"),  	TEGRA_CLK_DUPLICATE(clk_max, NULL, NULL), /* MUST be the last entry */  }; diff --git a/drivers/clocksource/em_sti.c b/drivers/clocksource/em_sti.c index e6a553cb73e..4329a29a531 100644 --- a/drivers/clocksource/em_sti.c +++ b/drivers/clocksource/em_sti.c @@ -399,7 +399,18 @@ static struct platform_driver em_sti_device_driver = {  	}  }; -module_platform_driver(em_sti_device_driver); +static int __init em_sti_init(void) +{ +	return platform_driver_register(&em_sti_device_driver); +} + +static void __exit em_sti_exit(void) +{ +	platform_driver_unregister(&em_sti_device_driver); +} + +subsys_initcall(em_sti_init); +module_exit(em_sti_exit);  MODULE_AUTHOR("Magnus Damm");  MODULE_DESCRIPTION("Renesas Emma Mobile STI Timer Driver"); diff --git a/drivers/clocksource/sh_cmt.c b/drivers/clocksource/sh_cmt.c index 488c14cc8db..08d0c418c94 100644 --- a/drivers/clocksource/sh_cmt.c +++ b/drivers/clocksource/sh_cmt.c @@ -54,62 +54,100 @@ struct sh_cmt_priv {  	struct clocksource cs;  	unsigned long total_cycles;  	bool cs_enabled; + +	/* callbacks for CMSTR and CMCSR access */ +	unsigned long (*read_control)(void __iomem *base, unsigned long offs); +	void (*write_control)(void __iomem *base, unsigned long offs, +			      unsigned long value); + +	/* callbacks for CMCNT and CMCOR access */ +	unsigned long (*read_count)(void __iomem *base, unsigned long offs); +	void (*write_count)(void __iomem *base, unsigned long offs, +			    unsigned long value);  }; -static DEFINE_RAW_SPINLOCK(sh_cmt_lock); +/* Examples of supported CMT timer register layouts and I/O access widths: + * + * "16-bit counter and 16-bit control" as found on sh7263: + * CMSTR 0xfffec000 16-bit + * CMCSR 0xfffec002 16-bit + * CMCNT 0xfffec004 16-bit + * CMCOR 0xfffec006 16-bit + * + * "32-bit counter and 16-bit control" as found on sh7372, sh73a0, r8a7740: + * CMSTR 0xffca0000 16-bit + * CMCSR 0xffca0060 16-bit + * CMCNT 0xffca0064 32-bit + * CMCOR 0xffca0068 32-bit + */ + +static unsigned long sh_cmt_read16(void __iomem *base, unsigned long offs) +{ +	return ioread16(base + (offs << 1)); +} + +static unsigned long sh_cmt_read32(void __iomem *base, unsigned long offs) +{ +	return ioread32(base + (offs << 2)); +} + +static void sh_cmt_write16(void __iomem *base, unsigned long offs, +			   unsigned long value) +{ +	iowrite16(value, base + (offs << 1)); +} + +static void sh_cmt_write32(void __iomem *base, unsigned long offs, +			   unsigned long value) +{ +	iowrite32(value, base + (offs << 2)); +} -#define CMSTR -1 /* shared register */  #define CMCSR 0 /* channel register */  #define CMCNT 1 /* channel register */  #define CMCOR 2 /* channel register */ -static inline unsigned long sh_cmt_read(struct sh_cmt_priv *p, int reg_nr) +static inline unsigned long sh_cmt_read_cmstr(struct sh_cmt_priv *p)  {  	struct sh_timer_config *cfg = p->pdev->dev.platform_data; -	void __iomem *base = p->mapbase; -	unsigned long offs; -	if (reg_nr == CMSTR) { -		offs = 0; -		base -= cfg->channel_offset; -	} else -		offs = reg_nr; +	return p->read_control(p->mapbase - cfg->channel_offset, 0); +} -	if (p->width == 16) -		offs <<= 1; -	else { -		offs <<= 2; -		if ((reg_nr == CMCNT) || (reg_nr == CMCOR)) -			return ioread32(base + offs); -	} +static inline unsigned long sh_cmt_read_cmcsr(struct sh_cmt_priv *p) +{ +	return p->read_control(p->mapbase, CMCSR); +} -	return ioread16(base + offs); +static inline unsigned long sh_cmt_read_cmcnt(struct sh_cmt_priv *p) +{ +	return p->read_count(p->mapbase, CMCNT);  } -static inline void sh_cmt_write(struct sh_cmt_priv *p, int reg_nr, -				unsigned long value) +static inline void sh_cmt_write_cmstr(struct sh_cmt_priv *p, +				      unsigned long value)  {  	struct sh_timer_config *cfg = p->pdev->dev.platform_data; -	void __iomem *base = p->mapbase; -	unsigned long offs; -	if (reg_nr == CMSTR) { -		offs = 0; -		base -= cfg->channel_offset; -	} else -		offs = reg_nr; +	p->write_control(p->mapbase - cfg->channel_offset, 0, value); +} -	if (p->width == 16) -		offs <<= 1; -	else { -		offs <<= 2; -		if ((reg_nr == CMCNT) || (reg_nr == CMCOR)) { -			iowrite32(value, base + offs); -			return; -		} -	} +static inline void sh_cmt_write_cmcsr(struct sh_cmt_priv *p, +				      unsigned long value) +{ +	p->write_control(p->mapbase, CMCSR, value); +} -	iowrite16(value, base + offs); +static inline void sh_cmt_write_cmcnt(struct sh_cmt_priv *p, +				      unsigned long value) +{ +	p->write_count(p->mapbase, CMCNT, value); +} + +static inline void sh_cmt_write_cmcor(struct sh_cmt_priv *p, +				      unsigned long value) +{ +	p->write_count(p->mapbase, CMCOR, value);  }  static unsigned long sh_cmt_get_counter(struct sh_cmt_priv *p, @@ -118,15 +156,15 @@ static unsigned long sh_cmt_get_counter(struct sh_cmt_priv *p,  	unsigned long v1, v2, v3;  	int o1, o2; -	o1 = sh_cmt_read(p, CMCSR) & p->overflow_bit; +	o1 = sh_cmt_read_cmcsr(p) & p->overflow_bit;  	/* Make sure the timer value is stable. Stolen from acpi_pm.c */  	do {  		o2 = o1; -		v1 = sh_cmt_read(p, CMCNT); -		v2 = sh_cmt_read(p, CMCNT); -		v3 = sh_cmt_read(p, CMCNT); -		o1 = sh_cmt_read(p, CMCSR) & p->overflow_bit; +		v1 = sh_cmt_read_cmcnt(p); +		v2 = sh_cmt_read_cmcnt(p); +		v3 = sh_cmt_read_cmcnt(p); +		o1 = sh_cmt_read_cmcsr(p) & p->overflow_bit;  	} while (unlikely((o1 != o2) || (v1 > v2 && v1 < v3)  			  || (v2 > v3 && v2 < v1) || (v3 > v1 && v3 < v2))); @@ -134,6 +172,7 @@ static unsigned long sh_cmt_get_counter(struct sh_cmt_priv *p,  	return v2;  } +static DEFINE_RAW_SPINLOCK(sh_cmt_lock);  static void sh_cmt_start_stop_ch(struct sh_cmt_priv *p, int start)  { @@ -142,14 +181,14 @@ static void sh_cmt_start_stop_ch(struct sh_cmt_priv *p, int start)  	/* start stop register shared by multiple timer channels */  	raw_spin_lock_irqsave(&sh_cmt_lock, flags); -	value = sh_cmt_read(p, CMSTR); +	value = sh_cmt_read_cmstr(p);  	if (start)  		value |= 1 << cfg->timer_bit;  	else  		value &= ~(1 << cfg->timer_bit); -	sh_cmt_write(p, CMSTR, value); +	sh_cmt_write_cmstr(p, value);  	raw_spin_unlock_irqrestore(&sh_cmt_lock, flags);  } @@ -173,14 +212,14 @@ static int sh_cmt_enable(struct sh_cmt_priv *p, unsigned long *rate)  	/* configure channel, periodic mode and maximum timeout */  	if (p->width == 16) {  		*rate = clk_get_rate(p->clk) / 512; -		sh_cmt_write(p, CMCSR, 0x43); +		sh_cmt_write_cmcsr(p, 0x43);  	} else {  		*rate = clk_get_rate(p->clk) / 8; -		sh_cmt_write(p, CMCSR, 0x01a4); +		sh_cmt_write_cmcsr(p, 0x01a4);  	} -	sh_cmt_write(p, CMCOR, 0xffffffff); -	sh_cmt_write(p, CMCNT, 0); +	sh_cmt_write_cmcor(p, 0xffffffff); +	sh_cmt_write_cmcnt(p, 0);  	/*  	 * According to the sh73a0 user's manual, as CMCNT can be operated @@ -194,12 +233,12 @@ static int sh_cmt_enable(struct sh_cmt_priv *p, unsigned long *rate)  	 * take RCLKx2 at maximum.  	 */  	for (k = 0; k < 100; k++) { -		if (!sh_cmt_read(p, CMCNT)) +		if (!sh_cmt_read_cmcnt(p))  			break;  		udelay(1);  	} -	if (sh_cmt_read(p, CMCNT)) { +	if (sh_cmt_read_cmcnt(p)) {  		dev_err(&p->pdev->dev, "cannot clear CMCNT\n");  		ret = -ETIMEDOUT;  		goto err1; @@ -222,7 +261,7 @@ static void sh_cmt_disable(struct sh_cmt_priv *p)  	sh_cmt_start_stop_ch(p, 0);  	/* disable interrupts in CMT block */ -	sh_cmt_write(p, CMCSR, 0); +	sh_cmt_write_cmcsr(p, 0);  	/* stop clock */  	clk_disable(p->clk); @@ -270,7 +309,7 @@ static void sh_cmt_clock_event_program_verify(struct sh_cmt_priv *p,  		if (new_match > p->max_match_value)  			new_match = p->max_match_value; -		sh_cmt_write(p, CMCOR, new_match); +		sh_cmt_write_cmcor(p, new_match);  		now = sh_cmt_get_counter(p, &has_wrapped);  		if (has_wrapped && (new_match > p->match_value)) { @@ -346,7 +385,7 @@ static irqreturn_t sh_cmt_interrupt(int irq, void *dev_id)  	struct sh_cmt_priv *p = dev_id;  	/* clear flags */ -	sh_cmt_write(p, CMCSR, sh_cmt_read(p, CMCSR) & p->clear_bits); +	sh_cmt_write_cmcsr(p, sh_cmt_read_cmcsr(p) & p->clear_bits);  	/* update clock source counter to begin with if enabled  	 * the wrap flag should be cleared by the timer specific @@ -625,14 +664,6 @@ static int sh_cmt_register(struct sh_cmt_priv *p, char *name,  			   unsigned long clockevent_rating,  			   unsigned long clocksource_rating)  { -	if (p->width == (sizeof(p->max_match_value) * 8)) -		p->max_match_value = ~0; -	else -		p->max_match_value = (1 << p->width) - 1; - -	p->match_value = p->max_match_value; -	raw_spin_lock_init(&p->lock); -  	if (clockevent_rating)  		sh_cmt_register_clockevent(p, name, clockevent_rating); @@ -657,8 +688,6 @@ static int sh_cmt_setup(struct sh_cmt_priv *p, struct platform_device *pdev)  		goto err0;  	} -	platform_set_drvdata(pdev, p); -  	res = platform_get_resource(p->pdev, IORESOURCE_MEM, 0);  	if (!res) {  		dev_err(&p->pdev->dev, "failed to get I/O memory\n"); @@ -693,32 +722,51 @@ static int sh_cmt_setup(struct sh_cmt_priv *p, struct platform_device *pdev)  		goto err1;  	} +	p->read_control = sh_cmt_read16; +	p->write_control = sh_cmt_write16; +  	if (resource_size(res) == 6) {  		p->width = 16; +		p->read_count = sh_cmt_read16; +		p->write_count = sh_cmt_write16;  		p->overflow_bit = 0x80;  		p->clear_bits = ~0x80;  	} else {  		p->width = 32; +		p->read_count = sh_cmt_read32; +		p->write_count = sh_cmt_write32;  		p->overflow_bit = 0x8000;  		p->clear_bits = ~0xc000;  	} +	if (p->width == (sizeof(p->max_match_value) * 8)) +		p->max_match_value = ~0; +	else +		p->max_match_value = (1 << p->width) - 1; + +	p->match_value = p->max_match_value; +	raw_spin_lock_init(&p->lock); +  	ret = sh_cmt_register(p, (char *)dev_name(&p->pdev->dev),  			      cfg->clockevent_rating,  			      cfg->clocksource_rating);  	if (ret) {  		dev_err(&p->pdev->dev, "registration failed\n"); -		goto err1; +		goto err2;  	}  	p->cs_enabled = false;  	ret = setup_irq(irq, &p->irqaction);  	if (ret) {  		dev_err(&p->pdev->dev, "failed to request irq %d\n", irq); -		goto err1; +		goto err2;  	} +	platform_set_drvdata(pdev, p); +  	return 0; +err2: +	clk_put(p->clk);  err1:  	iounmap(p->mapbase); @@ -751,7 +799,6 @@ static int sh_cmt_probe(struct platform_device *pdev)  	ret = sh_cmt_setup(p, pdev);  	if (ret) {  		kfree(p); -		platform_set_drvdata(pdev, NULL);  		pm_runtime_idle(&pdev->dev);  		return ret;  	} @@ -791,7 +838,7 @@ static void __exit sh_cmt_exit(void)  }  early_platform_init("earlytimer", &sh_cmt_device_driver); -module_init(sh_cmt_init); +subsys_initcall(sh_cmt_init);  module_exit(sh_cmt_exit);  MODULE_AUTHOR("Magnus Damm"); diff --git a/drivers/clocksource/sh_mtu2.c b/drivers/clocksource/sh_mtu2.c index 83943e27cfa..4aac9ee0d0c 100644 --- a/drivers/clocksource/sh_mtu2.c +++ b/drivers/clocksource/sh_mtu2.c @@ -386,7 +386,7 @@ static void __exit sh_mtu2_exit(void)  }  early_platform_init("earlytimer", &sh_mtu2_device_driver); -module_init(sh_mtu2_init); +subsys_initcall(sh_mtu2_init);  module_exit(sh_mtu2_exit);  MODULE_AUTHOR("Magnus Damm"); diff --git a/drivers/clocksource/sh_tmu.c b/drivers/clocksource/sh_tmu.c index b4502edce2a..78b8dae4962 100644 --- a/drivers/clocksource/sh_tmu.c +++ b/drivers/clocksource/sh_tmu.c @@ -549,7 +549,7 @@ static void __exit sh_tmu_exit(void)  }  early_platform_init("earlytimer", &sh_tmu_device_driver); -module_init(sh_tmu_init); +subsys_initcall(sh_tmu_init);  module_exit(sh_tmu_exit);  MODULE_AUTHOR("Magnus Damm"); diff --git a/drivers/edac/amd64_edac.c b/drivers/edac/amd64_edac.c index 910b0116c12..e1d13c463c9 100644 --- a/drivers/edac/amd64_edac.c +++ b/drivers/edac/amd64_edac.c @@ -2048,12 +2048,18 @@ static int init_csrows(struct mem_ctl_info *mci)  		edac_dbg(1, "MC node: %d, csrow: %d\n",  			    pvt->mc_node_id, i); -		if (row_dct0) +		if (row_dct0) {  			nr_pages = amd64_csrow_nr_pages(pvt, 0, i); +			csrow->channels[0]->dimm->nr_pages = nr_pages; +		}  		/* K8 has only one DCT */ -		if (boot_cpu_data.x86 != 0xf && row_dct1) -			nr_pages += amd64_csrow_nr_pages(pvt, 1, i); +		if (boot_cpu_data.x86 != 0xf && row_dct1) { +			int row_dct1_pages = amd64_csrow_nr_pages(pvt, 1, i); + +			csrow->channels[1]->dimm->nr_pages = row_dct1_pages; +			nr_pages += row_dct1_pages; +		}  		mtype = amd64_determine_memory_type(pvt, i); @@ -2072,9 +2078,7 @@ static int init_csrows(struct mem_ctl_info *mci)  			dimm = csrow->channels[j]->dimm;  			dimm->mtype = mtype;  			dimm->edac_mode = edac_mode; -			dimm->nr_pages = nr_pages;  		} -		csrow->nr_pages = nr_pages;  	}  	return empty; @@ -2419,7 +2423,6 @@ static int amd64_init_one_instance(struct pci_dev *F2)  	mci->pvt_info = pvt;  	mci->pdev = &pvt->F2->dev; -	mci->csbased = 1;  	setup_mci_misc_attrs(mci, fam_type); diff --git a/drivers/edac/edac_mc.c b/drivers/edac/edac_mc.c index cdb81aa73ab..27e86d93826 100644 --- a/drivers/edac/edac_mc.c +++ b/drivers/edac/edac_mc.c @@ -86,7 +86,7 @@ static void edac_mc_dump_dimm(struct dimm_info *dimm, int number)  	edac_dimm_info_location(dimm, location, sizeof(location));  	edac_dbg(4, "%s%i: %smapped as virtual row %d, chan %d\n", -		 dimm->mci->mem_is_per_rank ? "rank" : "dimm", +		 dimm->mci->csbased ? "rank" : "dimm",  		 number, location, dimm->csrow, dimm->cschannel);  	edac_dbg(4, "  dimm = %p\n", dimm);  	edac_dbg(4, "  dimm->label = '%s'\n", dimm->label); @@ -341,7 +341,7 @@ struct mem_ctl_info *edac_mc_alloc(unsigned mc_num,  	memcpy(mci->layers, layers, sizeof(*layer) * n_layers);  	mci->nr_csrows = tot_csrows;  	mci->num_cschannel = tot_channels; -	mci->mem_is_per_rank = per_rank; +	mci->csbased = per_rank;  	/*  	 * Alocate and fill the csrow/channels structs @@ -1235,7 +1235,7 @@ void edac_mc_handle_error(const enum hw_event_mc_err_type type,  			 * incrementing the compat API counters  			 */  			edac_dbg(4, "%s csrows map: (%d,%d)\n", -				 mci->mem_is_per_rank ? "rank" : "dimm", +				 mci->csbased ? "rank" : "dimm",  				 dimm->csrow, dimm->cschannel);  			if (row == -1)  				row = dimm->csrow; diff --git a/drivers/edac/edac_mc_sysfs.c b/drivers/edac/edac_mc_sysfs.c index 4f4b6137d74..5899a76eec3 100644 --- a/drivers/edac/edac_mc_sysfs.c +++ b/drivers/edac/edac_mc_sysfs.c @@ -143,7 +143,7 @@ static const char *edac_caps[] = {   * and the per-dimm/per-rank one   */  #define DEVICE_ATTR_LEGACY(_name, _mode, _show, _store) \ -	struct device_attribute dev_attr_legacy_##_name = __ATTR(_name, _mode, _show, _store) +	static struct device_attribute dev_attr_legacy_##_name = __ATTR(_name, _mode, _show, _store)  struct dev_ch_attribute {  	struct device_attribute attr; @@ -180,9 +180,6 @@ static ssize_t csrow_size_show(struct device *dev,  	int i;  	u32 nr_pages = 0; -	if (csrow->mci->csbased) -		return sprintf(data, "%u\n", PAGES_TO_MiB(csrow->nr_pages)); -  	for (i = 0; i < csrow->nr_channels; i++)  		nr_pages += csrow->channels[i]->dimm->nr_pages;  	return sprintf(data, "%u\n", PAGES_TO_MiB(nr_pages)); @@ -612,7 +609,7 @@ static int edac_create_dimm_object(struct mem_ctl_info *mci,  	device_initialize(&dimm->dev);  	dimm->dev.parent = &mci->dev; -	if (mci->mem_is_per_rank) +	if (mci->csbased)  		dev_set_name(&dimm->dev, "rank%d", index);  	else  		dev_set_name(&dimm->dev, "dimm%d", index); @@ -778,14 +775,10 @@ static ssize_t mci_size_mb_show(struct device *dev,  	for (csrow_idx = 0; csrow_idx < mci->nr_csrows; csrow_idx++) {  		struct csrow_info *csrow = mci->csrows[csrow_idx]; -		if (csrow->mci->csbased) { -			total_pages += csrow->nr_pages; -		} else { -			for (j = 0; j < csrow->nr_channels; j++) { -				struct dimm_info *dimm = csrow->channels[j]->dimm; +		for (j = 0; j < csrow->nr_channels; j++) { +			struct dimm_info *dimm = csrow->channels[j]->dimm; -				total_pages += dimm->nr_pages; -			} +			total_pages += dimm->nr_pages;  		}  	} diff --git a/drivers/gpio/Kconfig b/drivers/gpio/Kconfig index 93aaadf99f2..b166e30b3bc 100644 --- a/drivers/gpio/Kconfig +++ b/drivers/gpio/Kconfig @@ -227,12 +227,6 @@ config GPIO_TS5500  	  blocks of the TS-5500: DIO1, DIO2 and the LCD port, and the TS-5600  	  LCD port. -config GPIO_VT8500 -	bool "VIA/Wondermedia SoC GPIO Support" -	depends on ARCH_VT8500 -	help -	  Say yes here to support the VT8500/WM8505/WM8650 GPIO controller. -  config GPIO_XILINX  	bool "Xilinx GPIO support"  	depends on PPC_OF || MICROBLAZE diff --git a/drivers/gpio/Makefile b/drivers/gpio/Makefile index 22e07bc9fcb..a274d7df3c8 100644 --- a/drivers/gpio/Makefile +++ b/drivers/gpio/Makefile @@ -80,7 +80,6 @@ obj-$(CONFIG_GPIO_TWL6040)	+= gpio-twl6040.o  obj-$(CONFIG_GPIO_UCB1400)	+= gpio-ucb1400.o  obj-$(CONFIG_GPIO_VIPERBOARD)	+= gpio-viperboard.o  obj-$(CONFIG_GPIO_VR41XX)	+= gpio-vr41xx.o -obj-$(CONFIG_GPIO_VT8500)	+= gpio-vt8500.o  obj-$(CONFIG_GPIO_VX855)	+= gpio-vx855.o  obj-$(CONFIG_GPIO_WM831X)	+= gpio-wm831x.o  obj-$(CONFIG_GPIO_WM8350)	+= gpio-wm8350.o diff --git a/drivers/gpio/gpio-mvebu.c b/drivers/gpio/gpio-mvebu.c index 7472182967c..61a6fde6c08 100644 --- a/drivers/gpio/gpio-mvebu.c +++ b/drivers/gpio/gpio-mvebu.c @@ -42,6 +42,7 @@  #include <linux/io.h>  #include <linux/of_irq.h>  #include <linux/of_device.h> +#include <linux/clk.h>  #include <linux/pinctrl/consumer.h>  /* @@ -496,6 +497,7 @@ static int mvebu_gpio_probe(struct platform_device *pdev)  	struct resource *res;  	struct irq_chip_generic *gc;  	struct irq_chip_type *ct; +	struct clk *clk;  	unsigned int ngpios;  	int soc_variant;  	int i, cpu, id; @@ -529,6 +531,11 @@ static int mvebu_gpio_probe(struct platform_device *pdev)  		return id;  	} +	clk = devm_clk_get(&pdev->dev, NULL); +	/* Not all SoCs require a clock.*/ +	if (!IS_ERR(clk)) +		clk_prepare_enable(clk); +  	mvchip->soc_variant = soc_variant;  	mvchip->chip.label = dev_name(&pdev->dev);  	mvchip->chip.dev = &pdev->dev; diff --git a/drivers/gpio/gpio-samsung.c b/drivers/gpio/gpio-samsung.c index b3643ff007e..99e0fa49fcb 100644 --- a/drivers/gpio/gpio-samsung.c +++ b/drivers/gpio/gpio-samsung.c @@ -1122,8 +1122,12 @@ int samsung_gpiolib_to_irq(struct gpio_chip *chip, unsigned int offset)  #ifdef CONFIG_PLAT_S3C24XX  static int s3c24xx_gpiolib_fbank_to_irq(struct gpio_chip *chip, unsigned offset)  { -	if (offset < 4) -		return IRQ_EINT0 + offset; +	if (offset < 4) { +		if (soc_is_s3c2412()) +			return IRQ_EINT0_2412 + offset; +		else +			return IRQ_EINT0 + offset; +	}  	if (offset < 8)  		return IRQ_EINT4 + offset - 4; @@ -3024,6 +3028,7 @@ static __init int samsung_gpiolib_init(void)  	static const struct of_device_id exynos_pinctrl_ids[] = {  		{ .compatible = "samsung,exynos4210-pinctrl", },  		{ .compatible = "samsung,exynos4x12-pinctrl", }, +		{ .compatible = "samsung,exynos5250-pinctrl", },  		{ .compatible = "samsung,exynos5440-pinctrl", },  	};  	for_each_matching_node(pctrl_np, exynos_pinctrl_ids) diff --git a/drivers/gpio/gpio-vt8500.c b/drivers/gpio/gpio-vt8500.c deleted file mode 100644 index 81683ca35ac..00000000000 --- a/drivers/gpio/gpio-vt8500.c +++ /dev/null @@ -1,355 +0,0 @@ -/* drivers/gpio/gpio-vt8500.c - * - * Copyright (C) 2012 Tony Prisk <linux@prisktech.co.nz> - * Based on arch/arm/mach-vt8500/gpio.c: - * - Copyright (C) 2010 Alexey Charkov <alchark@gmail.com> - * - * This software is licensed under the terms of the GNU General Public - * License version 2, as published by the Free Software Foundation, and - * may be copied, distributed, and modified under those terms. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details. - * - */ - -#include <linux/module.h> -#include <linux/err.h> -#include <linux/io.h> -#include <linux/gpio.h> -#include <linux/platform_device.h> -#include <linux/bitops.h> -#include <linux/of.h> -#include <linux/of_address.h> -#include <linux/of_irq.h> -#include <linux/of_device.h> - -/* -	We handle GPIOs by bank, each bank containing up to 32 GPIOs covered -	by one set of registers (although not all may be valid). - -	Because different SoC's have different register offsets, we pass the -	register offsets as data in vt8500_gpio_dt_ids[]. - -	A value of NO_REG is used to indicate that this register is not -	supported. Only used for ->en at the moment. -*/ - -#define NO_REG	0xFFFF - -/* - * struct vt8500_gpio_bank_regoffsets - * @en: offset to enable register of the bank - * @dir: offset to direction register of the bank - * @data_out: offset to the data out register of the bank - * @data_in: offset to the data in register of the bank - * @ngpio: highest valid pin in this bank - */ - -struct vt8500_gpio_bank_regoffsets { -	unsigned int	en; -	unsigned int	dir; -	unsigned int	data_out; -	unsigned int	data_in; -	unsigned char	ngpio; -}; - -struct vt8500_gpio_data { -	unsigned int				num_banks; -	struct vt8500_gpio_bank_regoffsets	banks[]; -}; - -#define VT8500_BANK(__en, __dir, __out, __in, __ngpio)		\ -{								\ -	.en = __en,						\ -	.dir = __dir,						\ -	.data_out = __out,					\ -	.data_in = __in,					\ -	.ngpio = __ngpio,					\ -} - -static struct vt8500_gpio_data vt8500_data = { -	.num_banks	= 7, -	.banks	= { -		VT8500_BANK(NO_REG, 0x3C, 0x5C, 0x7C, 9), -		VT8500_BANK(0x00, 0x20, 0x40, 0x60, 26), -		VT8500_BANK(0x04, 0x24, 0x44, 0x64, 28), -		VT8500_BANK(0x08, 0x28, 0x48, 0x68, 31), -		VT8500_BANK(0x0C, 0x2C, 0x4C, 0x6C, 19), -		VT8500_BANK(0x10, 0x30, 0x50, 0x70, 19), -		VT8500_BANK(0x14, 0x34, 0x54, 0x74, 23), -	}, -}; - -static struct vt8500_gpio_data wm8505_data = { -	.num_banks	= 10, -	.banks	= { -		VT8500_BANK(0x64, 0x8C, 0xB4, 0xDC, 22), -		VT8500_BANK(0x40, 0x68, 0x90, 0xB8, 8), -		VT8500_BANK(0x44, 0x6C, 0x94, 0xBC, 32), -		VT8500_BANK(0x48, 0x70, 0x98, 0xC0, 6), -		VT8500_BANK(0x4C, 0x74, 0x9C, 0xC4, 16), -		VT8500_BANK(0x50, 0x78, 0xA0, 0xC8, 25), -		VT8500_BANK(0x54, 0x7C, 0xA4, 0xCC, 5), -		VT8500_BANK(0x58, 0x80, 0xA8, 0xD0, 5), -		VT8500_BANK(0x5C, 0x84, 0xAC, 0xD4, 12), -		VT8500_BANK(0x60, 0x88, 0xB0, 0xD8, 16), -		VT8500_BANK(0x500, 0x504, 0x508, 0x50C, 6), -	}, -}; - -/* - * No information about which bits are valid so we just make - * them all available until its figured out. - */ -static struct vt8500_gpio_data wm8650_data = { -	.num_banks	= 9, -	.banks	= { -		VT8500_BANK(0x40, 0x80, 0xC0, 0x00, 32), -		VT8500_BANK(0x44, 0x84, 0xC4, 0x04, 32), -		VT8500_BANK(0x48, 0x88, 0xC8, 0x08, 32), -		VT8500_BANK(0x4C, 0x8C, 0xCC, 0x0C, 32), -		VT8500_BANK(0x50, 0x90, 0xD0, 0x10, 32), -		VT8500_BANK(0x54, 0x94, 0xD4, 0x14, 32), -		VT8500_BANK(0x58, 0x98, 0xD8, 0x18, 32), -		VT8500_BANK(0x5C, 0x9C, 0xDC, 0x1C, 32), -		VT8500_BANK(0x7C, 0xBC, 0xFC, 0x3C, 32), -		VT8500_BANK(0x500, 0x504, 0x508, 0x50C, 6), -	}, -}; - -struct vt8500_gpio_chip { -	struct gpio_chip		chip; - -	const struct vt8500_gpio_bank_regoffsets *regs; -	void __iomem	*base; -}; - -struct vt8500_data { -	struct vt8500_gpio_chip *chip; -	void __iomem *iobase; -	int num_banks; -}; - - -#define to_vt8500(__chip) container_of(__chip, struct vt8500_gpio_chip, chip) - -static int vt8500_gpio_request(struct gpio_chip *chip, unsigned offset) -{ -	u32 val; -	struct vt8500_gpio_chip *vt8500_chip = to_vt8500(chip); - -	if (vt8500_chip->regs->en == NO_REG) -		return 0; - -	val = readl_relaxed(vt8500_chip->base + vt8500_chip->regs->en); -	val |= BIT(offset); -	writel_relaxed(val, vt8500_chip->base + vt8500_chip->regs->en); - -	return 0; -} - -static void vt8500_gpio_free(struct gpio_chip *chip, unsigned offset) -{ -	struct vt8500_gpio_chip *vt8500_chip = to_vt8500(chip); -	u32 val; - -	if (vt8500_chip->regs->en == NO_REG) -		return; - -	val = readl_relaxed(vt8500_chip->base + vt8500_chip->regs->en); -	val &= ~BIT(offset); -	writel_relaxed(val, vt8500_chip->base + vt8500_chip->regs->en); -} - -static int vt8500_gpio_direction_input(struct gpio_chip *chip, unsigned offset) -{ -	struct vt8500_gpio_chip *vt8500_chip = to_vt8500(chip); - -	u32 val = readl_relaxed(vt8500_chip->base + vt8500_chip->regs->dir); -	val &= ~BIT(offset); -	writel_relaxed(val, vt8500_chip->base + vt8500_chip->regs->dir); - -	return 0; -} - -static int vt8500_gpio_direction_output(struct gpio_chip *chip, unsigned offset, -								int value) -{ -	struct vt8500_gpio_chip *vt8500_chip = to_vt8500(chip); - -	u32 val = readl_relaxed(vt8500_chip->base + vt8500_chip->regs->dir); -	val |= BIT(offset); -	writel_relaxed(val, vt8500_chip->base + vt8500_chip->regs->dir); - -	if (value) { -		val = readl_relaxed(vt8500_chip->base + -						vt8500_chip->regs->data_out); -		val |= BIT(offset); -		writel_relaxed(val, vt8500_chip->base + -						vt8500_chip->regs->data_out); -	} -	return 0; -} - -static int vt8500_gpio_get_value(struct gpio_chip *chip, unsigned offset) -{ -	struct vt8500_gpio_chip *vt8500_chip = to_vt8500(chip); - -	return (readl_relaxed(vt8500_chip->base + vt8500_chip->regs->data_in) >> -								offset) & 1; -} - -static void vt8500_gpio_set_value(struct gpio_chip *chip, unsigned offset, -								int value) -{ -	struct vt8500_gpio_chip *vt8500_chip = to_vt8500(chip); - -	u32 val = readl_relaxed(vt8500_chip->base + -						vt8500_chip->regs->data_out); -	if (value) -		val |= BIT(offset); -	else -		val &= ~BIT(offset); - -	writel_relaxed(val, vt8500_chip->base + vt8500_chip->regs->data_out); -} - -static int vt8500_of_xlate(struct gpio_chip *gc, -			    const struct of_phandle_args *gpiospec, u32 *flags) -{ -	/* bank if specificed in gpiospec->args[0] */ -	if (flags) -		*flags = gpiospec->args[2]; - -	return gpiospec->args[1]; -} - -static int vt8500_add_chips(struct platform_device *pdev, void __iomem *base, -				const struct vt8500_gpio_data *data) -{ -	struct vt8500_data *priv; -	struct vt8500_gpio_chip *vtchip; -	struct gpio_chip *chip; -	int i; -	int pin_cnt = 0; - -	priv = devm_kzalloc(&pdev->dev, sizeof(struct vt8500_data), GFP_KERNEL); -	if (!priv) { -		dev_err(&pdev->dev, "failed to allocate memory\n"); -		return -ENOMEM; -	} - -	priv->chip = devm_kzalloc(&pdev->dev, -			sizeof(struct vt8500_gpio_chip) * data->num_banks, -			GFP_KERNEL); -	if (!priv->chip) { -		dev_err(&pdev->dev, "failed to allocate chip memory\n"); -		return -ENOMEM; -	} - -	priv->iobase = base; -	priv->num_banks = data->num_banks; -	platform_set_drvdata(pdev, priv); - -	vtchip = priv->chip; - -	for (i = 0; i < data->num_banks; i++) { -		vtchip[i].base = base; -		vtchip[i].regs = &data->banks[i]; - -		chip = &vtchip[i].chip; - -		chip->of_xlate = vt8500_of_xlate; -		chip->of_gpio_n_cells = 3; -		chip->of_node = pdev->dev.of_node; - -		chip->request = vt8500_gpio_request; -		chip->free = vt8500_gpio_free; -		chip->direction_input = vt8500_gpio_direction_input; -		chip->direction_output = vt8500_gpio_direction_output; -		chip->get = vt8500_gpio_get_value; -		chip->set = vt8500_gpio_set_value; -		chip->can_sleep = 0; -		chip->base = pin_cnt; -		chip->ngpio = data->banks[i].ngpio; - -		pin_cnt += data->banks[i].ngpio; - -		gpiochip_add(chip); -	} -	return 0; -} - -static struct of_device_id vt8500_gpio_dt_ids[] = { -	{ .compatible = "via,vt8500-gpio", .data = &vt8500_data, }, -	{ .compatible = "wm,wm8505-gpio", .data = &wm8505_data, }, -	{ .compatible = "wm,wm8650-gpio", .data = &wm8650_data, }, -	{ /* Sentinel */ }, -}; - -static int vt8500_gpio_probe(struct platform_device *pdev) -{ -	int ret; -	void __iomem *gpio_base; -	struct resource *res; -	const struct of_device_id *of_id = -				of_match_device(vt8500_gpio_dt_ids, &pdev->dev); - -	if (!of_id) { -		dev_err(&pdev->dev, "No matching driver data\n"); -		return -ENODEV; -	} - -	res = platform_get_resource(pdev, IORESOURCE_MEM, 0); -	if (!res) { -		dev_err(&pdev->dev, "Unable to get IO resource\n"); -		return -ENODEV; -	} - -	gpio_base = devm_request_and_ioremap(&pdev->dev, res); -	if (!gpio_base) { -		dev_err(&pdev->dev, "Unable to map GPIO registers\n"); -		return -ENOMEM; -	} - -	ret = vt8500_add_chips(pdev, gpio_base, of_id->data); - -	return ret; -} - -static int vt8500_gpio_remove(struct platform_device *pdev) -{ -	int i; -	int ret; -	struct vt8500_data *priv = platform_get_drvdata(pdev); -	struct vt8500_gpio_chip *vtchip = priv->chip; - -	for (i = 0; i < priv->num_banks; i++) { -		ret = gpiochip_remove(&vtchip[i].chip); -		if (ret) -			dev_warn(&pdev->dev, "gpiochip_remove returned %d\n", -				 ret); -	} - -	return 0; -} - -static struct platform_driver vt8500_gpio_driver = { -	.probe		= vt8500_gpio_probe, -	.remove		= vt8500_gpio_remove, -	.driver		= { -		.name	= "vt8500-gpio", -		.owner	= THIS_MODULE, -		.of_match_table = vt8500_gpio_dt_ids, -	}, -}; - -module_platform_driver(vt8500_gpio_driver); - -MODULE_DESCRIPTION("VT8500 GPIO Driver"); -MODULE_AUTHOR("Tony Prisk <linux@prisktech.co.nz>"); -MODULE_LICENSE("GPL v2"); -MODULE_DEVICE_TABLE(of, vt8500_gpio_dt_ids); diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c index c194f4e680a..e2acfdbf7d3 100644 --- a/drivers/gpu/drm/drm_edid.c +++ b/drivers/gpu/drm/drm_edid.c @@ -1634,7 +1634,7 @@ static struct drm_display_mode *drm_mode_detailed(struct drm_device *dev,  	unsigned vblank = (pt->vactive_vblank_hi & 0xf) << 8 | pt->vblank_lo;  	unsigned hsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc0) << 2 | pt->hsync_offset_lo;  	unsigned hsync_pulse_width = (pt->hsync_vsync_offset_pulse_width_hi & 0x30) << 4 | pt->hsync_pulse_width_lo; -	unsigned vsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc) >> 2 | pt->vsync_offset_pulse_width_lo >> 4; +	unsigned vsync_offset = (pt->hsync_vsync_offset_pulse_width_hi & 0xc) << 2 | pt->vsync_offset_pulse_width_lo >> 4;  	unsigned vsync_pulse_width = (pt->hsync_vsync_offset_pulse_width_hi & 0x3) << 4 | (pt->vsync_offset_pulse_width_lo & 0xf);  	/* ignore tiny modes */ @@ -1715,6 +1715,7 @@ set_size:  	}  	mode->type = DRM_MODE_TYPE_DRIVER; +	mode->vrefresh = drm_mode_vrefresh(mode);  	drm_mode_set_name(mode);  	return mode; diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c index aae31489c89..7299ea45dd0 100644 --- a/drivers/gpu/drm/i915/i915_debugfs.c +++ b/drivers/gpu/drm/i915/i915_debugfs.c @@ -103,7 +103,7 @@ static const char *cache_level_str(int type)  static void  describe_obj(struct seq_file *m, struct drm_i915_gem_object *obj)  { -	seq_printf(m, "%p: %s%s %8zdKiB %02x %02x %d %d %d%s%s%s", +	seq_printf(m, "%pK: %s%s %8zdKiB %02x %02x %d %d %d%s%s%s",  		   &obj->base,  		   get_pin_flag(obj),  		   get_tiling_flag(obj), diff --git a/drivers/gpu/drm/i915/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/i915_gem_execbuffer.c index 2f2daebd0ee..3b11ab0fbc9 100644 --- a/drivers/gpu/drm/i915/i915_gem_execbuffer.c +++ b/drivers/gpu/drm/i915/i915_gem_execbuffer.c @@ -732,6 +732,8 @@ validate_exec_list(struct drm_i915_gem_exec_object2 *exec,  		   int count)  {  	int i; +	int relocs_total = 0; +	int relocs_max = INT_MAX / sizeof(struct drm_i915_gem_relocation_entry);  	for (i = 0; i < count; i++) {  		char __user *ptr = (char __user *)(uintptr_t)exec[i].relocs_ptr; @@ -740,10 +742,13 @@ validate_exec_list(struct drm_i915_gem_exec_object2 *exec,  		if (exec[i].flags & __EXEC_OBJECT_UNKNOWN_FLAGS)  			return -EINVAL; -		/* First check for malicious input causing overflow */ -		if (exec[i].relocation_count > -		    INT_MAX / sizeof(struct drm_i915_gem_relocation_entry)) +		/* First check for malicious input causing overflow in +		 * the worst case where we need to allocate the entire +		 * relocation tree as a single array. +		 */ +		if (exec[i].relocation_count > relocs_max - relocs_total)  			return -EINVAL; +		relocs_total += exec[i].relocation_count;  		length = exec[i].relocation_count *  			sizeof(struct drm_i915_gem_relocation_entry); diff --git a/drivers/gpu/drm/i915/intel_dp.c b/drivers/gpu/drm/i915/intel_dp.c index 6f728e5ee79..d7d4afe0134 100644 --- a/drivers/gpu/drm/i915/intel_dp.c +++ b/drivers/gpu/drm/i915/intel_dp.c @@ -820,6 +820,7 @@ intel_dp_set_m_n(struct drm_crtc *crtc, struct drm_display_mode *mode,  	struct intel_link_m_n m_n;  	int pipe = intel_crtc->pipe;  	enum transcoder cpu_transcoder = intel_crtc->cpu_transcoder; +	int target_clock;  	/*  	 * Find the lane count in the intel_encoder private @@ -835,13 +836,22 @@ intel_dp_set_m_n(struct drm_crtc *crtc, struct drm_display_mode *mode,  		}  	} +	target_clock = mode->clock; +	for_each_encoder_on_crtc(dev, crtc, intel_encoder) { +		if (intel_encoder->type == INTEL_OUTPUT_EDP) { +			target_clock = intel_edp_target_clock(intel_encoder, +							      mode); +			break; +		} +	} +  	/*  	 * Compute the GMCH and Link ratios. The '3' here is  	 * the number of bytes_per_pixel post-LUT, which we always  	 * set up for 8-bits of R/G/B, or 3 bytes total.  	 */  	intel_link_compute_m_n(intel_crtc->bpp, lane_count, -			       mode->clock, adjusted_mode->clock, &m_n); +			       target_clock, adjusted_mode->clock, &m_n);  	if (IS_HASWELL(dev)) {  		I915_WRITE(PIPE_DATA_M1(cpu_transcoder), @@ -1930,7 +1940,7 @@ intel_dp_start_link_train(struct intel_dp *intel_dp)  		for (i = 0; i < intel_dp->lane_count; i++)  			if ((intel_dp->train_set[i] & DP_TRAIN_MAX_SWING_REACHED) == 0)  				break; -		if (i == intel_dp->lane_count && voltage_tries == 5) { +		if (i == intel_dp->lane_count) {  			++loop_tries;  			if (loop_tries == 5) {  				DRM_DEBUG_KMS("too many full retries, give up\n"); diff --git a/drivers/gpu/drm/i915/intel_i2c.c b/drivers/gpu/drm/i915/intel_i2c.c index acf8aec9ada..ef4744e1bf0 100644 --- a/drivers/gpu/drm/i915/intel_i2c.c +++ b/drivers/gpu/drm/i915/intel_i2c.c @@ -203,7 +203,13 @@ intel_gpio_setup(struct intel_gmbus *bus, u32 pin)  	algo->data = bus;  } -#define HAS_GMBUS_IRQ(dev) (INTEL_INFO(dev)->gen >= 4) +/* + * gmbus on gen4 seems to be able to generate legacy interrupts even when in MSI + * mode. This results in spurious interrupt warnings if the legacy irq no. is + * shared with another device. The kernel then disables that interrupt source + * and so prevents the other device from working properly. + */ +#define HAS_GMBUS_IRQ(dev) (INTEL_INFO(dev)->gen >= 5)  static int  gmbus_wait_hw_status(struct drm_i915_private *dev_priv,  		     u32 gmbus2_status, @@ -214,6 +220,9 @@ gmbus_wait_hw_status(struct drm_i915_private *dev_priv,  	u32 gmbus2 = 0;  	DEFINE_WAIT(wait); +	if (!HAS_GMBUS_IRQ(dev_priv->dev)) +		gmbus4_irq_en = 0; +  	/* Important: The hw handles only the first bit, so set only one! Since  	 * we also need to check for NAKs besides the hw ready/idle signal, we  	 * need to wake up periodically and check that ourselves. */ diff --git a/drivers/gpu/drm/mgag200/mgag200_mode.c b/drivers/gpu/drm/mgag200/mgag200_mode.c index a274b9906ef..fe22bb780e1 100644 --- a/drivers/gpu/drm/mgag200/mgag200_mode.c +++ b/drivers/gpu/drm/mgag200/mgag200_mode.c @@ -382,19 +382,19 @@ static int mga_g200eh_set_plls(struct mga_device *mdev, long clock)  	m = n = p = 0;  	vcomax = 800000;  	vcomin = 400000; -	pllreffreq = 3333; +	pllreffreq = 33333;  	delta = 0xffffffff;  	permitteddelta = clock * 5 / 1000; -	for (testp = 16; testp > 0; testp--) { +	for (testp = 16; testp > 0; testp >>= 1) {  		if (clock * testp > vcomax)  			continue;  		if (clock * testp < vcomin)  			continue;  		for (testm = 1; testm < 33; testm++) { -			for (testn = 1; testn < 257; testn++) { +			for (testn = 17; testn < 257; testn++) {  				computed = (pllreffreq * testn) /  					(testm * testp);  				if (computed > clock) @@ -404,11 +404,11 @@ static int mga_g200eh_set_plls(struct mga_device *mdev, long clock)  				if (tmpdelta < delta) {  					delta = tmpdelta;  					n = testn - 1; -					m = (testm - 1) | ((n >> 1) & 0x80); +					m = (testm - 1);  					p = testp - 1;  				}  				if ((clock * testp) >= 600000) -					p |= 80; +					p |= 0x80;  			}  		}  	} diff --git a/drivers/gpu/drm/nouveau/core/core/object.c b/drivers/gpu/drm/nouveau/core/core/object.c index 0daab62ea14..3b2e7b6304d 100644 --- a/drivers/gpu/drm/nouveau/core/core/object.c +++ b/drivers/gpu/drm/nouveau/core/core/object.c @@ -278,7 +278,6 @@ nouveau_object_del(struct nouveau_object *client, u32 _parent, u32 _handle)  	struct nouveau_object *parent = NULL;  	struct nouveau_object *namedb = NULL;  	struct nouveau_handle *handle = NULL; -	int ret = -EINVAL;  	parent = nouveau_handle_ref(client, _parent);  	if (!parent) @@ -295,7 +294,7 @@ nouveau_object_del(struct nouveau_object *client, u32 _parent, u32 _handle)  	}  	nouveau_object_ref(NULL, &parent); -	return ret; +	return handle ? 0 : -EINVAL;  }  int diff --git a/drivers/gpu/drm/nouveau/core/engine/disp/nv50.c b/drivers/gpu/drm/nouveau/core/engine/disp/nv50.c index 5fa13267bd9..02e369f8044 100644 --- a/drivers/gpu/drm/nouveau/core/engine/disp/nv50.c +++ b/drivers/gpu/drm/nouveau/core/engine/disp/nv50.c @@ -544,13 +544,13 @@ nv50_disp_curs_ofuncs = {  static void  nv50_disp_base_vblank_enable(struct nouveau_event *event, int head)  { -	nv_mask(event->priv, 0x61002c, (1 << head), (1 << head)); +	nv_mask(event->priv, 0x61002c, (4 << head), (4 << head));  }  static void  nv50_disp_base_vblank_disable(struct nouveau_event *event, int head)  { -	nv_mask(event->priv, 0x61002c, (1 << head), (0 << head)); +	nv_mask(event->priv, 0x61002c, (4 << head), 0);  }  static int diff --git a/drivers/gpu/drm/nouveau/core/include/subdev/therm.h b/drivers/gpu/drm/nouveau/core/include/subdev/therm.h index 6b17b614629..0b20fc0d19c 100644 --- a/drivers/gpu/drm/nouveau/core/include/subdev/therm.h +++ b/drivers/gpu/drm/nouveau/core/include/subdev/therm.h @@ -4,7 +4,7 @@  #include <core/device.h>  #include <core/subdev.h> -enum nouveau_therm_mode { +enum nouveau_therm_fan_mode {  	NOUVEAU_THERM_CTRL_NONE = 0,  	NOUVEAU_THERM_CTRL_MANUAL = 1,  	NOUVEAU_THERM_CTRL_AUTO = 2, diff --git a/drivers/gpu/drm/nouveau/core/subdev/therm/base.c b/drivers/gpu/drm/nouveau/core/subdev/therm/base.c index f794dc89a3b..a00a5a76e2d 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/therm/base.c +++ b/drivers/gpu/drm/nouveau/core/subdev/therm/base.c @@ -134,7 +134,7 @@ nouveau_therm_alarm(struct nouveau_alarm *alarm)  }  int -nouveau_therm_mode(struct nouveau_therm *therm, int mode) +nouveau_therm_fan_mode(struct nouveau_therm *therm, int mode)  {  	struct nouveau_therm_priv *priv = (void *)therm;  	struct nouveau_device *device = nv_device(therm); @@ -149,10 +149,15 @@ nouveau_therm_mode(struct nouveau_therm *therm, int mode)  	    (mode != NOUVEAU_THERM_CTRL_NONE && device->card_type >= NV_C0))  		return -EINVAL; +	/* do not allow automatic fan management if the thermal sensor is +	 * not available */ +	if (priv->mode == 2 && therm->temp_get(therm) < 0) +		return -EINVAL; +  	if (priv->mode == mode)  		return 0; -	nv_info(therm, "Thermal management: %s\n", name[mode]); +	nv_info(therm, "fan management: %s\n", name[mode]);  	nouveau_therm_update(therm, mode);  	return 0;  } @@ -213,7 +218,7 @@ nouveau_therm_attr_set(struct nouveau_therm *therm,  		priv->fan->bios.max_duty = value;  		return 0;  	case NOUVEAU_THERM_ATTR_FAN_MODE: -		return nouveau_therm_mode(therm, value); +		return nouveau_therm_fan_mode(therm, value);  	case NOUVEAU_THERM_ATTR_THRS_FAN_BOOST:  		priv->bios_sensor.thrs_fan_boost.temp = value;  		priv->sensor.program_alarms(therm); @@ -263,7 +268,7 @@ _nouveau_therm_init(struct nouveau_object *object)  		return ret;  	if (priv->suspend >= 0) -		nouveau_therm_mode(therm, priv->mode); +		nouveau_therm_fan_mode(therm, priv->mode);  	priv->sensor.program_alarms(therm);  	return 0;  } @@ -313,11 +318,12 @@ nouveau_therm_create_(struct nouveau_object *parent,  int  nouveau_therm_preinit(struct nouveau_therm *therm)  { -	nouveau_therm_ic_ctor(therm);  	nouveau_therm_sensor_ctor(therm); +	nouveau_therm_ic_ctor(therm);  	nouveau_therm_fan_ctor(therm); -	nouveau_therm_mode(therm, NOUVEAU_THERM_CTRL_NONE); +	nouveau_therm_fan_mode(therm, NOUVEAU_THERM_CTRL_NONE); +	nouveau_therm_sensor_preinit(therm);  	return 0;  } diff --git a/drivers/gpu/drm/nouveau/core/subdev/therm/ic.c b/drivers/gpu/drm/nouveau/core/subdev/therm/ic.c index e24090bac19..8b3adec5fbb 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/therm/ic.c +++ b/drivers/gpu/drm/nouveau/core/subdev/therm/ic.c @@ -32,6 +32,7 @@ probe_monitoring_device(struct nouveau_i2c_port *i2c,  			struct i2c_board_info *info)  {  	struct nouveau_therm_priv *priv = (void *)nouveau_therm(i2c); +	struct nvbios_therm_sensor *sensor = &priv->bios_sensor;  	struct i2c_client *client;  	request_module("%s%s", I2C_MODULE_PREFIX, info->type); @@ -46,8 +47,9 @@ probe_monitoring_device(struct nouveau_i2c_port *i2c,  	}  	nv_info(priv, -		"Found an %s at address 0x%x (controlled by lm_sensors)\n", -		info->type, info->addr); +		"Found an %s at address 0x%x (controlled by lm_sensors, " +		"temp offset %+i C)\n", +		info->type, info->addr, sensor->offset_constant);  	priv->ic = client;  	return true; diff --git a/drivers/gpu/drm/nouveau/core/subdev/therm/nv40.c b/drivers/gpu/drm/nouveau/core/subdev/therm/nv40.c index 0f5363edb96..a70d1b7e397 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/therm/nv40.c +++ b/drivers/gpu/drm/nouveau/core/subdev/therm/nv40.c @@ -29,54 +29,83 @@ struct nv40_therm_priv {  	struct nouveau_therm_priv base;  }; +enum nv40_sensor_style { INVALID_STYLE = -1, OLD_STYLE = 0, NEW_STYLE = 1 }; + +static enum nv40_sensor_style +nv40_sensor_style(struct nouveau_therm *therm) +{ +	struct nouveau_device *device = nv_device(therm); + +	switch (device->chipset) { +	case 0x43: +	case 0x44: +	case 0x4a: +	case 0x47: +		return OLD_STYLE; + +	case 0x46: +	case 0x49: +	case 0x4b: +	case 0x4e: +	case 0x4c: +	case 0x67: +	case 0x68: +	case 0x63: +		return NEW_STYLE; +	default: +		return INVALID_STYLE; +	} +} +  static int  nv40_sensor_setup(struct nouveau_therm *therm)  { -	struct nouveau_device *device = nv_device(therm); +	enum nv40_sensor_style style = nv40_sensor_style(therm);  	/* enable ADC readout and disable the ALARM threshold */ -	if (device->chipset >= 0x46) { +	if (style == NEW_STYLE) {  		nv_mask(therm, 0x15b8, 0x80000000, 0);  		nv_wr32(therm, 0x15b0, 0x80003fff); -		mdelay(10); /* wait for the temperature to stabilize */ +		mdelay(20); /* wait for the temperature to stabilize */  		return nv_rd32(therm, 0x15b4) & 0x3fff; -	} else { +	} else if (style == OLD_STYLE) {  		nv_wr32(therm, 0x15b0, 0xff); +		mdelay(20); /* wait for the temperature to stabilize */  		return nv_rd32(therm, 0x15b4) & 0xff; -	} +	} else +		return -ENODEV;  }  static int  nv40_temp_get(struct nouveau_therm *therm)  {  	struct nouveau_therm_priv *priv = (void *)therm; -	struct nouveau_device *device = nv_device(therm);  	struct nvbios_therm_sensor *sensor = &priv->bios_sensor; +	enum nv40_sensor_style style = nv40_sensor_style(therm);  	int core_temp; -	if (device->chipset >= 0x46) { +	if (style == NEW_STYLE) {  		nv_wr32(therm, 0x15b0, 0x80003fff);  		core_temp = nv_rd32(therm, 0x15b4) & 0x3fff; -	} else { +	} else if (style == OLD_STYLE) {  		nv_wr32(therm, 0x15b0, 0xff);  		core_temp = nv_rd32(therm, 0x15b4) & 0xff; -	} - -	/* Setup the sensor if the temperature is 0 */ -	if (core_temp == 0) -		core_temp = nv40_sensor_setup(therm); +	} else +		return -ENODEV; -	if (sensor->slope_div == 0) -		sensor->slope_div = 1; -	if (sensor->offset_den == 0) -		sensor->offset_den = 1; -	if (sensor->slope_mult < 1) -		sensor->slope_mult = 1; +	/* if the slope or the offset is unset, do no use the sensor */ +	if (!sensor->slope_div || !sensor->slope_mult || +	    !sensor->offset_num || !sensor->offset_den) +	    return -ENODEV;  	core_temp = core_temp * sensor->slope_mult / sensor->slope_div;  	core_temp = core_temp + sensor->offset_num / sensor->offset_den;  	core_temp = core_temp + sensor->offset_constant - 8; +	/* reserve negative temperatures for errors */ +	if (core_temp < 0) +		core_temp = 0; +  	return core_temp;  } diff --git a/drivers/gpu/drm/nouveau/core/subdev/therm/priv.h b/drivers/gpu/drm/nouveau/core/subdev/therm/priv.h index 06b98706b3f..438d9824b77 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/therm/priv.h +++ b/drivers/gpu/drm/nouveau/core/subdev/therm/priv.h @@ -102,7 +102,7 @@ struct nouveau_therm_priv {  	struct i2c_client *ic;  }; -int nouveau_therm_mode(struct nouveau_therm *therm, int mode); +int nouveau_therm_fan_mode(struct nouveau_therm *therm, int mode);  int nouveau_therm_attr_get(struct nouveau_therm *therm,  		       enum nouveau_therm_attr_type type);  int nouveau_therm_attr_set(struct nouveau_therm *therm, @@ -122,6 +122,7 @@ int nouveau_therm_fan_sense(struct nouveau_therm *therm);  int nouveau_therm_preinit(struct nouveau_therm *); +void nouveau_therm_sensor_preinit(struct nouveau_therm *);  void nouveau_therm_sensor_set_threshold_state(struct nouveau_therm *therm,  					     enum nouveau_therm_thrs thrs,  					     enum nouveau_therm_thrs_state st); diff --git a/drivers/gpu/drm/nouveau/core/subdev/therm/temp.c b/drivers/gpu/drm/nouveau/core/subdev/therm/temp.c index b37624af829..470f6a47b65 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/therm/temp.c +++ b/drivers/gpu/drm/nouveau/core/subdev/therm/temp.c @@ -34,10 +34,6 @@ nouveau_therm_temp_set_defaults(struct nouveau_therm *therm)  {  	struct nouveau_therm_priv *priv = (void *)therm; -	priv->bios_sensor.slope_mult = 1; -	priv->bios_sensor.slope_div = 1; -	priv->bios_sensor.offset_num = 0; -	priv->bios_sensor.offset_den = 1;  	priv->bios_sensor.offset_constant = 0;  	priv->bios_sensor.thrs_fan_boost.temp = 90; @@ -60,11 +56,6 @@ nouveau_therm_temp_safety_checks(struct nouveau_therm *therm)  	struct nouveau_therm_priv *priv = (void *)therm;  	struct nvbios_therm_sensor *s = &priv->bios_sensor; -	if (!priv->bios_sensor.slope_div) -		priv->bios_sensor.slope_div = 1; -	if (!priv->bios_sensor.offset_den) -		priv->bios_sensor.offset_den = 1; -  	/* enforce a minimum hysteresis on thresholds */  	s->thrs_fan_boost.hysteresis = max_t(u8, s->thrs_fan_boost.hysteresis, 2);  	s->thrs_down_clock.hysteresis = max_t(u8, s->thrs_down_clock.hysteresis, 2); @@ -106,16 +97,16 @@ void nouveau_therm_sensor_event(struct nouveau_therm *therm,  	const char *thresolds[] = {  		"fanboost", "downclock", "critical", "shutdown"  	}; -	uint8_t temperature = therm->temp_get(therm); +	int temperature = therm->temp_get(therm);  	if (thrs < 0 || thrs > 3)  		return;  	if (dir == NOUVEAU_THERM_THRS_FALLING) -		nv_info(therm, "temperature (%u C) went below the '%s' threshold\n", +		nv_info(therm, "temperature (%i C) went below the '%s' threshold\n",  			temperature, thresolds[thrs]);  	else -		nv_info(therm, "temperature (%u C) hit the '%s' threshold\n", +		nv_info(therm, "temperature (%i C) hit the '%s' threshold\n",  			temperature, thresolds[thrs]);  	active = (dir == NOUVEAU_THERM_THRS_RISING); @@ -123,7 +114,7 @@ void nouveau_therm_sensor_event(struct nouveau_therm *therm,  	case NOUVEAU_THERM_THRS_FANBOOST:  		if (active) {  			nouveau_therm_fan_set(therm, true, 100); -			nouveau_therm_mode(therm, NOUVEAU_THERM_CTRL_AUTO); +			nouveau_therm_fan_mode(therm, NOUVEAU_THERM_CTRL_AUTO);  		}  		break;  	case NOUVEAU_THERM_THRS_DOWNCLOCK: @@ -202,7 +193,7 @@ alarm_timer_callback(struct nouveau_alarm *alarm)  					     NOUVEAU_THERM_THRS_SHUTDOWN);  	/* schedule the next poll in one second */ -	if (list_empty(&alarm->head)) +	if (therm->temp_get(therm) >= 0 && list_empty(&alarm->head))  		ptimer->alarm(ptimer, 1000 * 1000 * 1000, alarm);  	spin_unlock_irqrestore(&priv->sensor.alarm_program_lock, flags); @@ -225,6 +216,17 @@ nouveau_therm_program_alarms_polling(struct nouveau_therm *therm)  	alarm_timer_callback(&priv->sensor.therm_poll_alarm);  } +void +nouveau_therm_sensor_preinit(struct nouveau_therm *therm) +{ +	const char *sensor_avail = "yes"; + +	if (therm->temp_get(therm) < 0) +		sensor_avail = "no"; + +	nv_info(therm, "internal sensor: %s\n", sensor_avail); +} +  int  nouveau_therm_sensor_ctor(struct nouveau_therm *therm)  { diff --git a/drivers/gpu/drm/nouveau/nouveau_abi16.c b/drivers/gpu/drm/nouveau/nouveau_abi16.c index 41241922263..3b6dc883e15 100644 --- a/drivers/gpu/drm/nouveau/nouveau_abi16.c +++ b/drivers/gpu/drm/nouveau/nouveau_abi16.c @@ -116,6 +116,11 @@ nouveau_abi16_chan_fini(struct nouveau_abi16 *abi16,  {  	struct nouveau_abi16_ntfy *ntfy, *temp; +	/* wait for all activity to stop before releasing notify object, which +	 * may be still in use */ +	if (chan->chan && chan->ntfy) +		nouveau_channel_idle(chan->chan); +  	/* cleanup notifier state */  	list_for_each_entry_safe(ntfy, temp, &chan->notifiers, head) {  		nouveau_abi16_ntfy_fini(chan, ntfy); diff --git a/drivers/gpu/drm/nouveau/nouveau_bo.c b/drivers/gpu/drm/nouveau/nouveau_bo.c index 11ca82148ed..7ff10711a4d 100644 --- a/drivers/gpu/drm/nouveau/nouveau_bo.c +++ b/drivers/gpu/drm/nouveau/nouveau_bo.c @@ -801,7 +801,7 @@ nv50_bo_move_m2mf(struct nouveau_channel *chan, struct ttm_buffer_object *bo,  		stride  = 16 * 4;  		height  = amount / stride; -		if (new_mem->mem_type == TTM_PL_VRAM && +		if (old_mem->mem_type == TTM_PL_VRAM &&  		    nouveau_bo_tile_layout(nvbo)) {  			ret = RING_SPACE(chan, 8);  			if (ret) @@ -823,7 +823,7 @@ nv50_bo_move_m2mf(struct nouveau_channel *chan, struct ttm_buffer_object *bo,  			BEGIN_NV04(chan, NvSubCopy, 0x0200, 1);  			OUT_RING  (chan, 1);  		} -		if (old_mem->mem_type == TTM_PL_VRAM && +		if (new_mem->mem_type == TTM_PL_VRAM &&  		    nouveau_bo_tile_layout(nvbo)) {  			ret = RING_SPACE(chan, 8);  			if (ret) diff --git a/drivers/gpu/drm/nouveau/nouveau_pm.c b/drivers/gpu/drm/nouveau/nouveau_pm.c index bb54098c6d9..936b442a6ab 100644 --- a/drivers/gpu/drm/nouveau/nouveau_pm.c +++ b/drivers/gpu/drm/nouveau/nouveau_pm.c @@ -402,8 +402,12 @@ nouveau_hwmon_show_temp(struct device *d, struct device_attribute *a, char *buf)  	struct drm_device *dev = dev_get_drvdata(d);  	struct nouveau_drm *drm = nouveau_drm(dev);  	struct nouveau_therm *therm = nouveau_therm(drm->device); +	int temp = therm->temp_get(therm); -	return snprintf(buf, PAGE_SIZE, "%d\n", therm->temp_get(therm) * 1000); +	if (temp < 0) +		return temp; + +	return snprintf(buf, PAGE_SIZE, "%d\n", temp * 1000);  }  static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, nouveau_hwmon_show_temp,  						  NULL, 0); @@ -871,7 +875,12 @@ static SENSOR_DEVICE_ATTR(pwm1_max, S_IRUGO | S_IWUSR,  			  nouveau_hwmon_get_pwm1_max,  			  nouveau_hwmon_set_pwm1_max, 0); -static struct attribute *hwmon_attributes[] = { +static struct attribute *hwmon_default_attributes[] = { +	&sensor_dev_attr_name.dev_attr.attr, +	&sensor_dev_attr_update_rate.dev_attr.attr, +	NULL +}; +static struct attribute *hwmon_temp_attributes[] = {  	&sensor_dev_attr_temp1_input.dev_attr.attr,  	&sensor_dev_attr_temp1_auto_point1_pwm.dev_attr.attr,  	&sensor_dev_attr_temp1_auto_point1_temp.dev_attr.attr, @@ -882,8 +891,6 @@ static struct attribute *hwmon_attributes[] = {  	&sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,  	&sensor_dev_attr_temp1_emergency.dev_attr.attr,  	&sensor_dev_attr_temp1_emergency_hyst.dev_attr.attr, -	&sensor_dev_attr_name.dev_attr.attr, -	&sensor_dev_attr_update_rate.dev_attr.attr,  	NULL  };  static struct attribute *hwmon_fan_rpm_attributes[] = { @@ -898,8 +905,11 @@ static struct attribute *hwmon_pwm_fan_attributes[] = {  	NULL  }; -static const struct attribute_group hwmon_attrgroup = { -	.attrs = hwmon_attributes, +static const struct attribute_group hwmon_default_attrgroup = { +	.attrs = hwmon_default_attributes, +}; +static const struct attribute_group hwmon_temp_attrgroup = { +	.attrs = hwmon_temp_attributes,  };  static const struct attribute_group hwmon_fan_rpm_attrgroup = {  	.attrs = hwmon_fan_rpm_attributes, @@ -931,13 +941,22 @@ nouveau_hwmon_init(struct drm_device *dev)  	}  	dev_set_drvdata(hwmon_dev, dev); -	/* default sysfs entries */ -	ret = sysfs_create_group(&hwmon_dev->kobj, &hwmon_attrgroup); +	/* set the default attributes */ +	ret = sysfs_create_group(&hwmon_dev->kobj, &hwmon_default_attrgroup);  	if (ret) {  		if (ret)  			goto error;  	} +	/* if the card has a working thermal sensor */ +	if (therm->temp_get(therm) >= 0) { +		ret = sysfs_create_group(&hwmon_dev->kobj, &hwmon_temp_attrgroup); +		if (ret) { +			if (ret) +				goto error; +		} +	} +  	/* if the card has a pwm fan */  	/*XXX: incorrect, need better detection for this, some boards have  	 *     the gpio entries for pwm fan control even when there's no @@ -979,11 +998,10 @@ nouveau_hwmon_fini(struct drm_device *dev)  	struct nouveau_pm *pm = nouveau_pm(dev);  	if (pm->hwmon) { -		sysfs_remove_group(&pm->hwmon->kobj, &hwmon_attrgroup); -		sysfs_remove_group(&pm->hwmon->kobj, -				   &hwmon_pwm_fan_attrgroup); -		sysfs_remove_group(&pm->hwmon->kobj, -				   &hwmon_fan_rpm_attrgroup); +		sysfs_remove_group(&pm->hwmon->kobj, &hwmon_default_attrgroup); +		sysfs_remove_group(&pm->hwmon->kobj, &hwmon_temp_attrgroup); +		sysfs_remove_group(&pm->hwmon->kobj, &hwmon_pwm_fan_attrgroup); +		sysfs_remove_group(&pm->hwmon->kobj, &hwmon_fan_rpm_attrgroup);  		hwmon_device_unregister(pm->hwmon);  	} diff --git a/drivers/gpu/drm/nouveau/nv50_display.c b/drivers/gpu/drm/nouveau/nv50_display.c index 87a5a56ed35..7f0e6c3f37d 100644 --- a/drivers/gpu/drm/nouveau/nv50_display.c +++ b/drivers/gpu/drm/nouveau/nv50_display.c @@ -524,6 +524,8 @@ nv50_display_flip_next(struct drm_crtc *crtc, struct drm_framebuffer *fb,  	swap_interval <<= 4;  	if (swap_interval == 0)  		swap_interval |= 0x100; +	if (chan == NULL) +		evo_sync(crtc->dev);  	push = evo_wait(sync, 128);  	if (unlikely(push == NULL)) @@ -586,8 +588,6 @@ nv50_display_flip_next(struct drm_crtc *crtc, struct drm_framebuffer *fb,  		sync->addr ^= 0x10;  		sync->data++;  		FIRE_RING (chan); -	} else { -		evo_sync(crtc->dev);  	}  	/* queue the flip */ @@ -2276,6 +2276,7 @@ nv50_display_create(struct drm_device *dev)  			NV_WARN(drm, "failed to create encoder %d/%d/%d: %d\n",  				     dcbe->location, dcbe->type,  				     ffs(dcbe->or) - 1, ret); +			ret = 0;  		}  	} diff --git a/drivers/gpu/drm/radeon/ni.c b/drivers/gpu/drm/radeon/ni.c index d4c633e1286..27769e724b6 100644 --- a/drivers/gpu/drm/radeon/ni.c +++ b/drivers/gpu/drm/radeon/ni.c @@ -468,13 +468,19 @@ static void cayman_gpu_init(struct radeon_device *rdev)  		    (rdev->pdev->device == 0x9907) ||  		    (rdev->pdev->device == 0x9908) ||  		    (rdev->pdev->device == 0x9909) || +		    (rdev->pdev->device == 0x990B) || +		    (rdev->pdev->device == 0x990C) || +		    (rdev->pdev->device == 0x990F) ||  		    (rdev->pdev->device == 0x9910) || -		    (rdev->pdev->device == 0x9917)) { +		    (rdev->pdev->device == 0x9917) || +		    (rdev->pdev->device == 0x9999)) {  			rdev->config.cayman.max_simds_per_se = 6;  			rdev->config.cayman.max_backends_per_se = 2;  		} else if ((rdev->pdev->device == 0x9903) ||  			   (rdev->pdev->device == 0x9904) ||  			   (rdev->pdev->device == 0x990A) || +			   (rdev->pdev->device == 0x990D) || +			   (rdev->pdev->device == 0x990E) ||  			   (rdev->pdev->device == 0x9913) ||  			   (rdev->pdev->device == 0x9918)) {  			rdev->config.cayman.max_simds_per_se = 4; @@ -483,6 +489,9 @@ static void cayman_gpu_init(struct radeon_device *rdev)  			   (rdev->pdev->device == 0x9990) ||  			   (rdev->pdev->device == 0x9991) ||  			   (rdev->pdev->device == 0x9994) || +			   (rdev->pdev->device == 0x9995) || +			   (rdev->pdev->device == 0x9996) || +			   (rdev->pdev->device == 0x999A) ||  			   (rdev->pdev->device == 0x99A0)) {  			rdev->config.cayman.max_simds_per_se = 3;  			rdev->config.cayman.max_backends_per_se = 1; @@ -616,11 +625,22 @@ static void cayman_gpu_init(struct radeon_device *rdev)  	WREG32(DMA_TILING_CONFIG + DMA0_REGISTER_OFFSET, gb_addr_config);  	WREG32(DMA_TILING_CONFIG + DMA1_REGISTER_OFFSET, gb_addr_config); -	tmp = gb_addr_config & NUM_PIPES_MASK; -	tmp = r6xx_remap_render_backend(rdev, tmp, -					rdev->config.cayman.max_backends_per_se * -					rdev->config.cayman.max_shader_engines, -					CAYMAN_MAX_BACKENDS, disabled_rb_mask); +	if ((rdev->config.cayman.max_backends_per_se == 1) && +	    (rdev->flags & RADEON_IS_IGP)) { +		if ((disabled_rb_mask & 3) == 1) { +			/* RB0 disabled, RB1 enabled */ +			tmp = 0x11111111; +		} else { +			/* RB1 disabled, RB0 enabled */ +			tmp = 0x00000000; +		} +	} else { +		tmp = gb_addr_config & NUM_PIPES_MASK; +		tmp = r6xx_remap_render_backend(rdev, tmp, +						rdev->config.cayman.max_backends_per_se * +						rdev->config.cayman.max_shader_engines, +						CAYMAN_MAX_BACKENDS, disabled_rb_mask); +	}  	WREG32(GB_BACKEND_MAP, tmp);  	cgts_tcc_disable = 0xffff0000; @@ -1771,6 +1791,7 @@ int cayman_resume(struct radeon_device *rdev)  int cayman_suspend(struct radeon_device *rdev)  {  	r600_audio_fini(rdev); +	radeon_vm_manager_fini(rdev);  	cayman_cp_enable(rdev, false);  	cayman_dma_stop(rdev);  	evergreen_irq_suspend(rdev); diff --git a/drivers/gpu/drm/radeon/radeon_benchmark.c b/drivers/gpu/drm/radeon/radeon_benchmark.c index bedda9caadd..6e05a2e75a4 100644 --- a/drivers/gpu/drm/radeon/radeon_benchmark.c +++ b/drivers/gpu/drm/radeon/radeon_benchmark.c @@ -122,10 +122,7 @@ static void radeon_benchmark_move(struct radeon_device *rdev, unsigned size,  		goto out_cleanup;  	} -	/* r100 doesn't have dma engine so skip the test */ -	/* also, VRAM-to-VRAM test doesn't make much sense for DMA */ -	/* skip it as well if domains are the same */ -	if ((rdev->asic->copy.dma) && (sdomain != ddomain)) { +	if (rdev->asic->copy.dma) {  		time = radeon_benchmark_do_move(rdev, size, saddr, daddr,  						RADEON_BENCHMARK_COPY_DMA, n);  		if (time < 0) @@ -135,13 +132,15 @@ static void radeon_benchmark_move(struct radeon_device *rdev, unsigned size,  						     sdomain, ddomain, "dma");  	} -	time = radeon_benchmark_do_move(rdev, size, saddr, daddr, -					RADEON_BENCHMARK_COPY_BLIT, n); -	if (time < 0) -		goto out_cleanup; -	if (time > 0) -		radeon_benchmark_log_results(n, size, time, -					     sdomain, ddomain, "blit"); +	if (rdev->asic->copy.blit) { +		time = radeon_benchmark_do_move(rdev, size, saddr, daddr, +						RADEON_BENCHMARK_COPY_BLIT, n); +		if (time < 0) +			goto out_cleanup; +		if (time > 0) +			radeon_benchmark_log_results(n, size, time, +						     sdomain, ddomain, "blit"); +	}  out_cleanup:  	if (sobj) { diff --git a/drivers/gpu/drm/radeon/si.c b/drivers/gpu/drm/radeon/si.c index 9128120da04..bafbe321695 100644 --- a/drivers/gpu/drm/radeon/si.c +++ b/drivers/gpu/drm/radeon/si.c @@ -4469,6 +4469,7 @@ int si_resume(struct radeon_device *rdev)  int si_suspend(struct radeon_device *rdev)  { +	radeon_vm_manager_fini(rdev);  	si_cp_enable(rdev, false);  	cayman_dma_stop(rdev);  	si_irq_suspend(rdev); diff --git a/drivers/hwmon/lineage-pem.c b/drivers/hwmon/lineage-pem.c index 41df29f59b0..ebbb9f4f27a 100644 --- a/drivers/hwmon/lineage-pem.c +++ b/drivers/hwmon/lineage-pem.c @@ -422,6 +422,7 @@ static struct attribute *pem_input_attributes[] = {  	&sensor_dev_attr_in2_input.dev_attr.attr,  	&sensor_dev_attr_curr1_input.dev_attr.attr,  	&sensor_dev_attr_power1_input.dev_attr.attr, +	NULL  };  static const struct attribute_group pem_input_group = { @@ -432,6 +433,7 @@ static struct attribute *pem_fan_attributes[] = {  	&sensor_dev_attr_fan1_input.dev_attr.attr,  	&sensor_dev_attr_fan2_input.dev_attr.attr,  	&sensor_dev_attr_fan3_input.dev_attr.attr, +	NULL  };  static const struct attribute_group pem_fan_group = { diff --git a/drivers/hwmon/lm75.h b/drivers/hwmon/lm75.h index 668ff472132..5cde94e56f1 100644 --- a/drivers/hwmon/lm75.h +++ b/drivers/hwmon/lm75.h @@ -25,7 +25,7 @@      which contains this code, we don't worry about the wasted space.  */ -#include <linux/hwmon.h> +#include <linux/kernel.h>  /* straight from the datasheet */  #define LM75_TEMP_MIN (-55000) diff --git a/drivers/hwmon/pmbus/ltc2978.c b/drivers/hwmon/pmbus/ltc2978.c index a58de38e23d..6d6130752f9 100644 --- a/drivers/hwmon/pmbus/ltc2978.c +++ b/drivers/hwmon/pmbus/ltc2978.c @@ -59,7 +59,7 @@ enum chips { ltc2978, ltc3880 };  struct ltc2978_data {  	enum chips id;  	int vin_min, vin_max; -	int temp_min, temp_max; +	int temp_min, temp_max[2];  	int vout_min[8], vout_max[8];  	int iout_max[2];  	int temp2_max; @@ -113,9 +113,10 @@ static int ltc2978_read_word_data_common(struct i2c_client *client, int page,  		ret = pmbus_read_word_data(client, page,  					   LTC2978_MFR_TEMPERATURE_PEAK);  		if (ret >= 0) { -			if (lin11_to_val(ret) > lin11_to_val(data->temp_max)) -				data->temp_max = ret; -			ret = data->temp_max; +			if (lin11_to_val(ret) +			    > lin11_to_val(data->temp_max[page])) +				data->temp_max[page] = ret; +			ret = data->temp_max[page];  		}  		break;  	case PMBUS_VIRT_RESET_VOUT_HISTORY: @@ -266,7 +267,7 @@ static int ltc2978_write_word_data(struct i2c_client *client, int page,  		break;  	case PMBUS_VIRT_RESET_TEMP_HISTORY:  		data->temp_min = 0x7bff; -		data->temp_max = 0x7c00; +		data->temp_max[page] = 0x7c00;  		ret = ltc2978_clear_peaks(client, page, data->id);  		break;  	default: @@ -323,7 +324,8 @@ static int ltc2978_probe(struct i2c_client *client,  	data->vin_min = 0x7bff;  	data->vin_max = 0x7c00;  	data->temp_min = 0x7bff; -	data->temp_max = 0x7c00; +	for (i = 0; i < ARRAY_SIZE(data->temp_max); i++) +		data->temp_max[i] = 0x7c00;  	data->temp2_max = 0x7c00;  	switch (data->id) { diff --git a/drivers/hwmon/pmbus/pmbus_core.c b/drivers/hwmon/pmbus/pmbus_core.c index 80eef50c50f..9add60920ac 100644 --- a/drivers/hwmon/pmbus/pmbus_core.c +++ b/drivers/hwmon/pmbus/pmbus_core.c @@ -766,12 +766,14 @@ static ssize_t pmbus_show_label(struct device *dev,  static int pmbus_add_attribute(struct pmbus_data *data, struct attribute *attr)  {  	if (data->num_attributes >= data->max_attributes - 1) { -		data->max_attributes += PMBUS_ATTR_ALLOC_SIZE; -		data->group.attrs = krealloc(data->group.attrs, -					     sizeof(struct attribute *) * -					     data->max_attributes, GFP_KERNEL); -		if (data->group.attrs == NULL) +		int new_max_attrs = data->max_attributes + PMBUS_ATTR_ALLOC_SIZE; +		void *new_attrs = krealloc(data->group.attrs, +					   new_max_attrs * sizeof(void *), +					   GFP_KERNEL); +		if (!new_attrs)  			return -ENOMEM; +		data->group.attrs = new_attrs; +		data->max_attributes = new_max_attrs;  	}  	data->group.attrs[data->num_attributes++] = attr; diff --git a/drivers/i2c/Kconfig b/drivers/i2c/Kconfig index 46cde098c11..e380c6eef3a 100644 --- a/drivers/i2c/Kconfig +++ b/drivers/i2c/Kconfig @@ -4,7 +4,6 @@  menuconfig I2C  	tristate "I2C support" -	depends on !S390  	select RT_MUTEXES  	---help---  	  I2C (pronounce: I-squared-C) is a slow serial bus protocol used in @@ -76,6 +75,7 @@ config I2C_HELPER_AUTO  config I2C_SMBUS  	tristate "SMBus-specific protocols" if !I2C_HELPER_AUTO +	depends on GENERIC_HARDIRQS  	help  	  Say Y here if you want support for SMBus extensions to the I2C  	  specification. At the moment, the only supported extension is diff --git a/drivers/i2c/busses/Kconfig b/drivers/i2c/busses/Kconfig index a3725de9238..adfee98486b 100644 --- a/drivers/i2c/busses/Kconfig +++ b/drivers/i2c/busses/Kconfig @@ -114,7 +114,7 @@ config I2C_I801  config I2C_ISCH  	tristate "Intel SCH SMBus 1.0" -	depends on PCI +	depends on PCI && GENERIC_HARDIRQS  	select LPC_SCH  	help  	  Say Y here if you want to use SMBus controller on the Intel SCH @@ -543,6 +543,7 @@ config I2C_NUC900  config I2C_OCORES  	tristate "OpenCores I2C Controller" +	depends on GENERIC_HARDIRQS  	help  	  If you say yes to this option, support will be included for the  	  OpenCores I2C controller. For details see @@ -777,7 +778,7 @@ config I2C_DIOLAN_U2C  config I2C_PARPORT  	tristate "Parallel port adapter" -	depends on PARPORT +	depends on PARPORT && GENERIC_HARDIRQS  	select I2C_ALGOBIT  	select I2C_SMBUS  	help @@ -802,6 +803,7 @@ config I2C_PARPORT  config I2C_PARPORT_LIGHT  	tristate "Parallel port adapter (light)" +	depends on GENERIC_HARDIRQS  	select I2C_ALGOBIT  	select I2C_SMBUS  	help diff --git a/drivers/i2c/busses/i2c-ismt.c b/drivers/i2c/busses/i2c-ismt.c index e9205ee8cf9..130f02cc9d9 100644 --- a/drivers/i2c/busses/i2c-ismt.c +++ b/drivers/i2c/busses/i2c-ismt.c @@ -80,6 +80,7 @@  /* PCI DIDs for the Intel SMBus Message Transport (SMT) Devices */  #define PCI_DEVICE_ID_INTEL_S1200_SMT0	0x0c59  #define PCI_DEVICE_ID_INTEL_S1200_SMT1	0x0c5a +#define PCI_DEVICE_ID_INTEL_AVOTON_SMT	0x1f15  #define ISMT_DESC_ENTRIES	32	/* number of descriptor entries */  #define ISMT_MAX_RETRIES	3	/* number of SMBus retries to attempt */ @@ -185,6 +186,7 @@ struct ismt_priv {  static const DEFINE_PCI_DEVICE_TABLE(ismt_ids) = {  	{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_S1200_SMT0) },  	{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_S1200_SMT1) }, +	{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_AVOTON_SMT) },  	{ 0, }  }; diff --git a/drivers/i2c/busses/i2c-tegra.c b/drivers/i2c/busses/i2c-tegra.c index 36704e3ab3f..b714776b6dd 100644 --- a/drivers/i2c/busses/i2c-tegra.c +++ b/drivers/i2c/busses/i2c-tegra.c @@ -411,7 +411,11 @@ static int tegra_i2c_init(struct tegra_i2c_dev *i2c_dev)  	int clk_multiplier = I2C_CLK_MULTIPLIER_STD_FAST_MODE;  	u32 clk_divisor; -	tegra_i2c_clock_enable(i2c_dev); +	err = tegra_i2c_clock_enable(i2c_dev); +	if (err < 0) { +		dev_err(i2c_dev->dev, "Clock enable failed %d\n", err); +		return err; +	}  	tegra_periph_reset_assert(i2c_dev->div_clk);  	udelay(2); @@ -628,7 +632,12 @@ static int tegra_i2c_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[],  	if (i2c_dev->is_suspended)  		return -EBUSY; -	tegra_i2c_clock_enable(i2c_dev); +	ret = tegra_i2c_clock_enable(i2c_dev); +	if (ret < 0) { +		dev_err(i2c_dev->dev, "Clock enable failed %d\n", ret); +		return ret; +	} +  	for (i = 0; i < num; i++) {  		enum msg_end_type end_type = MSG_END_STOP;  		if (i < (num - 1)) { diff --git a/drivers/i2c/muxes/i2c-mux-pca9541.c b/drivers/i2c/muxes/i2c-mux-pca9541.c index f3b8f9a6a89..966a18a5d12 100644 --- a/drivers/i2c/muxes/i2c-mux-pca9541.c +++ b/drivers/i2c/muxes/i2c-mux-pca9541.c @@ -3,7 +3,7 @@   *   * Copyright (c) 2010 Ericsson AB.   * - * Author: Guenter Roeck <guenter.roeck@ericsson.com> + * Author: Guenter Roeck <linux@roeck-us.net>   *   * Derived from:   *  pca954x.c diff --git a/drivers/iio/common/st_sensors/st_sensors_core.c b/drivers/iio/common/st_sensors/st_sensors_core.c index 0198324a8b0..bd33473f8e3 100644 --- a/drivers/iio/common/st_sensors/st_sensors_core.c +++ b/drivers/iio/common/st_sensors/st_sensors_core.c @@ -62,7 +62,7 @@ st_sensors_match_odr_error:  int st_sensors_set_odr(struct iio_dev *indio_dev, unsigned int odr)  {  	int err; -	struct st_sensor_odr_avl odr_out; +	struct st_sensor_odr_avl odr_out = {0, 0};  	struct st_sensor_data *sdata = iio_priv(indio_dev);  	err = st_sensors_match_odr(sdata->sensor, odr, &odr_out); @@ -114,7 +114,7 @@ st_sensors_match_odr_error:  static int st_sensors_set_fullscale(struct iio_dev *indio_dev, unsigned int fs)  { -	int err, i; +	int err, i = 0;  	struct st_sensor_data *sdata = iio_priv(indio_dev);  	err = st_sensors_match_fs(sdata->sensor, fs, &i); @@ -139,14 +139,13 @@ st_accel_set_fullscale_error:  int st_sensors_set_enable(struct iio_dev *indio_dev, bool enable)  { -	bool found;  	u8 tmp_value;  	int err = -EINVAL; -	struct st_sensor_odr_avl odr_out; +	bool found = false; +	struct st_sensor_odr_avl odr_out = {0, 0};  	struct st_sensor_data *sdata = iio_priv(indio_dev);  	if (enable) { -		found = false;  		tmp_value = sdata->sensor->pw.value_on;  		if ((sdata->sensor->odr.addr == sdata->sensor->pw.addr) &&  			(sdata->sensor->odr.mask == sdata->sensor->pw.mask)) { diff --git a/drivers/iio/dac/ad5064.c b/drivers/iio/dac/ad5064.c index 2fe1d4edcb2..74f2d52795f 100644 --- a/drivers/iio/dac/ad5064.c +++ b/drivers/iio/dac/ad5064.c @@ -27,7 +27,6 @@  #define AD5064_ADDR(x)				((x) << 20)  #define AD5064_CMD(x)				((x) << 24) -#define AD5064_ADDR_DAC(chan)			(chan)  #define AD5064_ADDR_ALL_DAC			0xF  #define AD5064_CMD_WRITE_INPUT_N		0x0 @@ -131,15 +130,15 @@ static int ad5064_write(struct ad5064_state *st, unsigned int cmd,  }  static int ad5064_sync_powerdown_mode(struct ad5064_state *st, -	unsigned int channel) +	const struct iio_chan_spec *chan)  {  	unsigned int val;  	int ret; -	val = (0x1 << channel); +	val = (0x1 << chan->address); -	if (st->pwr_down[channel]) -		val |= st->pwr_down_mode[channel] << 8; +	if (st->pwr_down[chan->channel]) +		val |= st->pwr_down_mode[chan->channel] << 8;  	ret = ad5064_write(st, AD5064_CMD_POWERDOWN_DAC, 0, val, 0); @@ -169,7 +168,7 @@ static int ad5064_set_powerdown_mode(struct iio_dev *indio_dev,  	mutex_lock(&indio_dev->mlock);  	st->pwr_down_mode[chan->channel] = mode + 1; -	ret = ad5064_sync_powerdown_mode(st, chan->channel); +	ret = ad5064_sync_powerdown_mode(st, chan);  	mutex_unlock(&indio_dev->mlock);  	return ret; @@ -205,7 +204,7 @@ static ssize_t ad5064_write_dac_powerdown(struct iio_dev *indio_dev,  	mutex_lock(&indio_dev->mlock);  	st->pwr_down[chan->channel] = pwr_down; -	ret = ad5064_sync_powerdown_mode(st, chan->channel); +	ret = ad5064_sync_powerdown_mode(st, chan);  	mutex_unlock(&indio_dev->mlock);  	return ret ? ret : len;  } @@ -258,7 +257,7 @@ static int ad5064_write_raw(struct iio_dev *indio_dev,  	switch (mask) {  	case IIO_CHAN_INFO_RAW: -		if (val > (1 << chan->scan_type.realbits) || val < 0) +		if (val >= (1 << chan->scan_type.realbits) || val < 0)  			return -EINVAL;  		mutex_lock(&indio_dev->mlock); @@ -292,34 +291,44 @@ static const struct iio_chan_spec_ext_info ad5064_ext_info[] = {  	{ },  }; -#define AD5064_CHANNEL(chan, bits) {				\ +#define AD5064_CHANNEL(chan, addr, bits) {			\  	.type = IIO_VOLTAGE,					\  	.indexed = 1,						\  	.output = 1,						\  	.channel = (chan),					\  	.info_mask = IIO_CHAN_INFO_RAW_SEPARATE_BIT |		\  	IIO_CHAN_INFO_SCALE_SEPARATE_BIT,			\ -	.address = AD5064_ADDR_DAC(chan),			\ +	.address = addr,					\  	.scan_type = IIO_ST('u', (bits), 16, 20 - (bits)),	\  	.ext_info = ad5064_ext_info,				\  }  #define DECLARE_AD5064_CHANNELS(name, bits) \  const struct iio_chan_spec name[] = { \ -	AD5064_CHANNEL(0, bits), \ -	AD5064_CHANNEL(1, bits), \ -	AD5064_CHANNEL(2, bits), \ -	AD5064_CHANNEL(3, bits), \ -	AD5064_CHANNEL(4, bits), \ -	AD5064_CHANNEL(5, bits), \ -	AD5064_CHANNEL(6, bits), \ -	AD5064_CHANNEL(7, bits), \ +	AD5064_CHANNEL(0, 0, bits), \ +	AD5064_CHANNEL(1, 1, bits), \ +	AD5064_CHANNEL(2, 2, bits), \ +	AD5064_CHANNEL(3, 3, bits), \ +	AD5064_CHANNEL(4, 4, bits), \ +	AD5064_CHANNEL(5, 5, bits), \ +	AD5064_CHANNEL(6, 6, bits), \ +	AD5064_CHANNEL(7, 7, bits), \ +} + +#define DECLARE_AD5065_CHANNELS(name, bits) \ +const struct iio_chan_spec name[] = { \ +	AD5064_CHANNEL(0, 0, bits), \ +	AD5064_CHANNEL(1, 3, bits), \  }  static DECLARE_AD5064_CHANNELS(ad5024_channels, 12);  static DECLARE_AD5064_CHANNELS(ad5044_channels, 14);  static DECLARE_AD5064_CHANNELS(ad5064_channels, 16); +static DECLARE_AD5065_CHANNELS(ad5025_channels, 12); +static DECLARE_AD5065_CHANNELS(ad5045_channels, 14); +static DECLARE_AD5065_CHANNELS(ad5065_channels, 16); +  static const struct ad5064_chip_info ad5064_chip_info_tbl[] = {  	[ID_AD5024] = {  		.shared_vref = false, @@ -328,7 +337,7 @@ static const struct ad5064_chip_info ad5064_chip_info_tbl[] = {  	},  	[ID_AD5025] = {  		.shared_vref = false, -		.channels = ad5024_channels, +		.channels = ad5025_channels,  		.num_channels = 2,  	},  	[ID_AD5044] = { @@ -338,7 +347,7 @@ static const struct ad5064_chip_info ad5064_chip_info_tbl[] = {  	},  	[ID_AD5045] = {  		.shared_vref = false, -		.channels = ad5044_channels, +		.channels = ad5045_channels,  		.num_channels = 2,  	},  	[ID_AD5064] = { @@ -353,7 +362,7 @@ static const struct ad5064_chip_info ad5064_chip_info_tbl[] = {  	},  	[ID_AD5065] = {  		.shared_vref = false, -		.channels = ad5064_channels, +		.channels = ad5065_channels,  		.num_channels = 2,  	},  	[ID_AD5628_1] = { @@ -429,6 +438,7 @@ static int ad5064_probe(struct device *dev, enum ad5064_type type,  {  	struct iio_dev *indio_dev;  	struct ad5064_state *st; +	unsigned int midscale;  	unsigned int i;  	int ret; @@ -465,11 +475,6 @@ static int ad5064_probe(struct device *dev, enum ad5064_type type,  			goto error_free_reg;  	} -	for (i = 0; i < st->chip_info->num_channels; ++i) { -		st->pwr_down_mode[i] = AD5064_LDAC_PWRDN_1K; -		st->dac_cache[i] = 0x8000; -	} -  	indio_dev->dev.parent = dev;  	indio_dev->name = name;  	indio_dev->info = &ad5064_info; @@ -477,6 +482,13 @@ static int ad5064_probe(struct device *dev, enum ad5064_type type,  	indio_dev->channels = st->chip_info->channels;  	indio_dev->num_channels = st->chip_info->num_channels; +	midscale = (1 << indio_dev->channels[0].scan_type.realbits) /  2; + +	for (i = 0; i < st->chip_info->num_channels; ++i) { +		st->pwr_down_mode[i] = AD5064_LDAC_PWRDN_1K; +		st->dac_cache[i] = midscale; +	} +  	ret = iio_device_register(indio_dev);  	if (ret)  		goto error_disable_reg; diff --git a/drivers/iio/imu/inv_mpu6050/Kconfig b/drivers/iio/imu/inv_mpu6050/Kconfig index b5cfa3a354c..361b2328453 100644 --- a/drivers/iio/imu/inv_mpu6050/Kconfig +++ b/drivers/iio/imu/inv_mpu6050/Kconfig @@ -5,6 +5,7 @@  config INV_MPU6050_IIO  	tristate "Invensense MPU6050 devices"  	depends on I2C && SYSFS +	select IIO_BUFFER  	select IIO_TRIGGERED_BUFFER  	help  	  This driver supports the Invensense MPU6050 devices. diff --git a/drivers/infiniband/hw/cxgb4/cm.c b/drivers/infiniband/hw/cxgb4/cm.c index 565bfb161c1..a3fde52840c 100644 --- a/drivers/infiniband/hw/cxgb4/cm.c +++ b/drivers/infiniband/hw/cxgb4/cm.c @@ -1575,6 +1575,12 @@ static int c4iw_reconnect(struct c4iw_ep *ep)  	neigh = dst_neigh_lookup(ep->dst,  			&ep->com.cm_id->remote_addr.sin_addr.s_addr); +	if (!neigh) { +		pr_err("%s - cannot alloc neigh.\n", __func__); +		err = -ENOMEM; +		goto fail4; +	} +  	/* get a l2t entry */  	if (neigh->dev->flags & IFF_LOOPBACK) {  		PDBG("%s LOOPBACK\n", __func__); @@ -3053,6 +3059,12 @@ static int rx_pkt(struct c4iw_dev *dev, struct sk_buff *skb)  	dst = &rt->dst;  	neigh = dst_neigh_lookup_skb(dst, skb); +	if (!neigh) { +		pr_err("%s - failed to allocate neigh!\n", +		       __func__); +		goto free_dst; +	} +  	if (neigh->dev->flags & IFF_LOOPBACK) {  		pdev = ip_dev_find(&init_net, iph->daddr);  		e = cxgb4_l2t_get(dev->rdev.lldi.l2t, neigh, diff --git a/drivers/infiniband/hw/mlx4/cm.c b/drivers/infiniband/hw/mlx4/cm.c index e0d79b2395e..add98d01476 100644 --- a/drivers/infiniband/hw/mlx4/cm.c +++ b/drivers/infiniband/hw/mlx4/cm.c @@ -362,7 +362,6 @@ void mlx4_ib_cm_paravirt_init(struct mlx4_ib_dev *dev)  	INIT_LIST_HEAD(&dev->sriov.cm_list);  	dev->sriov.sl_id_map = RB_ROOT;  	idr_init(&dev->sriov.pv_id_table); -	idr_pre_get(&dev->sriov.pv_id_table, GFP_KERNEL);  }  /* slave = -1 ==> all slaves */ diff --git a/drivers/input/joystick/analog.c b/drivers/input/joystick/analog.c index 7cd74e29cbc..9135606c864 100644 --- a/drivers/input/joystick/analog.c +++ b/drivers/input/joystick/analog.c @@ -158,14 +158,10 @@ static unsigned int get_time_pit(void)  #define GET_TIME(x)	rdtscl(x)  #define DELTA(x,y)	((y)-(x))  #define TIME_NAME	"TSC" -#elif defined(__alpha__) +#elif defined(__alpha__) || defined(CONFIG_MN10300) || defined(CONFIG_ARM) || defined(CONFIG_TILE)  #define GET_TIME(x)	do { x = get_cycles(); } while (0)  #define DELTA(x,y)	((y)-(x)) -#define TIME_NAME	"PCC" -#elif defined(CONFIG_MN10300) || defined(CONFIG_TILE) -#define GET_TIME(x)	do { x = get_cycles(); } while (0) -#define DELTA(x, y)	((x) - (y)) -#define TIME_NAME	"TSC" +#define TIME_NAME	"get_cycles"  #else  #define FAKE_TIME  static unsigned long analog_faketime = 0; diff --git a/drivers/input/keyboard/tc3589x-keypad.c b/drivers/input/keyboard/tc3589x-keypad.c index 2fb0d76a04c..208de7cbb7f 100644 --- a/drivers/input/keyboard/tc3589x-keypad.c +++ b/drivers/input/keyboard/tc3589x-keypad.c @@ -70,8 +70,6 @@  #define TC3589x_EVT_INT_CLR	0x2  #define TC3589x_KBD_INT_CLR	0x1 -#define TC3589x_KBD_KEYMAP_SIZE     64 -  /**   * struct tc_keypad - data structure used by keypad driver   * @tc3589x:    pointer to tc35893 @@ -88,7 +86,7 @@ struct tc_keypad {  	const struct tc3589x_keypad_platform_data *board;  	unsigned int krow;  	unsigned int kcol; -	unsigned short keymap[TC3589x_KBD_KEYMAP_SIZE]; +	unsigned short *keymap;  	bool keypad_stopped;  }; @@ -338,12 +336,14 @@ static int tc3589x_keypad_probe(struct platform_device *pdev)  	error = matrix_keypad_build_keymap(plat->keymap_data, NULL,  					   TC3589x_MAX_KPROW, TC3589x_MAX_KPCOL, -					   keypad->keymap, input); +					   NULL, input);  	if (error) {  		dev_err(&pdev->dev, "Failed to build keymap\n");  		goto err_free_mem;  	} +	keypad->keymap = input->keycode; +  	input_set_capability(input, EV_MSC, MSC_SCAN);  	if (!plat->no_autorepeat)  		__set_bit(EV_REP, input->evbit); diff --git a/drivers/input/mouse/alps.c b/drivers/input/mouse/alps.c index 7b99fc7c943..0238e0e1433 100644 --- a/drivers/input/mouse/alps.c +++ b/drivers/input/mouse/alps.c @@ -490,6 +490,29 @@ static void alps_decode_rushmore(struct alps_fields *f, unsigned char *p)  	f->y_map |= (p[5] & 0x20) << 6;  } +static void alps_decode_dolphin(struct alps_fields *f, unsigned char *p) +{ +	f->first_mp = !!(p[0] & 0x02); +	f->is_mp = !!(p[0] & 0x20); + +	f->fingers = ((p[0] & 0x6) >> 1 | +		     (p[0] & 0x10) >> 2); +	f->x_map = ((p[2] & 0x60) >> 5) | +		   ((p[4] & 0x7f) << 2) | +		   ((p[5] & 0x7f) << 9) | +		   ((p[3] & 0x07) << 16) | +		   ((p[3] & 0x70) << 15) | +		   ((p[0] & 0x01) << 22); +	f->y_map = (p[1] & 0x7f) | +		   ((p[2] & 0x1f) << 7); + +	f->x = ((p[1] & 0x7f) | ((p[4] & 0x0f) << 7)); +	f->y = ((p[2] & 0x7f) | ((p[4] & 0xf0) << 3)); +	f->z = (p[0] & 4) ? 0 : p[5] & 0x7f; + +	alps_decode_buttons_v3(f, p); +} +  static void alps_process_touchpad_packet_v3(struct psmouse *psmouse)  {  	struct alps_data *priv = psmouse->private; @@ -874,7 +897,8 @@ static psmouse_ret_t alps_process_byte(struct psmouse *psmouse)  	}  	/* Bytes 2 - pktsize should have 0 in the highest bit */ -	if (psmouse->pktcnt >= 2 && psmouse->pktcnt <= psmouse->pktsize && +	if (priv->proto_version != ALPS_PROTO_V5 && +	    psmouse->pktcnt >= 2 && psmouse->pktcnt <= psmouse->pktsize &&  	    (psmouse->packet[psmouse->pktcnt - 1] & 0x80)) {  		psmouse_dbg(psmouse, "refusing packet[%i] = %x\n",  			    psmouse->pktcnt - 1, @@ -994,8 +1018,7 @@ static int alps_rpt_cmd(struct psmouse *psmouse, int init_command,  	return 0;  } -static int alps_enter_command_mode(struct psmouse *psmouse, -				   unsigned char *resp) +static int alps_enter_command_mode(struct psmouse *psmouse)  {  	unsigned char param[4]; @@ -1004,14 +1027,12 @@ static int alps_enter_command_mode(struct psmouse *psmouse,  		return -1;  	} -	if (param[0] != 0x88 || (param[1] != 0x07 && param[1] != 0x08)) { +	if ((param[0] != 0x88 || (param[1] != 0x07 && param[1] != 0x08)) && +	    param[0] != 0x73) {  		psmouse_dbg(psmouse,  			    "unknown response while entering command mode\n");  		return -1;  	} - -	if (resp) -		*resp = param[2];  	return 0;  } @@ -1176,7 +1197,7 @@ static int alps_passthrough_mode_v3(struct psmouse *psmouse,  {  	int reg_val, ret = -1; -	if (alps_enter_command_mode(psmouse, NULL)) +	if (alps_enter_command_mode(psmouse))  		return -1;  	reg_val = alps_command_mode_read_reg(psmouse, reg_base + 0x0008); @@ -1216,7 +1237,7 @@ static int alps_probe_trackstick_v3(struct psmouse *psmouse, int reg_base)  {  	int ret = -EIO, reg_val; -	if (alps_enter_command_mode(psmouse, NULL)) +	if (alps_enter_command_mode(psmouse))  		goto error;  	reg_val = alps_command_mode_read_reg(psmouse, reg_base + 0x08); @@ -1279,7 +1300,7 @@ static int alps_setup_trackstick_v3(struct psmouse *psmouse, int reg_base)  		 * supported by this driver. If bit 1 isn't set the packet  		 * format is different.  		 */ -		if (alps_enter_command_mode(psmouse, NULL) || +		if (alps_enter_command_mode(psmouse) ||  		    alps_command_mode_write_reg(psmouse,  						reg_base + 0x08, 0x82) ||  		    alps_exit_command_mode(psmouse)) @@ -1306,7 +1327,7 @@ static int alps_hw_init_v3(struct psmouse *psmouse)  	    alps_setup_trackstick_v3(psmouse, ALPS_REG_BASE_PINNACLE) == -EIO)  		goto error; -	if (alps_enter_command_mode(psmouse, NULL) || +	if (alps_enter_command_mode(psmouse) ||  	    alps_absolute_mode_v3(psmouse)) {  		psmouse_err(psmouse, "Failed to enter absolute mode\n");  		goto error; @@ -1381,7 +1402,7 @@ static int alps_hw_init_rushmore_v3(struct psmouse *psmouse)  			priv->flags &= ~ALPS_DUALPOINT;  	} -	if (alps_enter_command_mode(psmouse, NULL) || +	if (alps_enter_command_mode(psmouse) ||  	    alps_command_mode_read_reg(psmouse, 0xc2d9) == -1 ||  	    alps_command_mode_write_reg(psmouse, 0xc2cb, 0x00))  		goto error; @@ -1431,7 +1452,7 @@ static int alps_hw_init_v4(struct psmouse *psmouse)  	struct ps2dev *ps2dev = &psmouse->ps2dev;  	unsigned char param[4]; -	if (alps_enter_command_mode(psmouse, NULL)) +	if (alps_enter_command_mode(psmouse))  		goto error;  	if (alps_absolute_mode_v4(psmouse)) { @@ -1499,6 +1520,23 @@ error:  	return -1;  } +static int alps_hw_init_dolphin_v1(struct psmouse *psmouse) +{ +	struct ps2dev *ps2dev = &psmouse->ps2dev; +	unsigned char param[2]; + +	/* This is dolphin "v1" as empirically defined by florin9doi */ +	param[0] = 0x64; +	param[1] = 0x28; + +	if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSTREAM) || +	    ps2_command(ps2dev, ¶m[0], PSMOUSE_CMD_SETRATE) || +	    ps2_command(ps2dev, ¶m[1], PSMOUSE_CMD_SETRATE)) +		return -1; + +	return 0; +} +  static void alps_set_defaults(struct alps_data *priv)  {  	priv->byte0 = 0x8f; @@ -1532,6 +1570,21 @@ static void alps_set_defaults(struct alps_data *priv)  		priv->nibble_commands = alps_v4_nibble_commands;  		priv->addr_command = PSMOUSE_CMD_DISABLE;  		break; +	case ALPS_PROTO_V5: +		priv->hw_init = alps_hw_init_dolphin_v1; +		priv->process_packet = alps_process_packet_v3; +		priv->decode_fields = alps_decode_dolphin; +		priv->set_abs_params = alps_set_abs_params_mt; +		priv->nibble_commands = alps_v3_nibble_commands; +		priv->addr_command = PSMOUSE_CMD_RESET_WRAP; +		priv->byte0 = 0xc8; +		priv->mask0 = 0xc8; +		priv->flags = 0; +		priv->x_max = 1360; +		priv->y_max = 660; +		priv->x_bits = 23; +		priv->y_bits = 12; +		break;  	}  } @@ -1592,6 +1645,12 @@ static int alps_identify(struct psmouse *psmouse, struct alps_data *priv)  	if (alps_match_table(psmouse, priv, e7, ec) == 0) {  		return 0; +	} else if (e7[0] == 0x73 && e7[1] == 0x03 && e7[2] == 0x50 && +		   ec[0] == 0x73 && ec[1] == 0x01) { +		priv->proto_version = ALPS_PROTO_V5; +		alps_set_defaults(priv); + +		return 0;  	} else if (ec[0] == 0x88 && ec[1] == 0x08) {  		priv->proto_version = ALPS_PROTO_V3;  		alps_set_defaults(priv); diff --git a/drivers/input/mouse/alps.h b/drivers/input/mouse/alps.h index 970480551b6..eee59853b9c 100644 --- a/drivers/input/mouse/alps.h +++ b/drivers/input/mouse/alps.h @@ -16,6 +16,7 @@  #define ALPS_PROTO_V2	2  #define ALPS_PROTO_V3	3  #define ALPS_PROTO_V4	4 +#define ALPS_PROTO_V5	5  /**   * struct alps_model_info - touchpad ID table diff --git a/drivers/input/mouse/cypress_ps2.c b/drivers/input/mouse/cypress_ps2.c index 1673dc6c809..f51765fff05 100644 --- a/drivers/input/mouse/cypress_ps2.c +++ b/drivers/input/mouse/cypress_ps2.c @@ -236,6 +236,13 @@ static int cypress_read_fw_version(struct psmouse *psmouse)  	cytp->fw_version = param[2] & FW_VERSION_MASX;  	cytp->tp_metrics_supported = (param[2] & TP_METRICS_MASK) ? 1 : 0; +	/* +	 * Trackpad fw_version 11 (in Dell XPS12) yields a bogus response to +	 * CYTP_CMD_READ_TP_METRICS so do not try to use it. LP: #1103594. +	 */ +	if (cytp->fw_version >= 11) +		cytp->tp_metrics_supported = 0; +  	psmouse_dbg(psmouse, "cytp->fw_version = %d\n", cytp->fw_version);  	psmouse_dbg(psmouse, "cytp->tp_metrics_supported = %d\n",  		 cytp->tp_metrics_supported); @@ -258,6 +265,9 @@ static int cypress_read_tp_metrics(struct psmouse *psmouse)  	cytp->tp_res_x = cytp->tp_max_abs_x / cytp->tp_width;  	cytp->tp_res_y = cytp->tp_max_abs_y / cytp->tp_high; +	if (!cytp->tp_metrics_supported) +		return 0; +  	memset(param, 0, sizeof(param));  	if (cypress_send_ext_cmd(psmouse, CYTP_CMD_READ_TP_METRICS, param) == 0) {  		/* Update trackpad parameters. */ @@ -315,18 +325,15 @@ static int cypress_read_tp_metrics(struct psmouse *psmouse)  static int cypress_query_hardware(struct psmouse *psmouse)  { -	struct cytp_data *cytp = psmouse->private;  	int ret;  	ret = cypress_read_fw_version(psmouse);  	if (ret)  		return ret; -	if (cytp->tp_metrics_supported) { -		ret = cypress_read_tp_metrics(psmouse); -		if (ret) -			return ret; -	} +	ret = cypress_read_tp_metrics(psmouse); +	if (ret) +		return ret;  	return 0;  } diff --git a/drivers/input/tablet/wacom_wac.c b/drivers/input/tablet/wacom_wac.c index 41b6fbf6011..1daa97913b7 100644 --- a/drivers/input/tablet/wacom_wac.c +++ b/drivers/input/tablet/wacom_wac.c @@ -2017,6 +2017,9 @@ static const struct wacom_features wacom_features_0x100 =  static const struct wacom_features wacom_features_0x101 =  	{ "Wacom ISDv4 101",      WACOM_PKGLEN_MTTPC,     26202, 16325,  255,  	  0, MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; +static const struct wacom_features wacom_features_0x10D = +	{ "Wacom ISDv4 10D",      WACOM_PKGLEN_MTTPC,     26202, 16325,  255, +	  0, MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES };  static const struct wacom_features wacom_features_0x4001 =  	{ "Wacom ISDv4 4001",      WACOM_PKGLEN_MTTPC,     26202, 16325,  255,  	  0, MTTPC, WACOM_INTUOS_RES, WACOM_INTUOS_RES }; @@ -2201,6 +2204,7 @@ const struct usb_device_id wacom_ids[] = {  	{ USB_DEVICE_WACOM(0xEF) },  	{ USB_DEVICE_WACOM(0x100) },  	{ USB_DEVICE_WACOM(0x101) }, +	{ USB_DEVICE_WACOM(0x10D) },  	{ USB_DEVICE_WACOM(0x4001) },  	{ USB_DEVICE_WACOM(0x47) },  	{ USB_DEVICE_WACOM(0xF4) }, diff --git a/drivers/input/touchscreen/ads7846.c b/drivers/input/touchscreen/ads7846.c index 4f702b3ec1a..434c3df250c 100644 --- a/drivers/input/touchscreen/ads7846.c +++ b/drivers/input/touchscreen/ads7846.c @@ -236,7 +236,12 @@ static void __ads7846_disable(struct ads7846 *ts)  /* Must be called with ts->lock held */  static void __ads7846_enable(struct ads7846 *ts)  { -	regulator_enable(ts->reg); +	int error; + +	error = regulator_enable(ts->reg); +	if (error != 0) +		dev_err(&ts->spi->dev, "Failed to enable supply: %d\n", error); +  	ads7846_restart(ts);  } diff --git a/drivers/input/touchscreen/mms114.c b/drivers/input/touchscreen/mms114.c index 4a29ddf6bf1..1443532fe6c 100644 --- a/drivers/input/touchscreen/mms114.c +++ b/drivers/input/touchscreen/mms114.c @@ -314,15 +314,27 @@ static int mms114_start(struct mms114_data *data)  	struct i2c_client *client = data->client;  	int error; -	if (data->core_reg) -		regulator_enable(data->core_reg); -	if (data->io_reg) -		regulator_enable(data->io_reg); +	error = regulator_enable(data->core_reg); +	if (error) { +		dev_err(&client->dev, "Failed to enable avdd: %d\n", error); +		return error; +	} + +	error = regulator_enable(data->io_reg); +	if (error) { +		dev_err(&client->dev, "Failed to enable vdd: %d\n", error); +		regulator_disable(data->core_reg); +		return error; +	} +  	mdelay(MMS114_POWERON_DELAY);  	error = mms114_setup_regs(data); -	if (error < 0) +	if (error < 0) { +		regulator_disable(data->io_reg); +		regulator_disable(data->core_reg);  		return error; +	}  	if (data->pdata->cfg_pin)  		data->pdata->cfg_pin(true); @@ -335,16 +347,20 @@ static int mms114_start(struct mms114_data *data)  static void mms114_stop(struct mms114_data *data)  {  	struct i2c_client *client = data->client; +	int error;  	disable_irq(client->irq);  	if (data->pdata->cfg_pin)  		data->pdata->cfg_pin(false); -	if (data->io_reg) -		regulator_disable(data->io_reg); -	if (data->core_reg) -		regulator_disable(data->core_reg); +	error = regulator_disable(data->io_reg); +	if (error) +		dev_warn(&client->dev, "Failed to disable vdd: %d\n", error); + +	error = regulator_disable(data->core_reg); +	if (error) +		dev_warn(&client->dev, "Failed to disable avdd: %d\n", error);  }  static int mms114_input_open(struct input_dev *dev) diff --git a/drivers/irqchip/Kconfig b/drivers/irqchip/Kconfig index a350969e5ef..4a33351c25d 100644 --- a/drivers/irqchip/Kconfig +++ b/drivers/irqchip/Kconfig @@ -25,6 +25,14 @@ config ARM_VIC_NR  	  The maximum number of VICs available in the system, for  	  power management. +config RENESAS_INTC_IRQPIN +	bool +	select IRQ_DOMAIN + +config RENESAS_IRQC +	bool +	select IRQ_DOMAIN +  config VERSATILE_FPGA_IRQ  	bool  	select IRQ_DOMAIN diff --git a/drivers/irqchip/Makefile b/drivers/irqchip/Makefile index 98e3b87bdf1..e41ceb9bec2 100644 --- a/drivers/irqchip/Makefile +++ b/drivers/irqchip/Makefile @@ -8,4 +8,6 @@ obj-$(CONFIG_ARCH_SUNXI)		+= irq-sunxi.o  obj-$(CONFIG_ARCH_SPEAR3XX)		+= spear-shirq.o  obj-$(CONFIG_ARM_GIC)			+= irq-gic.o  obj-$(CONFIG_ARM_VIC)			+= irq-vic.o +obj-$(CONFIG_RENESAS_INTC_IRQPIN)	+= irq-renesas-intc-irqpin.o +obj-$(CONFIG_RENESAS_IRQC)		+= irq-renesas-irqc.o  obj-$(CONFIG_VERSATILE_FPGA_IRQ)	+= irq-versatile-fpga.o diff --git a/drivers/irqchip/irq-gic.c b/drivers/irqchip/irq-gic.c index 644d7246842..a32e0d5aa45 100644 --- a/drivers/irqchip/irq-gic.c +++ b/drivers/irqchip/irq-gic.c @@ -648,7 +648,7 @@ void gic_raise_softirq(const struct cpumask *mask, unsigned int irq)  	/* Convert our logical CPU mask into a physical one. */  	for_each_cpu(cpu, mask) -		map |= 1 << cpu_logical_map(cpu); +		map |= gic_cpu_map[cpu];  	/*  	 * Ensure that stores to Normal memory are visible to the diff --git a/drivers/irqchip/irq-renesas-intc-irqpin.c b/drivers/irqchip/irq-renesas-intc-irqpin.c new file mode 100644 index 00000000000..5a68e5accec --- /dev/null +++ b/drivers/irqchip/irq-renesas-intc-irqpin.c @@ -0,0 +1,547 @@ +/* + * Renesas INTC External IRQ Pin Driver + * + *  Copyright (C) 2013 Magnus Damm + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA + */ + +#include <linux/init.h> +#include <linux/platform_device.h> +#include <linux/spinlock.h> +#include <linux/interrupt.h> +#include <linux/ioport.h> +#include <linux/io.h> +#include <linux/irq.h> +#include <linux/irqdomain.h> +#include <linux/err.h> +#include <linux/slab.h> +#include <linux/module.h> +#include <linux/platform_data/irq-renesas-intc-irqpin.h> + +#define INTC_IRQPIN_MAX 8 /* maximum 8 interrupts per driver instance */ + +#define INTC_IRQPIN_REG_SENSE 0 /* ICRn */ +#define INTC_IRQPIN_REG_PRIO 1 /* INTPRInn */ +#define INTC_IRQPIN_REG_SOURCE 2 /* INTREQnn */ +#define INTC_IRQPIN_REG_MASK 3 /* INTMSKnn */ +#define INTC_IRQPIN_REG_CLEAR 4 /* INTMSKCLRnn */ +#define INTC_IRQPIN_REG_NR 5 + +/* INTC external IRQ PIN hardware register access: + * + * SENSE is read-write 32-bit with 2-bits or 4-bits per IRQ (*) + * PRIO is read-write 32-bit with 4-bits per IRQ (**) + * SOURCE is read-only 32-bit or 8-bit with 1-bit per IRQ (***) + * MASK is write-only 32-bit or 8-bit with 1-bit per IRQ (***) + * CLEAR is write-only 32-bit or 8-bit with 1-bit per IRQ (***) + * + * (*) May be accessed by more than one driver instance - lock needed + * (**) Read-modify-write access by one driver instance - lock needed + * (***) Accessed by one driver instance only - no locking needed + */ + +struct intc_irqpin_iomem { +	void __iomem *iomem; +	unsigned long (*read)(void __iomem *iomem); +	void (*write)(void __iomem *iomem, unsigned long data); +	int width; +}; + +struct intc_irqpin_irq { +	int hw_irq; +	int requested_irq; +	int domain_irq; +	struct intc_irqpin_priv *p; +}; + +struct intc_irqpin_priv { +	struct intc_irqpin_iomem iomem[INTC_IRQPIN_REG_NR]; +	struct intc_irqpin_irq irq[INTC_IRQPIN_MAX]; +	struct renesas_intc_irqpin_config config; +	unsigned int number_of_irqs; +	struct platform_device *pdev; +	struct irq_chip irq_chip; +	struct irq_domain *irq_domain; +	bool shared_irqs; +	u8 shared_irq_mask; +}; + +static unsigned long intc_irqpin_read32(void __iomem *iomem) +{ +	return ioread32(iomem); +} + +static unsigned long intc_irqpin_read8(void __iomem *iomem) +{ +	return ioread8(iomem); +} + +static void intc_irqpin_write32(void __iomem *iomem, unsigned long data) +{ +	iowrite32(data, iomem); +} + +static void intc_irqpin_write8(void __iomem *iomem, unsigned long data) +{ +	iowrite8(data, iomem); +} + +static inline unsigned long intc_irqpin_read(struct intc_irqpin_priv *p, +					     int reg) +{ +	struct intc_irqpin_iomem *i = &p->iomem[reg]; + +	return i->read(i->iomem); +} + +static inline void intc_irqpin_write(struct intc_irqpin_priv *p, +				     int reg, unsigned long data) +{ +	struct intc_irqpin_iomem *i = &p->iomem[reg]; + +	i->write(i->iomem, data); +} + +static inline unsigned long intc_irqpin_hwirq_mask(struct intc_irqpin_priv *p, +						   int reg, int hw_irq) +{ +	return BIT((p->iomem[reg].width - 1) - hw_irq); +} + +static inline void intc_irqpin_irq_write_hwirq(struct intc_irqpin_priv *p, +					       int reg, int hw_irq) +{ +	intc_irqpin_write(p, reg, intc_irqpin_hwirq_mask(p, reg, hw_irq)); +} + +static DEFINE_RAW_SPINLOCK(intc_irqpin_lock); /* only used by slow path */ + +static void intc_irqpin_read_modify_write(struct intc_irqpin_priv *p, +					  int reg, int shift, +					  int width, int value) +{ +	unsigned long flags; +	unsigned long tmp; + +	raw_spin_lock_irqsave(&intc_irqpin_lock, flags); + +	tmp = intc_irqpin_read(p, reg); +	tmp &= ~(((1 << width) - 1) << shift); +	tmp |= value << shift; +	intc_irqpin_write(p, reg, tmp); + +	raw_spin_unlock_irqrestore(&intc_irqpin_lock, flags); +} + +static void intc_irqpin_mask_unmask_prio(struct intc_irqpin_priv *p, +					 int irq, int do_mask) +{ +	int bitfield_width = 4; /* PRIO assumed to have fixed bitfield width */ +	int shift = (7 - irq) * bitfield_width; /* PRIO assumed to be 32-bit */ + +	intc_irqpin_read_modify_write(p, INTC_IRQPIN_REG_PRIO, +				      shift, bitfield_width, +				      do_mask ? 0 : (1 << bitfield_width) - 1); +} + +static int intc_irqpin_set_sense(struct intc_irqpin_priv *p, int irq, int value) +{ +	int bitfield_width = p->config.sense_bitfield_width; +	int shift = (7 - irq) * bitfield_width; /* SENSE assumed to be 32-bit */ + +	dev_dbg(&p->pdev->dev, "sense irq = %d, mode = %d\n", irq, value); + +	if (value >= (1 << bitfield_width)) +		return -EINVAL; + +	intc_irqpin_read_modify_write(p, INTC_IRQPIN_REG_SENSE, shift, +				      bitfield_width, value); +	return 0; +} + +static void intc_irqpin_dbg(struct intc_irqpin_irq *i, char *str) +{ +	dev_dbg(&i->p->pdev->dev, "%s (%d:%d:%d)\n", +		str, i->requested_irq, i->hw_irq, i->domain_irq); +} + +static void intc_irqpin_irq_enable(struct irq_data *d) +{ +	struct intc_irqpin_priv *p = irq_data_get_irq_chip_data(d); +	int hw_irq = irqd_to_hwirq(d); + +	intc_irqpin_dbg(&p->irq[hw_irq], "enable"); +	intc_irqpin_irq_write_hwirq(p, INTC_IRQPIN_REG_CLEAR, hw_irq); +} + +static void intc_irqpin_irq_disable(struct irq_data *d) +{ +	struct intc_irqpin_priv *p = irq_data_get_irq_chip_data(d); +	int hw_irq = irqd_to_hwirq(d); + +	intc_irqpin_dbg(&p->irq[hw_irq], "disable"); +	intc_irqpin_irq_write_hwirq(p, INTC_IRQPIN_REG_MASK, hw_irq); +} + +static void intc_irqpin_shared_irq_enable(struct irq_data *d) +{ +	struct intc_irqpin_priv *p = irq_data_get_irq_chip_data(d); +	int hw_irq = irqd_to_hwirq(d); + +	intc_irqpin_dbg(&p->irq[hw_irq], "shared enable"); +	intc_irqpin_irq_write_hwirq(p, INTC_IRQPIN_REG_CLEAR, hw_irq); + +	p->shared_irq_mask &= ~BIT(hw_irq); +} + +static void intc_irqpin_shared_irq_disable(struct irq_data *d) +{ +	struct intc_irqpin_priv *p = irq_data_get_irq_chip_data(d); +	int hw_irq = irqd_to_hwirq(d); + +	intc_irqpin_dbg(&p->irq[hw_irq], "shared disable"); +	intc_irqpin_irq_write_hwirq(p, INTC_IRQPIN_REG_MASK, hw_irq); + +	p->shared_irq_mask |= BIT(hw_irq); +} + +static void intc_irqpin_irq_enable_force(struct irq_data *d) +{ +	struct intc_irqpin_priv *p = irq_data_get_irq_chip_data(d); +	int irq = p->irq[irqd_to_hwirq(d)].requested_irq; + +	intc_irqpin_irq_enable(d); + +	/* enable interrupt through parent interrupt controller, +	 * assumes non-shared interrupt with 1:1 mapping +	 * needed for busted IRQs on some SoCs like sh73a0 +	 */ +	irq_get_chip(irq)->irq_unmask(irq_get_irq_data(irq)); +} + +static void intc_irqpin_irq_disable_force(struct irq_data *d) +{ +	struct intc_irqpin_priv *p = irq_data_get_irq_chip_data(d); +	int irq = p->irq[irqd_to_hwirq(d)].requested_irq; + +	/* disable interrupt through parent interrupt controller, +	 * assumes non-shared interrupt with 1:1 mapping +	 * needed for busted IRQs on some SoCs like sh73a0 +	 */ +	irq_get_chip(irq)->irq_mask(irq_get_irq_data(irq)); +	intc_irqpin_irq_disable(d); +} + +#define INTC_IRQ_SENSE_VALID 0x10 +#define INTC_IRQ_SENSE(x) (x + INTC_IRQ_SENSE_VALID) + +static unsigned char intc_irqpin_sense[IRQ_TYPE_SENSE_MASK + 1] = { +	[IRQ_TYPE_EDGE_FALLING] = INTC_IRQ_SENSE(0x00), +	[IRQ_TYPE_EDGE_RISING] = INTC_IRQ_SENSE(0x01), +	[IRQ_TYPE_LEVEL_LOW] = INTC_IRQ_SENSE(0x02), +	[IRQ_TYPE_LEVEL_HIGH] = INTC_IRQ_SENSE(0x03), +	[IRQ_TYPE_EDGE_BOTH] = INTC_IRQ_SENSE(0x04), +}; + +static int intc_irqpin_irq_set_type(struct irq_data *d, unsigned int type) +{ +	unsigned char value = intc_irqpin_sense[type & IRQ_TYPE_SENSE_MASK]; +	struct intc_irqpin_priv *p = irq_data_get_irq_chip_data(d); + +	if (!(value & INTC_IRQ_SENSE_VALID)) +		return -EINVAL; + +	return intc_irqpin_set_sense(p, irqd_to_hwirq(d), +				     value ^ INTC_IRQ_SENSE_VALID); +} + +static irqreturn_t intc_irqpin_irq_handler(int irq, void *dev_id) +{ +	struct intc_irqpin_irq *i = dev_id; +	struct intc_irqpin_priv *p = i->p; +	unsigned long bit; + +	intc_irqpin_dbg(i, "demux1"); +	bit = intc_irqpin_hwirq_mask(p, INTC_IRQPIN_REG_SOURCE, i->hw_irq); + +	if (intc_irqpin_read(p, INTC_IRQPIN_REG_SOURCE) & bit) { +		intc_irqpin_write(p, INTC_IRQPIN_REG_SOURCE, ~bit); +		intc_irqpin_dbg(i, "demux2"); +		generic_handle_irq(i->domain_irq); +		return IRQ_HANDLED; +	} +	return IRQ_NONE; +} + +static irqreturn_t intc_irqpin_shared_irq_handler(int irq, void *dev_id) +{ +	struct intc_irqpin_priv *p = dev_id; +	unsigned int reg_source = intc_irqpin_read(p, INTC_IRQPIN_REG_SOURCE); +	irqreturn_t status = IRQ_NONE; +	int k; + +	for (k = 0; k < 8; k++) { +		if (reg_source & BIT(7 - k)) { +			if (BIT(k) & p->shared_irq_mask) +				continue; + +			status |= intc_irqpin_irq_handler(irq, &p->irq[k]); +		} +	} + +	return status; +} + +static int intc_irqpin_irq_domain_map(struct irq_domain *h, unsigned int virq, +				      irq_hw_number_t hw) +{ +	struct intc_irqpin_priv *p = h->host_data; + +	p->irq[hw].domain_irq = virq; +	p->irq[hw].hw_irq = hw; + +	intc_irqpin_dbg(&p->irq[hw], "map"); +	irq_set_chip_data(virq, h->host_data); +	irq_set_chip_and_handler(virq, &p->irq_chip, handle_level_irq); +	set_irq_flags(virq, IRQF_VALID); /* kill me now */ +	return 0; +} + +static struct irq_domain_ops intc_irqpin_irq_domain_ops = { +	.map	= intc_irqpin_irq_domain_map, +	.xlate  = irq_domain_xlate_twocell, +}; + +static int intc_irqpin_probe(struct platform_device *pdev) +{ +	struct renesas_intc_irqpin_config *pdata = pdev->dev.platform_data; +	struct intc_irqpin_priv *p; +	struct intc_irqpin_iomem *i; +	struct resource *io[INTC_IRQPIN_REG_NR]; +	struct resource *irq; +	struct irq_chip *irq_chip; +	void (*enable_fn)(struct irq_data *d); +	void (*disable_fn)(struct irq_data *d); +	const char *name = dev_name(&pdev->dev); +	int ref_irq; +	int ret; +	int k; + +	p = devm_kzalloc(&pdev->dev, sizeof(*p), GFP_KERNEL); +	if (!p) { +		dev_err(&pdev->dev, "failed to allocate driver data\n"); +		ret = -ENOMEM; +		goto err0; +	} + +	/* deal with driver instance configuration */ +	if (pdata) +		memcpy(&p->config, pdata, sizeof(*pdata)); +	if (!p->config.sense_bitfield_width) +		p->config.sense_bitfield_width = 4; /* default to 4 bits */ + +	p->pdev = pdev; +	platform_set_drvdata(pdev, p); + +	/* get hold of manadatory IOMEM */ +	for (k = 0; k < INTC_IRQPIN_REG_NR; k++) { +		io[k] = platform_get_resource(pdev, IORESOURCE_MEM, k); +		if (!io[k]) { +			dev_err(&pdev->dev, "not enough IOMEM resources\n"); +			ret = -EINVAL; +			goto err0; +		} +	} + +	/* allow any number of IRQs between 1 and INTC_IRQPIN_MAX */ +	for (k = 0; k < INTC_IRQPIN_MAX; k++) { +		irq = platform_get_resource(pdev, IORESOURCE_IRQ, k); +		if (!irq) +			break; + +		p->irq[k].p = p; +		p->irq[k].requested_irq = irq->start; +	} + +	p->number_of_irqs = k; +	if (p->number_of_irqs < 1) { +		dev_err(&pdev->dev, "not enough IRQ resources\n"); +		ret = -EINVAL; +		goto err0; +	} + +	/* ioremap IOMEM and setup read/write callbacks */ +	for (k = 0; k < INTC_IRQPIN_REG_NR; k++) { +		i = &p->iomem[k]; + +		switch (resource_size(io[k])) { +		case 1: +			i->width = 8; +			i->read = intc_irqpin_read8; +			i->write = intc_irqpin_write8; +			break; +		case 4: +			i->width = 32; +			i->read = intc_irqpin_read32; +			i->write = intc_irqpin_write32; +			break; +		default: +			dev_err(&pdev->dev, "IOMEM size mismatch\n"); +			ret = -EINVAL; +			goto err0; +		} + +		i->iomem = devm_ioremap_nocache(&pdev->dev, io[k]->start, +						resource_size(io[k])); +		if (!i->iomem) { +			dev_err(&pdev->dev, "failed to remap IOMEM\n"); +			ret = -ENXIO; +			goto err0; +		} +	} + +	/* mask all interrupts using priority */ +	for (k = 0; k < p->number_of_irqs; k++) +		intc_irqpin_mask_unmask_prio(p, k, 1); + +	/* clear all pending interrupts */ +	intc_irqpin_write(p, INTC_IRQPIN_REG_SOURCE, 0x0); + +	/* scan for shared interrupt lines */ +	ref_irq = p->irq[0].requested_irq; +	p->shared_irqs = true; +	for (k = 1; k < p->number_of_irqs; k++) { +		if (ref_irq != p->irq[k].requested_irq) { +			p->shared_irqs = false; +			break; +		} +	} + +	/* use more severe masking method if requested */ +	if (p->config.control_parent) { +		enable_fn = intc_irqpin_irq_enable_force; +		disable_fn = intc_irqpin_irq_disable_force; +	} else if (!p->shared_irqs) { +		enable_fn = intc_irqpin_irq_enable; +		disable_fn = intc_irqpin_irq_disable; +	} else { +		enable_fn = intc_irqpin_shared_irq_enable; +		disable_fn = intc_irqpin_shared_irq_disable; +	} + +	irq_chip = &p->irq_chip; +	irq_chip->name = name; +	irq_chip->irq_mask = disable_fn; +	irq_chip->irq_unmask = enable_fn; +	irq_chip->irq_enable = enable_fn; +	irq_chip->irq_disable = disable_fn; +	irq_chip->irq_set_type = intc_irqpin_irq_set_type; +	irq_chip->flags	= IRQCHIP_SKIP_SET_WAKE; + +	p->irq_domain = irq_domain_add_simple(pdev->dev.of_node, +					      p->number_of_irqs, +					      p->config.irq_base, +					      &intc_irqpin_irq_domain_ops, p); +	if (!p->irq_domain) { +		ret = -ENXIO; +		dev_err(&pdev->dev, "cannot initialize irq domain\n"); +		goto err0; +	} + +	if (p->shared_irqs) { +		/* request one shared interrupt */ +		if (devm_request_irq(&pdev->dev, p->irq[0].requested_irq, +				intc_irqpin_shared_irq_handler, +				IRQF_SHARED, name, p)) { +			dev_err(&pdev->dev, "failed to request low IRQ\n"); +			ret = -ENOENT; +			goto err1; +		} +	} else { +		/* request interrupts one by one */ +		for (k = 0; k < p->number_of_irqs; k++) { +			if (devm_request_irq(&pdev->dev, +					p->irq[k].requested_irq, +					intc_irqpin_irq_handler, +					0, name, &p->irq[k])) { +				dev_err(&pdev->dev, +					"failed to request low IRQ\n"); +				ret = -ENOENT; +				goto err1; +			} +		} +	} + +	/* unmask all interrupts on prio level */ +	for (k = 0; k < p->number_of_irqs; k++) +		intc_irqpin_mask_unmask_prio(p, k, 0); + +	dev_info(&pdev->dev, "driving %d irqs\n", p->number_of_irqs); + +	/* warn in case of mismatch if irq base is specified */ +	if (p->config.irq_base) { +		if (p->config.irq_base != p->irq[0].domain_irq) +			dev_warn(&pdev->dev, "irq base mismatch (%d/%d)\n", +				 p->config.irq_base, p->irq[0].domain_irq); +	} + +	return 0; + +err1: +	irq_domain_remove(p->irq_domain); +err0: +	return ret; +} + +static int intc_irqpin_remove(struct platform_device *pdev) +{ +	struct intc_irqpin_priv *p = platform_get_drvdata(pdev); + +	irq_domain_remove(p->irq_domain); + +	return 0; +} + +static const struct of_device_id intc_irqpin_dt_ids[] = { +	{ .compatible = "renesas,intc-irqpin", }, +	{}, +}; +MODULE_DEVICE_TABLE(of, intc_irqpin_dt_ids); + +static struct platform_driver intc_irqpin_device_driver = { +	.probe		= intc_irqpin_probe, +	.remove		= intc_irqpin_remove, +	.driver		= { +		.name	= "renesas_intc_irqpin", +		.of_match_table = intc_irqpin_dt_ids, +		.owner  = THIS_MODULE, +	} +}; + +static int __init intc_irqpin_init(void) +{ +	return platform_driver_register(&intc_irqpin_device_driver); +} +postcore_initcall(intc_irqpin_init); + +static void __exit intc_irqpin_exit(void) +{ +	platform_driver_unregister(&intc_irqpin_device_driver); +} +module_exit(intc_irqpin_exit); + +MODULE_AUTHOR("Magnus Damm"); +MODULE_DESCRIPTION("Renesas INTC External IRQ Pin Driver"); +MODULE_LICENSE("GPL v2"); diff --git a/drivers/irqchip/irq-renesas-irqc.c b/drivers/irqchip/irq-renesas-irqc.c new file mode 100644 index 00000000000..927bff373aa --- /dev/null +++ b/drivers/irqchip/irq-renesas-irqc.c @@ -0,0 +1,307 @@ +/* + * Renesas IRQC Driver + * + *  Copyright (C) 2013 Magnus Damm + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA + */ + +#include <linux/init.h> +#include <linux/platform_device.h> +#include <linux/spinlock.h> +#include <linux/interrupt.h> +#include <linux/ioport.h> +#include <linux/io.h> +#include <linux/irq.h> +#include <linux/irqdomain.h> +#include <linux/err.h> +#include <linux/slab.h> +#include <linux/module.h> +#include <linux/platform_data/irq-renesas-irqc.h> + +#define IRQC_IRQ_MAX 32 /* maximum 32 interrupts per driver instance */ + +#define IRQC_REQ_STS 0x00 +#define IRQC_EN_STS 0x04 +#define IRQC_EN_SET 0x08 +#define IRQC_INT_CPU_BASE(n) (0x000 + ((n) * 0x10)) +#define DETECT_STATUS 0x100 +#define IRQC_CONFIG(n) (0x180 + ((n) * 0x04)) + +struct irqc_irq { +	int hw_irq; +	int requested_irq; +	int domain_irq; +	struct irqc_priv *p; +}; + +struct irqc_priv { +	void __iomem *iomem; +	void __iomem *cpu_int_base; +	struct irqc_irq irq[IRQC_IRQ_MAX]; +	struct renesas_irqc_config config; +	unsigned int number_of_irqs; +	struct platform_device *pdev; +	struct irq_chip irq_chip; +	struct irq_domain *irq_domain; +}; + +static void irqc_dbg(struct irqc_irq *i, char *str) +{ +	dev_dbg(&i->p->pdev->dev, "%s (%d:%d:%d)\n", +		str, i->requested_irq, i->hw_irq, i->domain_irq); +} + +static void irqc_irq_enable(struct irq_data *d) +{ +	struct irqc_priv *p = irq_data_get_irq_chip_data(d); +	int hw_irq = irqd_to_hwirq(d); + +	irqc_dbg(&p->irq[hw_irq], "enable"); +	iowrite32(BIT(hw_irq), p->cpu_int_base + IRQC_EN_SET); +} + +static void irqc_irq_disable(struct irq_data *d) +{ +	struct irqc_priv *p = irq_data_get_irq_chip_data(d); +	int hw_irq = irqd_to_hwirq(d); + +	irqc_dbg(&p->irq[hw_irq], "disable"); +	iowrite32(BIT(hw_irq), p->cpu_int_base + IRQC_EN_STS); +} + +#define INTC_IRQ_SENSE_VALID 0x10 +#define INTC_IRQ_SENSE(x) (x + INTC_IRQ_SENSE_VALID) + +static unsigned char irqc_sense[IRQ_TYPE_SENSE_MASK + 1] = { +	[IRQ_TYPE_LEVEL_LOW] = INTC_IRQ_SENSE(0x01), +	[IRQ_TYPE_LEVEL_HIGH] = INTC_IRQ_SENSE(0x02), +	[IRQ_TYPE_EDGE_FALLING] = INTC_IRQ_SENSE(0x04), /* Synchronous */ +	[IRQ_TYPE_EDGE_RISING] = INTC_IRQ_SENSE(0x08), /* Synchronous */ +	[IRQ_TYPE_EDGE_BOTH] = INTC_IRQ_SENSE(0x0c),  /* Synchronous */ +}; + +static int irqc_irq_set_type(struct irq_data *d, unsigned int type) +{ +	struct irqc_priv *p = irq_data_get_irq_chip_data(d); +	int hw_irq = irqd_to_hwirq(d); +	unsigned char value = irqc_sense[type & IRQ_TYPE_SENSE_MASK]; +	unsigned long tmp; + +	irqc_dbg(&p->irq[hw_irq], "sense"); + +	if (!(value & INTC_IRQ_SENSE_VALID)) +		return -EINVAL; + +	tmp = ioread32(p->iomem + IRQC_CONFIG(hw_irq)); +	tmp &= ~0x3f; +	tmp |= value ^ INTC_IRQ_SENSE_VALID; +	iowrite32(tmp, p->iomem + IRQC_CONFIG(hw_irq)); +	return 0; +} + +static irqreturn_t irqc_irq_handler(int irq, void *dev_id) +{ +	struct irqc_irq *i = dev_id; +	struct irqc_priv *p = i->p; +	unsigned long bit = BIT(i->hw_irq); + +	irqc_dbg(i, "demux1"); + +	if (ioread32(p->iomem + DETECT_STATUS) & bit) { +		iowrite32(bit, p->iomem + DETECT_STATUS); +		irqc_dbg(i, "demux2"); +		generic_handle_irq(i->domain_irq); +		return IRQ_HANDLED; +	} +	return IRQ_NONE; +} + +static int irqc_irq_domain_map(struct irq_domain *h, unsigned int virq, +			       irq_hw_number_t hw) +{ +	struct irqc_priv *p = h->host_data; + +	p->irq[hw].domain_irq = virq; +	p->irq[hw].hw_irq = hw; + +	irqc_dbg(&p->irq[hw], "map"); +	irq_set_chip_data(virq, h->host_data); +	irq_set_chip_and_handler(virq, &p->irq_chip, handle_level_irq); +	set_irq_flags(virq, IRQF_VALID); /* kill me now */ +	return 0; +} + +static struct irq_domain_ops irqc_irq_domain_ops = { +	.map	= irqc_irq_domain_map, +	.xlate  = irq_domain_xlate_twocell, +}; + +static int irqc_probe(struct platform_device *pdev) +{ +	struct renesas_irqc_config *pdata = pdev->dev.platform_data; +	struct irqc_priv *p; +	struct resource *io; +	struct resource *irq; +	struct irq_chip *irq_chip; +	const char *name = dev_name(&pdev->dev); +	int ret; +	int k; + +	p = kzalloc(sizeof(*p), GFP_KERNEL); +	if (!p) { +		dev_err(&pdev->dev, "failed to allocate driver data\n"); +		ret = -ENOMEM; +		goto err0; +	} + +	/* deal with driver instance configuration */ +	if (pdata) +		memcpy(&p->config, pdata, sizeof(*pdata)); + +	p->pdev = pdev; +	platform_set_drvdata(pdev, p); + +	/* get hold of manadatory IOMEM */ +	io = platform_get_resource(pdev, IORESOURCE_MEM, 0); +	if (!io) { +		dev_err(&pdev->dev, "not enough IOMEM resources\n"); +		ret = -EINVAL; +		goto err1; +	} + +	/* allow any number of IRQs between 1 and IRQC_IRQ_MAX */ +	for (k = 0; k < IRQC_IRQ_MAX; k++) { +		irq = platform_get_resource(pdev, IORESOURCE_IRQ, k); +		if (!irq) +			break; + +		p->irq[k].p = p; +		p->irq[k].requested_irq = irq->start; +	} + +	p->number_of_irqs = k; +	if (p->number_of_irqs < 1) { +		dev_err(&pdev->dev, "not enough IRQ resources\n"); +		ret = -EINVAL; +		goto err1; +	} + +	/* ioremap IOMEM and setup read/write callbacks */ +	p->iomem = ioremap_nocache(io->start, resource_size(io)); +	if (!p->iomem) { +		dev_err(&pdev->dev, "failed to remap IOMEM\n"); +		ret = -ENXIO; +		goto err2; +	} + +	p->cpu_int_base = p->iomem + IRQC_INT_CPU_BASE(0); /* SYS-SPI */ + +	irq_chip = &p->irq_chip; +	irq_chip->name = name; +	irq_chip->irq_mask = irqc_irq_disable; +	irq_chip->irq_unmask = irqc_irq_enable; +	irq_chip->irq_enable = irqc_irq_enable; +	irq_chip->irq_disable = irqc_irq_disable; +	irq_chip->irq_set_type = irqc_irq_set_type; +	irq_chip->flags	= IRQCHIP_SKIP_SET_WAKE; + +	p->irq_domain = irq_domain_add_simple(pdev->dev.of_node, +					      p->number_of_irqs, +					      p->config.irq_base, +					      &irqc_irq_domain_ops, p); +	if (!p->irq_domain) { +		ret = -ENXIO; +		dev_err(&pdev->dev, "cannot initialize irq domain\n"); +		goto err2; +	} + +	/* request interrupts one by one */ +	for (k = 0; k < p->number_of_irqs; k++) { +		if (request_irq(p->irq[k].requested_irq, irqc_irq_handler, +				0, name, &p->irq[k])) { +			dev_err(&pdev->dev, "failed to request IRQ\n"); +			ret = -ENOENT; +			goto err3; +		} +	} + +	dev_info(&pdev->dev, "driving %d irqs\n", p->number_of_irqs); + +	/* warn in case of mismatch if irq base is specified */ +	if (p->config.irq_base) { +		if (p->config.irq_base != p->irq[0].domain_irq) +			dev_warn(&pdev->dev, "irq base mismatch (%d/%d)\n", +				 p->config.irq_base, p->irq[0].domain_irq); +	} + +	return 0; +err3: +	for (; k >= 0; k--) +		free_irq(p->irq[k - 1].requested_irq, &p->irq[k - 1]); + +	irq_domain_remove(p->irq_domain); +err2: +	iounmap(p->iomem); +err1: +	kfree(p); +err0: +	return ret; +} + +static int irqc_remove(struct platform_device *pdev) +{ +	struct irqc_priv *p = platform_get_drvdata(pdev); +	int k; + +	for (k = 0; k < p->number_of_irqs; k++) +		free_irq(p->irq[k].requested_irq, &p->irq[k]); + +	irq_domain_remove(p->irq_domain); +	iounmap(p->iomem); +	kfree(p); +	return 0; +} + +static const struct of_device_id irqc_dt_ids[] = { +	{ .compatible = "renesas,irqc", }, +	{}, +}; +MODULE_DEVICE_TABLE(of, irqc_dt_ids); + +static struct platform_driver irqc_device_driver = { +	.probe		= irqc_probe, +	.remove		= irqc_remove, +	.driver		= { +		.name	= "renesas_irqc", +		.of_match_table	= irqc_dt_ids, +		.owner	= THIS_MODULE, +	} +}; + +static int __init irqc_init(void) +{ +	return platform_driver_register(&irqc_device_driver); +} +postcore_initcall(irqc_init); + +static void __exit irqc_exit(void) +{ +	platform_driver_unregister(&irqc_device_driver); +} +module_exit(irqc_exit); + +MODULE_AUTHOR("Magnus Damm"); +MODULE_DESCRIPTION("Renesas IRQC Driver"); +MODULE_LICENSE("GPL v2"); diff --git a/drivers/isdn/hisax/Kconfig b/drivers/isdn/hisax/Kconfig index 5313c9ea44d..d9edcc94c2a 100644 --- a/drivers/isdn/hisax/Kconfig +++ b/drivers/isdn/hisax/Kconfig @@ -237,7 +237,8 @@ config HISAX_MIC  config HISAX_NETJET  	bool "NETjet card" -	depends on PCI && (BROKEN || !(SPARC || PPC || PARISC || M68K || (MIPS && !CPU_LITTLE_ENDIAN) || FRV || (XTENSA && !CPU_LITTLE_ENDIAN))) +	depends on PCI && (BROKEN || !(PPC || PARISC || M68K || (MIPS && !CPU_LITTLE_ENDIAN) || FRV || (XTENSA && !CPU_LITTLE_ENDIAN))) +	depends on VIRT_TO_BUS  	help  	  This enables HiSax support for the NetJet from Traverse  	  Technologies. @@ -248,7 +249,8 @@ config HISAX_NETJET  config HISAX_NETJET_U  	bool "NETspider U card" -	depends on PCI && (BROKEN || !(SPARC || PPC || PARISC || M68K || (MIPS && !CPU_LITTLE_ENDIAN) || FRV || (XTENSA && !CPU_LITTLE_ENDIAN))) +	depends on PCI && (BROKEN || !(PPC || PARISC || M68K || (MIPS && !CPU_LITTLE_ENDIAN) || FRV || (XTENSA && !CPU_LITTLE_ENDIAN))) +	depends on VIRT_TO_BUS  	help  	  This enables HiSax support for the Netspider U interface ISDN card  	  from Traverse Technologies. diff --git a/drivers/isdn/i4l/isdn_tty.c b/drivers/isdn/i4l/isdn_tty.c index d8a7d832341..ebaebdf30f9 100644 --- a/drivers/isdn/i4l/isdn_tty.c +++ b/drivers/isdn/i4l/isdn_tty.c @@ -902,7 +902,9 @@ isdn_tty_send_msg(modem_info *info, atemu *m, char *msg)  	int j;  	int l; -	l = strlen(msg); +	l = min(strlen(msg), sizeof(cmd.parm) - sizeof(cmd.parm.cmsg) +		+ sizeof(cmd.parm.cmsg.para) - 2); +  	if (!l) {  		isdn_tty_modem_result(RESULT_ERROR, info);  		return; diff --git a/drivers/md/dm-bufio.c b/drivers/md/dm-bufio.c index 3c955e10a61..c6083132c4b 100644 --- a/drivers/md/dm-bufio.c +++ b/drivers/md/dm-bufio.c @@ -1025,6 +1025,8 @@ void dm_bufio_prefetch(struct dm_bufio_client *c,  {  	struct blk_plug plug; +	BUG_ON(dm_bufio_in_request()); +  	blk_start_plug(&plug);  	dm_bufio_lock(c); diff --git a/drivers/md/dm-cache-metadata.c b/drivers/md/dm-cache-metadata.c index fbd3625f274..83e995fece8 100644 --- a/drivers/md/dm-cache-metadata.c +++ b/drivers/md/dm-cache-metadata.c @@ -83,6 +83,8 @@ struct cache_disk_superblock {  	__le32 read_misses;  	__le32 write_hits;  	__le32 write_misses; + +	__le32 policy_version[CACHE_POLICY_VERSION_SIZE];  } __packed;  struct dm_cache_metadata { @@ -109,6 +111,7 @@ struct dm_cache_metadata {  	bool clean_when_opened:1;  	char policy_name[CACHE_POLICY_NAME_SIZE]; +	unsigned policy_version[CACHE_POLICY_VERSION_SIZE];  	size_t policy_hint_size;  	struct dm_cache_statistics stats;  }; @@ -268,7 +271,8 @@ static int __write_initial_superblock(struct dm_cache_metadata *cmd)  	memset(disk_super->uuid, 0, sizeof(disk_super->uuid));  	disk_super->magic = cpu_to_le64(CACHE_SUPERBLOCK_MAGIC);  	disk_super->version = cpu_to_le32(CACHE_VERSION); -	memset(disk_super->policy_name, 0, CACHE_POLICY_NAME_SIZE); +	memset(disk_super->policy_name, 0, sizeof(disk_super->policy_name)); +	memset(disk_super->policy_version, 0, sizeof(disk_super->policy_version));  	disk_super->policy_hint_size = 0;  	r = dm_sm_copy_root(cmd->metadata_sm, &disk_super->metadata_space_map_root, @@ -284,7 +288,6 @@ static int __write_initial_superblock(struct dm_cache_metadata *cmd)  	disk_super->metadata_block_size = cpu_to_le32(DM_CACHE_METADATA_BLOCK_SIZE >> SECTOR_SHIFT);  	disk_super->data_block_size = cpu_to_le32(cmd->data_block_size);  	disk_super->cache_blocks = cpu_to_le32(0); -	memset(disk_super->policy_name, 0, sizeof(disk_super->policy_name));  	disk_super->read_hits = cpu_to_le32(0);  	disk_super->read_misses = cpu_to_le32(0); @@ -478,6 +481,9 @@ static void read_superblock_fields(struct dm_cache_metadata *cmd,  	cmd->data_block_size = le32_to_cpu(disk_super->data_block_size);  	cmd->cache_blocks = to_cblock(le32_to_cpu(disk_super->cache_blocks));  	strncpy(cmd->policy_name, disk_super->policy_name, sizeof(cmd->policy_name)); +	cmd->policy_version[0] = le32_to_cpu(disk_super->policy_version[0]); +	cmd->policy_version[1] = le32_to_cpu(disk_super->policy_version[1]); +	cmd->policy_version[2] = le32_to_cpu(disk_super->policy_version[2]);  	cmd->policy_hint_size = le32_to_cpu(disk_super->policy_hint_size);  	cmd->stats.read_hits = le32_to_cpu(disk_super->read_hits); @@ -572,6 +578,9 @@ static int __commit_transaction(struct dm_cache_metadata *cmd,  	disk_super->discard_nr_blocks = cpu_to_le64(from_dblock(cmd->discard_nr_blocks));  	disk_super->cache_blocks = cpu_to_le32(from_cblock(cmd->cache_blocks));  	strncpy(disk_super->policy_name, cmd->policy_name, sizeof(disk_super->policy_name)); +	disk_super->policy_version[0] = cpu_to_le32(cmd->policy_version[0]); +	disk_super->policy_version[1] = cpu_to_le32(cmd->policy_version[1]); +	disk_super->policy_version[2] = cpu_to_le32(cmd->policy_version[2]);  	disk_super->read_hits = cpu_to_le32(cmd->stats.read_hits);  	disk_super->read_misses = cpu_to_le32(cmd->stats.read_misses); @@ -854,18 +863,43 @@ struct thunk {  	bool hints_valid;  }; +static bool policy_unchanged(struct dm_cache_metadata *cmd, +			     struct dm_cache_policy *policy) +{ +	const char *policy_name = dm_cache_policy_get_name(policy); +	const unsigned *policy_version = dm_cache_policy_get_version(policy); +	size_t policy_hint_size = dm_cache_policy_get_hint_size(policy); + +	/* +	 * Ensure policy names match. +	 */ +	if (strncmp(cmd->policy_name, policy_name, sizeof(cmd->policy_name))) +		return false; + +	/* +	 * Ensure policy major versions match. +	 */ +	if (cmd->policy_version[0] != policy_version[0]) +		return false; + +	/* +	 * Ensure policy hint sizes match. +	 */ +	if (cmd->policy_hint_size != policy_hint_size) +		return false; + +	return true; +} +  static bool hints_array_initialized(struct dm_cache_metadata *cmd)  {  	return cmd->hint_root && cmd->policy_hint_size;  }  static bool hints_array_available(struct dm_cache_metadata *cmd, -				  const char *policy_name) +				  struct dm_cache_policy *policy)  { -	bool policy_names_match = !strncmp(cmd->policy_name, policy_name, -					   sizeof(cmd->policy_name)); - -	return cmd->clean_when_opened && policy_names_match && +	return cmd->clean_when_opened && policy_unchanged(cmd, policy) &&  		hints_array_initialized(cmd);  } @@ -899,7 +933,8 @@ static int __load_mapping(void *context, uint64_t cblock, void *leaf)  	return r;  } -static int __load_mappings(struct dm_cache_metadata *cmd, const char *policy_name, +static int __load_mappings(struct dm_cache_metadata *cmd, +			   struct dm_cache_policy *policy,  			   load_mapping_fn fn, void *context)  {  	struct thunk thunk; @@ -909,18 +944,19 @@ static int __load_mappings(struct dm_cache_metadata *cmd, const char *policy_nam  	thunk.cmd = cmd;  	thunk.respect_dirty_flags = cmd->clean_when_opened; -	thunk.hints_valid = hints_array_available(cmd, policy_name); +	thunk.hints_valid = hints_array_available(cmd, policy);  	return dm_array_walk(&cmd->info, cmd->root, __load_mapping, &thunk);  } -int dm_cache_load_mappings(struct dm_cache_metadata *cmd, const char *policy_name, +int dm_cache_load_mappings(struct dm_cache_metadata *cmd, +			   struct dm_cache_policy *policy,  			   load_mapping_fn fn, void *context)  {  	int r;  	down_read(&cmd->root_lock); -	r = __load_mappings(cmd, policy_name, fn, context); +	r = __load_mappings(cmd, policy, fn, context);  	up_read(&cmd->root_lock);  	return r; @@ -979,7 +1015,7 @@ static int __dirty(struct dm_cache_metadata *cmd, dm_cblock_t cblock, bool dirty  		/* nothing to be done */  		return 0; -	value = pack_value(oblock, flags | (dirty ? M_DIRTY : 0)); +	value = pack_value(oblock, (flags & ~M_DIRTY) | (dirty ? M_DIRTY : 0));  	__dm_bless_for_disk(&value);  	r = dm_array_set_value(&cmd->info, cmd->root, from_cblock(cblock), @@ -1070,13 +1106,15 @@ static int begin_hints(struct dm_cache_metadata *cmd, struct dm_cache_policy *po  	__le32 value;  	size_t hint_size;  	const char *policy_name = dm_cache_policy_get_name(policy); +	const unsigned *policy_version = dm_cache_policy_get_version(policy);  	if (!policy_name[0] ||  	    (strlen(policy_name) > sizeof(cmd->policy_name) - 1))  		return -EINVAL; -	if (strcmp(cmd->policy_name, policy_name)) { +	if (!policy_unchanged(cmd, policy)) {  		strncpy(cmd->policy_name, policy_name, sizeof(cmd->policy_name)); +		memcpy(cmd->policy_version, policy_version, sizeof(cmd->policy_version));  		hint_size = dm_cache_policy_get_hint_size(policy);  		if (!hint_size) diff --git a/drivers/md/dm-cache-metadata.h b/drivers/md/dm-cache-metadata.h index 135864ea0ee..f45cef21f3d 100644 --- a/drivers/md/dm-cache-metadata.h +++ b/drivers/md/dm-cache-metadata.h @@ -89,7 +89,7 @@ typedef int (*load_mapping_fn)(void *context, dm_oblock_t oblock,  			       dm_cblock_t cblock, bool dirty,  			       uint32_t hint, bool hint_valid);  int dm_cache_load_mappings(struct dm_cache_metadata *cmd, -			   const char *policy_name, +			   struct dm_cache_policy *policy,  			   load_mapping_fn fn,  			   void *context); diff --git a/drivers/md/dm-cache-policy-cleaner.c b/drivers/md/dm-cache-policy-cleaner.c index cc05d70b3cb..b04d1f904d0 100644 --- a/drivers/md/dm-cache-policy-cleaner.c +++ b/drivers/md/dm-cache-policy-cleaner.c @@ -17,7 +17,6 @@  /*----------------------------------------------------------------*/  #define DM_MSG_PREFIX "cache cleaner" -#define CLEANER_VERSION "1.0.0"  /* Cache entry struct. */  struct wb_cache_entry { @@ -434,6 +433,7 @@ static struct dm_cache_policy *wb_create(dm_cblock_t cache_size,  static struct dm_cache_policy_type wb_policy_type = {  	.name = "cleaner", +	.version = {1, 0, 0},  	.hint_size = 0,  	.owner = THIS_MODULE,  	.create = wb_create @@ -446,7 +446,10 @@ static int __init wb_init(void)  	if (r < 0)  		DMERR("register failed %d", r);  	else -		DMINFO("version " CLEANER_VERSION " loaded"); +		DMINFO("version %u.%u.%u loaded", +		       wb_policy_type.version[0], +		       wb_policy_type.version[1], +		       wb_policy_type.version[2]);  	return r;  } diff --git a/drivers/md/dm-cache-policy-internal.h b/drivers/md/dm-cache-policy-internal.h index 52a75beeced..0928abdc49f 100644 --- a/drivers/md/dm-cache-policy-internal.h +++ b/drivers/md/dm-cache-policy-internal.h @@ -117,6 +117,8 @@ void dm_cache_policy_destroy(struct dm_cache_policy *p);   */  const char *dm_cache_policy_get_name(struct dm_cache_policy *p); +const unsigned *dm_cache_policy_get_version(struct dm_cache_policy *p); +  size_t dm_cache_policy_get_hint_size(struct dm_cache_policy *p);  /*----------------------------------------------------------------*/ diff --git a/drivers/md/dm-cache-policy-mq.c b/drivers/md/dm-cache-policy-mq.c index 96415325507..dc112a7137f 100644 --- a/drivers/md/dm-cache-policy-mq.c +++ b/drivers/md/dm-cache-policy-mq.c @@ -14,7 +14,6 @@  #include <linux/vmalloc.h>  #define DM_MSG_PREFIX "cache-policy-mq" -#define MQ_VERSION	"1.0.0"  static struct kmem_cache *mq_entry_cache; @@ -1133,6 +1132,7 @@ bad_cache_alloc:  static struct dm_cache_policy_type mq_policy_type = {  	.name = "mq", +	.version = {1, 0, 0},  	.hint_size = 4,  	.owner = THIS_MODULE,  	.create = mq_create @@ -1140,6 +1140,7 @@ static struct dm_cache_policy_type mq_policy_type = {  static struct dm_cache_policy_type default_policy_type = {  	.name = "default", +	.version = {1, 0, 0},  	.hint_size = 4,  	.owner = THIS_MODULE,  	.create = mq_create @@ -1164,7 +1165,10 @@ static int __init mq_init(void)  	r = dm_cache_policy_register(&default_policy_type);  	if (!r) { -		DMINFO("version " MQ_VERSION " loaded"); +		DMINFO("version %u.%u.%u loaded", +		       mq_policy_type.version[0], +		       mq_policy_type.version[1], +		       mq_policy_type.version[2]);  		return 0;  	} diff --git a/drivers/md/dm-cache-policy.c b/drivers/md/dm-cache-policy.c index 2cbf5fdaac5..21c03c570c0 100644 --- a/drivers/md/dm-cache-policy.c +++ b/drivers/md/dm-cache-policy.c @@ -150,6 +150,14 @@ const char *dm_cache_policy_get_name(struct dm_cache_policy *p)  }  EXPORT_SYMBOL_GPL(dm_cache_policy_get_name); +const unsigned *dm_cache_policy_get_version(struct dm_cache_policy *p) +{ +	struct dm_cache_policy_type *t = p->private; + +	return t->version; +} +EXPORT_SYMBOL_GPL(dm_cache_policy_get_version); +  size_t dm_cache_policy_get_hint_size(struct dm_cache_policy *p)  {  	struct dm_cache_policy_type *t = p->private; diff --git a/drivers/md/dm-cache-policy.h b/drivers/md/dm-cache-policy.h index f0f51b26054..558bdfdabf5 100644 --- a/drivers/md/dm-cache-policy.h +++ b/drivers/md/dm-cache-policy.h @@ -196,6 +196,7 @@ struct dm_cache_policy {   * We maintain a little register of the different policy types.   */  #define CACHE_POLICY_NAME_SIZE 16 +#define CACHE_POLICY_VERSION_SIZE 3  struct dm_cache_policy_type {  	/* For use by the register code only. */ @@ -206,6 +207,7 @@ struct dm_cache_policy_type {  	 * what gets passed on the target line to select your policy.  	 */  	char name[CACHE_POLICY_NAME_SIZE]; +	unsigned version[CACHE_POLICY_VERSION_SIZE];  	/*  	 * Policies may store a hint for each each cache block. diff --git a/drivers/md/dm-cache-target.c b/drivers/md/dm-cache-target.c index 0f4e84b15c3..66120bd46d1 100644 --- a/drivers/md/dm-cache-target.c +++ b/drivers/md/dm-cache-target.c @@ -142,6 +142,7 @@ struct cache {  	spinlock_t lock;  	struct bio_list deferred_bios;  	struct bio_list deferred_flush_bios; +	struct bio_list deferred_writethrough_bios;  	struct list_head quiesced_migrations;  	struct list_head completed_migrations;  	struct list_head need_commit_migrations; @@ -158,7 +159,7 @@ struct cache {  	/*  	 * origin_blocks entries, discarded if set.  	 */ -	sector_t discard_block_size; /* a power of 2 times sectors per block */ +	uint32_t discard_block_size; /* a power of 2 times sectors per block */  	dm_dblock_t discard_nr_blocks;  	unsigned long *discard_bitset; @@ -199,6 +200,11 @@ struct per_bio_data {  	bool tick:1;  	unsigned req_nr:2;  	struct dm_deferred_entry *all_io_entry; + +	/* writethrough fields */ +	struct cache *cache; +	dm_cblock_t cblock; +	bio_end_io_t *saved_bi_end_io;  };  struct dm_cache_migration { @@ -412,17 +418,24 @@ static bool block_size_is_power_of_two(struct cache *cache)  	return cache->sectors_per_block_shift >= 0;  } +static dm_block_t block_div(dm_block_t b, uint32_t n) +{ +	do_div(b, n); + +	return b; +} +  static dm_dblock_t oblock_to_dblock(struct cache *cache, dm_oblock_t oblock)  { -	sector_t discard_blocks = cache->discard_block_size; +	uint32_t discard_blocks = cache->discard_block_size;  	dm_block_t b = from_oblock(oblock);  	if (!block_size_is_power_of_two(cache)) -		(void) sector_div(discard_blocks, cache->sectors_per_block); +		discard_blocks = discard_blocks / cache->sectors_per_block;  	else  		discard_blocks >>= cache->sectors_per_block_shift; -	(void) sector_div(b, discard_blocks); +	b = block_div(b, discard_blocks);  	return to_dblock(b);  } @@ -609,6 +622,56 @@ static void issue(struct cache *cache, struct bio *bio)  	spin_unlock_irqrestore(&cache->lock, flags);  } +static void defer_writethrough_bio(struct cache *cache, struct bio *bio) +{ +	unsigned long flags; + +	spin_lock_irqsave(&cache->lock, flags); +	bio_list_add(&cache->deferred_writethrough_bios, bio); +	spin_unlock_irqrestore(&cache->lock, flags); + +	wake_worker(cache); +} + +static void writethrough_endio(struct bio *bio, int err) +{ +	struct per_bio_data *pb = get_per_bio_data(bio); +	bio->bi_end_io = pb->saved_bi_end_io; + +	if (err) { +		bio_endio(bio, err); +		return; +	} + +	remap_to_cache(pb->cache, bio, pb->cblock); + +	/* +	 * We can't issue this bio directly, since we're in interrupt +	 * context.  So it get's put on a bio list for processing by the +	 * worker thread. +	 */ +	defer_writethrough_bio(pb->cache, bio); +} + +/* + * When running in writethrough mode we need to send writes to clean blocks + * to both the cache and origin devices.  In future we'd like to clone the + * bio and send them in parallel, but for now we're doing them in + * series as this is easier. + */ +static void remap_to_origin_then_cache(struct cache *cache, struct bio *bio, +				       dm_oblock_t oblock, dm_cblock_t cblock) +{ +	struct per_bio_data *pb = get_per_bio_data(bio); + +	pb->cache = cache; +	pb->cblock = cblock; +	pb->saved_bi_end_io = bio->bi_end_io; +	bio->bi_end_io = writethrough_endio; + +	remap_to_origin_clear_discard(pb->cache, bio, oblock); +} +  /*----------------------------------------------------------------   * Migration processing   * @@ -1002,7 +1065,7 @@ static void process_discard_bio(struct cache *cache, struct bio *bio)  	dm_block_t end_block = bio->bi_sector + bio_sectors(bio);  	dm_block_t b; -	(void) sector_div(end_block, cache->discard_block_size); +	end_block = block_div(end_block, cache->discard_block_size);  	for (b = start_block; b < end_block; b++)  		set_discard(cache, to_dblock(b)); @@ -1070,14 +1133,9 @@ static void process_bio(struct cache *cache, struct prealloc *structs,  		inc_hit_counter(cache, bio);  		pb->all_io_entry = dm_deferred_entry_inc(cache->all_io_ds); -		if (is_writethrough_io(cache, bio, lookup_result.cblock)) { -			/* -			 * No need to mark anything dirty in write through mode. -			 */ -			pb->req_nr == 0 ? -				remap_to_cache(cache, bio, lookup_result.cblock) : -				remap_to_origin_clear_discard(cache, bio, block); -		} else +		if (is_writethrough_io(cache, bio, lookup_result.cblock)) +			remap_to_origin_then_cache(cache, bio, block, lookup_result.cblock); +		else  			remap_to_cache_dirty(cache, bio, block, lookup_result.cblock);  		issue(cache, bio); @@ -1086,17 +1144,8 @@ static void process_bio(struct cache *cache, struct prealloc *structs,  	case POLICY_MISS:  		inc_miss_counter(cache, bio);  		pb->all_io_entry = dm_deferred_entry_inc(cache->all_io_ds); - -		if (pb->req_nr != 0) { -			/* -			 * This is a duplicate writethrough io that is no -			 * longer needed because the block has been demoted. -			 */ -			bio_endio(bio, 0); -		} else { -			remap_to_origin_clear_discard(cache, bio, block); -			issue(cache, bio); -		} +		remap_to_origin_clear_discard(cache, bio, block); +		issue(cache, bio);  		break;  	case POLICY_NEW: @@ -1217,6 +1266,23 @@ static void process_deferred_flush_bios(struct cache *cache, bool submit_bios)  		submit_bios ? generic_make_request(bio) : bio_io_error(bio);  } +static void process_deferred_writethrough_bios(struct cache *cache) +{ +	unsigned long flags; +	struct bio_list bios; +	struct bio *bio; + +	bio_list_init(&bios); + +	spin_lock_irqsave(&cache->lock, flags); +	bio_list_merge(&bios, &cache->deferred_writethrough_bios); +	bio_list_init(&cache->deferred_writethrough_bios); +	spin_unlock_irqrestore(&cache->lock, flags); + +	while ((bio = bio_list_pop(&bios))) +		generic_make_request(bio); +} +  static void writeback_some_dirty_blocks(struct cache *cache)  {  	int r = 0; @@ -1313,6 +1379,7 @@ static int more_work(struct cache *cache)  	else  		return !bio_list_empty(&cache->deferred_bios) ||  			!bio_list_empty(&cache->deferred_flush_bios) || +			!bio_list_empty(&cache->deferred_writethrough_bios) ||  			!list_empty(&cache->quiesced_migrations) ||  			!list_empty(&cache->completed_migrations) ||  			!list_empty(&cache->need_commit_migrations); @@ -1331,6 +1398,8 @@ static void do_worker(struct work_struct *ws)  		writeback_some_dirty_blocks(cache); +		process_deferred_writethrough_bios(cache); +  		if (commit_if_needed(cache)) {  			process_deferred_flush_bios(cache, false); @@ -1756,8 +1825,11 @@ static int create_cache_policy(struct cache *cache, struct cache_args *ca,  	}  	r = set_config_values(cache->policy, ca->policy_argc, ca->policy_argv); -	if (r) +	if (r) { +		*error = "Error setting cache policy's config values";  		dm_cache_policy_destroy(cache->policy); +		cache->policy = NULL; +	}  	return r;  } @@ -1793,8 +1865,6 @@ static sector_t calculate_discard_block_size(sector_t cache_block_size,  #define DEFAULT_MIGRATION_THRESHOLD (2048 * 100) -static unsigned cache_num_write_bios(struct dm_target *ti, struct bio *bio); -  static int cache_create(struct cache_args *ca, struct cache **result)  {  	int r = 0; @@ -1821,9 +1891,6 @@ static int cache_create(struct cache_args *ca, struct cache **result)  	memcpy(&cache->features, &ca->features, sizeof(cache->features)); -	if (cache->features.write_through) -		ti->num_write_bios = cache_num_write_bios; -  	cache->callbacks.congested_fn = cache_is_congested;  	dm_table_add_target_callbacks(ti->table, &cache->callbacks); @@ -1835,7 +1902,7 @@ static int cache_create(struct cache_args *ca, struct cache **result)  	/* FIXME: factor out this whole section */  	origin_blocks = cache->origin_sectors = ca->origin_sectors; -	(void) sector_div(origin_blocks, ca->block_size); +	origin_blocks = block_div(origin_blocks, ca->block_size);  	cache->origin_blocks = to_oblock(origin_blocks);  	cache->sectors_per_block = ca->block_size; @@ -1848,7 +1915,7 @@ static int cache_create(struct cache_args *ca, struct cache **result)  		dm_block_t cache_size = ca->cache_sectors;  		cache->sectors_per_block_shift = -1; -		(void) sector_div(cache_size, ca->block_size); +		cache_size = block_div(cache_size, ca->block_size);  		cache->cache_size = to_cblock(cache_size);  	} else {  		cache->sectors_per_block_shift = __ffs(ca->block_size); @@ -1873,6 +1940,7 @@ static int cache_create(struct cache_args *ca, struct cache **result)  	spin_lock_init(&cache->lock);  	bio_list_init(&cache->deferred_bios);  	bio_list_init(&cache->deferred_flush_bios); +	bio_list_init(&cache->deferred_writethrough_bios);  	INIT_LIST_HEAD(&cache->quiesced_migrations);  	INIT_LIST_HEAD(&cache->completed_migrations);  	INIT_LIST_HEAD(&cache->need_commit_migrations); @@ -2002,6 +2070,8 @@ static int cache_ctr(struct dm_target *ti, unsigned argc, char **argv)  		goto out;  	r = cache_create(ca, &cache); +	if (r) +		goto out;  	r = copy_ctr_args(cache, argc - 3, (const char **)argv + 3);  	if (r) { @@ -2016,20 +2086,6 @@ out:  	return r;  } -static unsigned cache_num_write_bios(struct dm_target *ti, struct bio *bio) -{ -	int r; -	struct cache *cache = ti->private; -	dm_oblock_t block = get_bio_block(cache, bio); -	dm_cblock_t cblock; - -	r = policy_lookup(cache->policy, block, &cblock); -	if (r < 0) -		return 2;	/* assume the worst */ - -	return (!r && !is_dirty(cache, cblock)) ? 2 : 1; -} -  static int cache_map(struct dm_target *ti, struct bio *bio)  {  	struct cache *cache = ti->private; @@ -2097,18 +2153,12 @@ static int cache_map(struct dm_target *ti, struct bio *bio)  		inc_hit_counter(cache, bio);  		pb->all_io_entry = dm_deferred_entry_inc(cache->all_io_ds); -		if (is_writethrough_io(cache, bio, lookup_result.cblock)) { -			/* -			 * No need to mark anything dirty in write through mode. -			 */ -			pb->req_nr == 0 ? -				remap_to_cache(cache, bio, lookup_result.cblock) : -				remap_to_origin_clear_discard(cache, bio, block); -			cell_defer(cache, cell, false); -		} else { +		if (is_writethrough_io(cache, bio, lookup_result.cblock)) +			remap_to_origin_then_cache(cache, bio, block, lookup_result.cblock); +		else  			remap_to_cache_dirty(cache, bio, block, lookup_result.cblock); -			cell_defer(cache, cell, false); -		} + +		cell_defer(cache, cell, false);  		break;  	case POLICY_MISS: @@ -2319,8 +2369,7 @@ static int cache_preresume(struct dm_target *ti)  	}  	if (!cache->loaded_mappings) { -		r = dm_cache_load_mappings(cache->cmd, -					   dm_cache_policy_get_name(cache->policy), +		r = dm_cache_load_mappings(cache->cmd, cache->policy,  					   load_mapping, cache);  		if (r) {  			DMERR("could not load cache mappings"); @@ -2535,7 +2584,7 @@ static void cache_io_hints(struct dm_target *ti, struct queue_limits *limits)  static struct target_type cache_target = {  	.name = "cache", -	.version = {1, 0, 0}, +	.version = {1, 1, 0},  	.module = THIS_MODULE,  	.ctr = cache_ctr,  	.dtr = cache_dtr, diff --git a/drivers/md/dm-thin.c b/drivers/md/dm-thin.c index 009339d6282..004ad1652b7 100644 --- a/drivers/md/dm-thin.c +++ b/drivers/md/dm-thin.c @@ -1577,6 +1577,11 @@ static bool data_dev_supports_discard(struct pool_c *pt)  	return q && blk_queue_discard(q);  } +static bool is_factor(sector_t block_size, uint32_t n) +{ +	return !sector_div(block_size, n); +} +  /*   * If discard_passdown was enabled verify that the data device   * supports discards.  Disable discard_passdown if not. @@ -1602,7 +1607,7 @@ static void disable_passdown_if_not_supported(struct pool_c *pt)  	else if (data_limits->discard_granularity > block_size)  		reason = "discard granularity larger than a block"; -	else if (block_size & (data_limits->discard_granularity - 1)) +	else if (!is_factor(block_size, data_limits->discard_granularity))  		reason = "discard granularity not a factor of block size";  	if (reason) { @@ -2544,7 +2549,7 @@ static struct target_type pool_target = {  	.name = "thin-pool",  	.features = DM_TARGET_SINGLETON | DM_TARGET_ALWAYS_WRITEABLE |  		    DM_TARGET_IMMUTABLE, -	.version = {1, 6, 1}, +	.version = {1, 7, 0},  	.module = THIS_MODULE,  	.ctr = pool_ctr,  	.dtr = pool_dtr, @@ -2831,7 +2836,7 @@ static int thin_iterate_devices(struct dm_target *ti,  static struct target_type thin_target = {  	.name = "thin", -	.version = {1, 7, 1}, +	.version = {1, 8, 0},  	.module	= THIS_MODULE,  	.ctr = thin_ctr,  	.dtr = thin_dtr, diff --git a/drivers/md/dm-verity.c b/drivers/md/dm-verity.c index 6ad538375c3..a746f1d21c6 100644 --- a/drivers/md/dm-verity.c +++ b/drivers/md/dm-verity.c @@ -93,6 +93,13 @@ struct dm_verity_io {  	 */  }; +struct dm_verity_prefetch_work { +	struct work_struct work; +	struct dm_verity *v; +	sector_t block; +	unsigned n_blocks; +}; +  static struct shash_desc *io_hash_desc(struct dm_verity *v, struct dm_verity_io *io)  {  	return (struct shash_desc *)(io + 1); @@ -424,15 +431,18 @@ static void verity_end_io(struct bio *bio, int error)   * The root buffer is not prefetched, it is assumed that it will be cached   * all the time.   */ -static void verity_prefetch_io(struct dm_verity *v, struct dm_verity_io *io) +static void verity_prefetch_io(struct work_struct *work)  { +	struct dm_verity_prefetch_work *pw = +		container_of(work, struct dm_verity_prefetch_work, work); +	struct dm_verity *v = pw->v;  	int i;  	for (i = v->levels - 2; i >= 0; i--) {  		sector_t hash_block_start;  		sector_t hash_block_end; -		verity_hash_at_level(v, io->block, i, &hash_block_start, NULL); -		verity_hash_at_level(v, io->block + io->n_blocks - 1, i, &hash_block_end, NULL); +		verity_hash_at_level(v, pw->block, i, &hash_block_start, NULL); +		verity_hash_at_level(v, pw->block + pw->n_blocks - 1, i, &hash_block_end, NULL);  		if (!i) {  			unsigned cluster = ACCESS_ONCE(dm_verity_prefetch_cluster); @@ -452,6 +462,25 @@ no_prefetch_cluster:  		dm_bufio_prefetch(v->bufio, hash_block_start,  				  hash_block_end - hash_block_start + 1);  	} + +	kfree(pw); +} + +static void verity_submit_prefetch(struct dm_verity *v, struct dm_verity_io *io) +{ +	struct dm_verity_prefetch_work *pw; + +	pw = kmalloc(sizeof(struct dm_verity_prefetch_work), +		GFP_NOIO | __GFP_NORETRY | __GFP_NOMEMALLOC | __GFP_NOWARN); + +	if (!pw) +		return; + +	INIT_WORK(&pw->work, verity_prefetch_io); +	pw->v = v; +	pw->block = io->block; +	pw->n_blocks = io->n_blocks; +	queue_work(v->verify_wq, &pw->work);  }  /* @@ -498,7 +527,7 @@ static int verity_map(struct dm_target *ti, struct bio *bio)  	memcpy(io->io_vec, bio_iovec(bio),  	       io->io_vec_size * sizeof(struct bio_vec)); -	verity_prefetch_io(v, io); +	verity_submit_prefetch(v, io);  	generic_make_request(bio); @@ -858,7 +887,7 @@ bad:  static struct target_type verity_target = {  	.name		= "verity", -	.version	= {1, 1, 1}, +	.version	= {1, 2, 0},  	.module		= THIS_MODULE,  	.ctr		= verity_ctr,  	.dtr		= verity_dtr, diff --git a/drivers/md/md.c b/drivers/md/md.c index fcb878f8879..aeceedfc530 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -7663,10 +7663,8 @@ static int remove_and_add_spares(struct mddev *mddev)  				removed++;  			}  		} -	if (removed) -		sysfs_notify(&mddev->kobj, NULL, -			     "degraded"); - +	if (removed && mddev->kobj.sd) +		sysfs_notify(&mddev->kobj, NULL, "degraded");  	rdev_for_each(rdev, mddev) {  		if (rdev->raid_disk >= 0 && diff --git a/drivers/md/md.h b/drivers/md/md.h index eca59c3074e..d90fb1a879e 100644 --- a/drivers/md/md.h +++ b/drivers/md/md.h @@ -506,7 +506,7 @@ static inline char * mdname (struct mddev * mddev)  static inline int sysfs_link_rdev(struct mddev *mddev, struct md_rdev *rdev)  {  	char nm[20]; -	if (!test_bit(Replacement, &rdev->flags)) { +	if (!test_bit(Replacement, &rdev->flags) && mddev->kobj.sd) {  		sprintf(nm, "rd%d", rdev->raid_disk);  		return sysfs_create_link(&mddev->kobj, &rdev->kobj, nm);  	} else @@ -516,7 +516,7 @@ static inline int sysfs_link_rdev(struct mddev *mddev, struct md_rdev *rdev)  static inline void sysfs_unlink_rdev(struct mddev *mddev, struct md_rdev *rdev)  {  	char nm[20]; -	if (!test_bit(Replacement, &rdev->flags)) { +	if (!test_bit(Replacement, &rdev->flags) && mddev->kobj.sd) {  		sprintf(nm, "rd%d", rdev->raid_disk);  		sysfs_remove_link(&mddev->kobj, nm);  	} diff --git a/drivers/md/persistent-data/dm-btree-remove.c b/drivers/md/persistent-data/dm-btree-remove.c index c4f28133ef8..b88757cd0d1 100644 --- a/drivers/md/persistent-data/dm-btree-remove.c +++ b/drivers/md/persistent-data/dm-btree-remove.c @@ -139,15 +139,8 @@ struct child {  	struct btree_node *n;  }; -static struct dm_btree_value_type le64_type = { -	.context = NULL, -	.size = sizeof(__le64), -	.inc = NULL, -	.dec = NULL, -	.equal = NULL -}; - -static int init_child(struct dm_btree_info *info, struct btree_node *parent, +static int init_child(struct dm_btree_info *info, struct dm_btree_value_type *vt, +		      struct btree_node *parent,  		      unsigned index, struct child *result)  {  	int r, inc; @@ -164,7 +157,7 @@ static int init_child(struct dm_btree_info *info, struct btree_node *parent,  	result->n = dm_block_data(result->block);  	if (inc) -		inc_children(info->tm, result->n, &le64_type); +		inc_children(info->tm, result->n, vt);  	*((__le64 *) value_ptr(parent, index)) =  		cpu_to_le64(dm_block_location(result->block)); @@ -236,7 +229,7 @@ static void __rebalance2(struct dm_btree_info *info, struct btree_node *parent,  }  static int rebalance2(struct shadow_spine *s, struct dm_btree_info *info, -		      unsigned left_index) +		      struct dm_btree_value_type *vt, unsigned left_index)  {  	int r;  	struct btree_node *parent; @@ -244,11 +237,11 @@ static int rebalance2(struct shadow_spine *s, struct dm_btree_info *info,  	parent = dm_block_data(shadow_current(s)); -	r = init_child(info, parent, left_index, &left); +	r = init_child(info, vt, parent, left_index, &left);  	if (r)  		return r; -	r = init_child(info, parent, left_index + 1, &right); +	r = init_child(info, vt, parent, left_index + 1, &right);  	if (r) {  		exit_child(info, &left);  		return r; @@ -368,7 +361,7 @@ static void __rebalance3(struct dm_btree_info *info, struct btree_node *parent,  }  static int rebalance3(struct shadow_spine *s, struct dm_btree_info *info, -		      unsigned left_index) +		      struct dm_btree_value_type *vt, unsigned left_index)  {  	int r;  	struct btree_node *parent = dm_block_data(shadow_current(s)); @@ -377,17 +370,17 @@ static int rebalance3(struct shadow_spine *s, struct dm_btree_info *info,  	/*  	 * FIXME: fill out an array?  	 */ -	r = init_child(info, parent, left_index, &left); +	r = init_child(info, vt, parent, left_index, &left);  	if (r)  		return r; -	r = init_child(info, parent, left_index + 1, ¢er); +	r = init_child(info, vt, parent, left_index + 1, ¢er);  	if (r) {  		exit_child(info, &left);  		return r;  	} -	r = init_child(info, parent, left_index + 2, &right); +	r = init_child(info, vt, parent, left_index + 2, &right);  	if (r) {  		exit_child(info, &left);  		exit_child(info, ¢er); @@ -434,7 +427,8 @@ static int get_nr_entries(struct dm_transaction_manager *tm,  }  static int rebalance_children(struct shadow_spine *s, -			      struct dm_btree_info *info, uint64_t key) +			      struct dm_btree_info *info, +			      struct dm_btree_value_type *vt, uint64_t key)  {  	int i, r, has_left_sibling, has_right_sibling;  	uint32_t child_entries; @@ -472,13 +466,13 @@ static int rebalance_children(struct shadow_spine *s,  	has_right_sibling = i < (le32_to_cpu(n->header.nr_entries) - 1);  	if (!has_left_sibling) -		r = rebalance2(s, info, i); +		r = rebalance2(s, info, vt, i);  	else if (!has_right_sibling) -		r = rebalance2(s, info, i - 1); +		r = rebalance2(s, info, vt, i - 1);  	else -		r = rebalance3(s, info, i - 1); +		r = rebalance3(s, info, vt, i - 1);  	return r;  } @@ -529,7 +523,7 @@ static int remove_raw(struct shadow_spine *s, struct dm_btree_info *info,  		if (le32_to_cpu(n->header.flags) & LEAF_NODE)  			return do_leaf(n, key, index); -		r = rebalance_children(s, info, key); +		r = rebalance_children(s, info, vt, key);  		if (r)  			break; @@ -550,6 +544,14 @@ static int remove_raw(struct shadow_spine *s, struct dm_btree_info *info,  	return r;  } +static struct dm_btree_value_type le64_type = { +	.context = NULL, +	.size = sizeof(__le64), +	.inc = NULL, +	.dec = NULL, +	.equal = NULL +}; +  int dm_btree_remove(struct dm_btree_info *info, dm_block_t root,  		    uint64_t *keys, dm_block_t *new_root)  { diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c index 3ee2912889e..24909eb13fe 100644 --- a/drivers/md/raid5.c +++ b/drivers/md/raid5.c @@ -671,9 +671,11 @@ static void ops_run_io(struct stripe_head *sh, struct stripe_head_state *s)  			bi->bi_next = NULL;  			if (rrdev)  				set_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags); -			trace_block_bio_remap(bdev_get_queue(bi->bi_bdev), -					      bi, disk_devt(conf->mddev->gendisk), -					      sh->dev[i].sector); + +			if (conf->mddev->gendisk) +				trace_block_bio_remap(bdev_get_queue(bi->bi_bdev), +						      bi, disk_devt(conf->mddev->gendisk), +						      sh->dev[i].sector);  			generic_make_request(bi);  		}  		if (rrdev) { @@ -701,9 +703,10 @@ static void ops_run_io(struct stripe_head *sh, struct stripe_head_state *s)  			rbi->bi_io_vec[0].bv_offset = 0;  			rbi->bi_size = STRIPE_SIZE;  			rbi->bi_next = NULL; -			trace_block_bio_remap(bdev_get_queue(rbi->bi_bdev), -					      rbi, disk_devt(conf->mddev->gendisk), -					      sh->dev[i].sector); +			if (conf->mddev->gendisk) +				trace_block_bio_remap(bdev_get_queue(rbi->bi_bdev), +						      rbi, disk_devt(conf->mddev->gendisk), +						      sh->dev[i].sector);  			generic_make_request(rbi);  		}  		if (!rdev && !rrdev) { @@ -2280,17 +2283,6 @@ schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,  	int level = conf->level;  	if (rcw) { -		/* if we are not expanding this is a proper write request, and -		 * there will be bios with new data to be drained into the -		 * stripe cache -		 */ -		if (!expand) { -			sh->reconstruct_state = reconstruct_state_drain_run; -			set_bit(STRIPE_OP_BIODRAIN, &s->ops_request); -		} else -			sh->reconstruct_state = reconstruct_state_run; - -		set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);  		for (i = disks; i--; ) {  			struct r5dev *dev = &sh->dev[i]; @@ -2303,6 +2295,21 @@ schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,  				s->locked++;  			}  		} +		/* if we are not expanding this is a proper write request, and +		 * there will be bios with new data to be drained into the +		 * stripe cache +		 */ +		if (!expand) { +			if (!s->locked) +				/* False alarm, nothing to do */ +				return; +			sh->reconstruct_state = reconstruct_state_drain_run; +			set_bit(STRIPE_OP_BIODRAIN, &s->ops_request); +		} else +			sh->reconstruct_state = reconstruct_state_run; + +		set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request); +  		if (s->locked + conf->max_degraded == disks)  			if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))  				atomic_inc(&conf->pending_full_writes); @@ -2311,11 +2318,6 @@ schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,  		BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||  			test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags))); -		sh->reconstruct_state = reconstruct_state_prexor_drain_run; -		set_bit(STRIPE_OP_PREXOR, &s->ops_request); -		set_bit(STRIPE_OP_BIODRAIN, &s->ops_request); -		set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request); -  		for (i = disks; i--; ) {  			struct r5dev *dev = &sh->dev[i];  			if (i == pd_idx) @@ -2330,6 +2332,13 @@ schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,  				s->locked++;  			}  		} +		if (!s->locked) +			/* False alarm - nothing to do */ +			return; +		sh->reconstruct_state = reconstruct_state_prexor_drain_run; +		set_bit(STRIPE_OP_PREXOR, &s->ops_request); +		set_bit(STRIPE_OP_BIODRAIN, &s->ops_request); +		set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);  	}  	/* keep the parity disk(s) locked while asynchronous operations @@ -2564,6 +2573,8 @@ handle_failed_sync(struct r5conf *conf, struct stripe_head *sh,  	int i;  	clear_bit(STRIPE_SYNCING, &sh->state); +	if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags)) +		wake_up(&conf->wait_for_overlap);  	s->syncing = 0;  	s->replacing = 0;  	/* There is nothing more to do for sync/check/repair. @@ -2737,6 +2748,7 @@ static void handle_stripe_clean_event(struct r5conf *conf,  {  	int i;  	struct r5dev *dev; +	int discard_pending = 0;  	for (i = disks; i--; )  		if (sh->dev[i].written) { @@ -2765,9 +2777,23 @@ static void handle_stripe_clean_event(struct r5conf *conf,  						STRIPE_SECTORS,  					 !test_bit(STRIPE_DEGRADED, &sh->state),  						0); -			} -		} else if (test_bit(R5_Discard, &sh->dev[i].flags)) -			clear_bit(R5_Discard, &sh->dev[i].flags); +			} else if (test_bit(R5_Discard, &dev->flags)) +				discard_pending = 1; +		} +	if (!discard_pending && +	    test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags)) { +		clear_bit(R5_Discard, &sh->dev[sh->pd_idx].flags); +		clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags); +		if (sh->qd_idx >= 0) { +			clear_bit(R5_Discard, &sh->dev[sh->qd_idx].flags); +			clear_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags); +		} +		/* now that discard is done we can proceed with any sync */ +		clear_bit(STRIPE_DISCARD, &sh->state); +		if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state)) +			set_bit(STRIPE_HANDLE, &sh->state); + +	}  	if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))  		if (atomic_dec_and_test(&conf->pending_full_writes)) @@ -2826,8 +2852,10 @@ static void handle_stripe_dirtying(struct r5conf *conf,  	set_bit(STRIPE_HANDLE, &sh->state);  	if (rmw < rcw && rmw > 0) {  		/* prefer read-modify-write, but need to get some data */ -		blk_add_trace_msg(conf->mddev->queue, "raid5 rmw %llu %d", -				  (unsigned long long)sh->sector, rmw); +		if (conf->mddev->queue) +			blk_add_trace_msg(conf->mddev->queue, +					  "raid5 rmw %llu %d", +					  (unsigned long long)sh->sector, rmw);  		for (i = disks; i--; ) {  			struct r5dev *dev = &sh->dev[i];  			if ((dev->towrite || i == sh->pd_idx) && @@ -2877,7 +2905,7 @@ static void handle_stripe_dirtying(struct r5conf *conf,  				}  			}  		} -		if (rcw) +		if (rcw && conf->mddev->queue)  			blk_add_trace_msg(conf->mddev->queue, "raid5 rcw %llu %d %d %d",  					  (unsigned long long)sh->sector,  					  rcw, qread, test_bit(STRIPE_DELAYED, &sh->state)); @@ -3417,9 +3445,15 @@ static void handle_stripe(struct stripe_head *sh)  		return;  	} -	if (test_and_clear_bit(STRIPE_SYNC_REQUESTED, &sh->state)) { -		set_bit(STRIPE_SYNCING, &sh->state); -		clear_bit(STRIPE_INSYNC, &sh->state); +	if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state)) { +		spin_lock(&sh->stripe_lock); +		/* Cannot process 'sync' concurrently with 'discard' */ +		if (!test_bit(STRIPE_DISCARD, &sh->state) && +		    test_and_clear_bit(STRIPE_SYNC_REQUESTED, &sh->state)) { +			set_bit(STRIPE_SYNCING, &sh->state); +			clear_bit(STRIPE_INSYNC, &sh->state); +		} +		spin_unlock(&sh->stripe_lock);  	}  	clear_bit(STRIPE_DELAYED, &sh->state); @@ -3579,6 +3613,8 @@ static void handle_stripe(struct stripe_head *sh)  	    test_bit(STRIPE_INSYNC, &sh->state)) {  		md_done_sync(conf->mddev, STRIPE_SECTORS, 1);  		clear_bit(STRIPE_SYNCING, &sh->state); +		if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags)) +			wake_up(&conf->wait_for_overlap);  	}  	/* If the failed drives are just a ReadError, then we might need @@ -3982,9 +4018,10 @@ static int chunk_aligned_read(struct mddev *mddev, struct bio * raid_bio)  		atomic_inc(&conf->active_aligned_reads);  		spin_unlock_irq(&conf->device_lock); -		trace_block_bio_remap(bdev_get_queue(align_bi->bi_bdev), -				      align_bi, disk_devt(mddev->gendisk), -				      raid_bio->bi_sector); +		if (mddev->gendisk) +			trace_block_bio_remap(bdev_get_queue(align_bi->bi_bdev), +					      align_bi, disk_devt(mddev->gendisk), +					      raid_bio->bi_sector);  		generic_make_request(align_bi);  		return 1;  	} else { @@ -4078,7 +4115,8 @@ static void raid5_unplug(struct blk_plug_cb *blk_cb, bool from_schedule)  		}  		spin_unlock_irq(&conf->device_lock);  	} -	trace_block_unplug(mddev->queue, cnt, !from_schedule); +	if (mddev->queue) +		trace_block_unplug(mddev->queue, cnt, !from_schedule);  	kfree(cb);  } @@ -4141,6 +4179,13 @@ static void make_discard_request(struct mddev *mddev, struct bio *bi)  		sh = get_active_stripe(conf, logical_sector, 0, 0, 0);  		prepare_to_wait(&conf->wait_for_overlap, &w,  				TASK_UNINTERRUPTIBLE); +		set_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags); +		if (test_bit(STRIPE_SYNCING, &sh->state)) { +			release_stripe(sh); +			schedule(); +			goto again; +		} +		clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);  		spin_lock_irq(&sh->stripe_lock);  		for (d = 0; d < conf->raid_disks; d++) {  			if (d == sh->pd_idx || d == sh->qd_idx) @@ -4153,6 +4198,7 @@ static void make_discard_request(struct mddev *mddev, struct bio *bi)  				goto again;  			}  		} +		set_bit(STRIPE_DISCARD, &sh->state);  		finish_wait(&conf->wait_for_overlap, &w);  		for (d = 0; d < conf->raid_disks; d++) {  			if (d == sh->pd_idx || d == sh->qd_idx) diff --git a/drivers/md/raid5.h b/drivers/md/raid5.h index 18b2c4a8a1f..b0b663b119a 100644 --- a/drivers/md/raid5.h +++ b/drivers/md/raid5.h @@ -221,10 +221,6 @@ struct stripe_head {  	struct stripe_operations {  		int 		     target, target2;  		enum sum_check_flags zero_sum_result; -		#ifdef CONFIG_MULTICORE_RAID456 -		unsigned long	     request; -		wait_queue_head_t    wait_for_ops; -		#endif  	} ops;  	struct r5dev {  		/* rreq and rvec are used for the replacement device when @@ -323,6 +319,7 @@ enum {  	STRIPE_COMPUTE_RUN,  	STRIPE_OPS_REQ_PENDING,  	STRIPE_ON_UNPLUG_LIST, +	STRIPE_DISCARD,  };  /* diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig index 671f5b171c7..c346941a251 100644 --- a/drivers/mfd/Kconfig +++ b/drivers/mfd/Kconfig @@ -858,6 +858,7 @@ config EZX_PCAP  config AB8500_CORE  	bool "ST-Ericsson AB8500 Mixed Signal Power Management chip"  	depends on GENERIC_HARDIRQS && ABX500_CORE && MFD_DB8500_PRCMU +	select POWER_SUPPLY  	select MFD_CORE  	select IRQ_DOMAIN  	help diff --git a/drivers/mfd/ab8500-gpadc.c b/drivers/mfd/ab8500-gpadc.c index b1f3561b023..5f341a50ee5 100644 --- a/drivers/mfd/ab8500-gpadc.c +++ b/drivers/mfd/ab8500-gpadc.c @@ -594,9 +594,12 @@ static int ab8500_gpadc_runtime_suspend(struct device *dev)  static int ab8500_gpadc_runtime_resume(struct device *dev)  {  	struct ab8500_gpadc *gpadc = dev_get_drvdata(dev); +	int ret; -	regulator_enable(gpadc->regu); -	return 0; +	ret = regulator_enable(gpadc->regu); +	if (ret) +		dev_err(dev, "Failed to enable vtvout LDO: %d\n", ret); +	return ret;  }  static int ab8500_gpadc_runtime_idle(struct device *dev) @@ -643,7 +646,7 @@ static int ab8500_gpadc_probe(struct platform_device *pdev)  	}  	/* VTVout LDO used to power up ab8500-GPADC */ -	gpadc->regu = regulator_get(&pdev->dev, "vddadc"); +	gpadc->regu = devm_regulator_get(&pdev->dev, "vddadc");  	if (IS_ERR(gpadc->regu)) {  		ret = PTR_ERR(gpadc->regu);  		dev_err(gpadc->dev, "failed to get vtvout LDO\n"); @@ -652,7 +655,11 @@ static int ab8500_gpadc_probe(struct platform_device *pdev)  	platform_set_drvdata(pdev, gpadc); -	regulator_enable(gpadc->regu); +	ret = regulator_enable(gpadc->regu); +	if (ret) { +		dev_err(gpadc->dev, "Failed to enable vtvout LDO: %d\n", ret); +		goto fail_enable; +	}  	pm_runtime_set_autosuspend_delay(gpadc->dev, GPADC_AUDOSUSPEND_DELAY);  	pm_runtime_use_autosuspend(gpadc->dev); @@ -663,6 +670,8 @@ static int ab8500_gpadc_probe(struct platform_device *pdev)  	list_add_tail(&gpadc->node, &ab8500_gpadc_list);  	dev_dbg(gpadc->dev, "probe success\n");  	return 0; + +fail_enable:  fail_irq:  	free_irq(gpadc->irq, gpadc);  fail: diff --git a/drivers/mfd/omap-usb-host.c b/drivers/mfd/omap-usb-host.c index 6b5edf64de2..4febc5c7fde 100644 --- a/drivers/mfd/omap-usb-host.c +++ b/drivers/mfd/omap-usb-host.c @@ -460,15 +460,15 @@ static void omap_usbhs_init(struct device *dev)  	switch (omap->usbhs_rev) {  	case OMAP_USBHS_REV1: -		omap_usbhs_rev1_hostconfig(omap, reg); +		reg = omap_usbhs_rev1_hostconfig(omap, reg);  		break;  	case OMAP_USBHS_REV2: -		omap_usbhs_rev2_hostconfig(omap, reg); +		reg = omap_usbhs_rev2_hostconfig(omap, reg);  		break;  	default:	/* newer revisions */ -		omap_usbhs_rev2_hostconfig(omap, reg); +		reg = omap_usbhs_rev2_hostconfig(omap, reg);  		break;  	} diff --git a/drivers/mfd/palmas.c b/drivers/mfd/palmas.c index bbdbc50a3cc..73bf76df104 100644 --- a/drivers/mfd/palmas.c +++ b/drivers/mfd/palmas.c @@ -257,9 +257,24 @@ static struct regmap_irq_chip palmas_irq_chip = {  			PALMAS_INT1_MASK),  }; -static void palmas_dt_to_pdata(struct device_node *node, +static int palmas_set_pdata_irq_flag(struct i2c_client *i2c,  		struct palmas_platform_data *pdata)  { +	struct irq_data *irq_data = irq_get_irq_data(i2c->irq); +	if (!irq_data) { +		dev_err(&i2c->dev, "Invalid IRQ: %d\n", i2c->irq); +		return -EINVAL; +	} + +	pdata->irq_flags = irqd_get_trigger_type(irq_data); +	dev_info(&i2c->dev, "Irq flag is 0x%08x\n", pdata->irq_flags); +	return 0; +} + +static void palmas_dt_to_pdata(struct i2c_client *i2c, +		struct palmas_platform_data *pdata) +{ +	struct device_node *node = i2c->dev.of_node;  	int ret;  	u32 prop; @@ -283,6 +298,8 @@ static void palmas_dt_to_pdata(struct device_node *node,  		pdata->power_ctrl = PALMAS_POWER_CTRL_NSLEEP_MASK |  					PALMAS_POWER_CTRL_ENABLE1_MASK |  					PALMAS_POWER_CTRL_ENABLE2_MASK; +	if (i2c->irq) +		palmas_set_pdata_irq_flag(i2c, pdata);  }  static int palmas_i2c_probe(struct i2c_client *i2c, @@ -304,7 +321,7 @@ static int palmas_i2c_probe(struct i2c_client *i2c,  		if (!pdata)  			return -ENOMEM; -		palmas_dt_to_pdata(node, pdata); +		palmas_dt_to_pdata(i2c, pdata);  	}  	if (!pdata) @@ -344,6 +361,19 @@ static int palmas_i2c_probe(struct i2c_client *i2c,  		}  	} +	/* Change interrupt line output polarity */ +	if (pdata->irq_flags & IRQ_TYPE_LEVEL_HIGH) +		reg = PALMAS_POLARITY_CTRL_INT_POLARITY; +	else +		reg = 0; +	ret = palmas_update_bits(palmas, PALMAS_PU_PD_OD_BASE, +			PALMAS_POLARITY_CTRL, PALMAS_POLARITY_CTRL_INT_POLARITY, +			reg); +	if (ret < 0) { +		dev_err(palmas->dev, "POLARITY_CTRL updat failed: %d\n", ret); +		goto err; +	} +  	/* Change IRQ into clear on read mode for efficiency */  	slave = PALMAS_BASE_TO_SLAVE(PALMAS_INTERRUPT_BASE);  	addr = PALMAS_BASE_TO_REG(PALMAS_INTERRUPT_BASE, PALMAS_INT_CTRL); @@ -352,7 +382,7 @@ static int palmas_i2c_probe(struct i2c_client *i2c,  	regmap_write(palmas->regmap[slave], addr, reg);  	ret = regmap_add_irq_chip(palmas->regmap[slave], palmas->irq, -			IRQF_ONESHOT | IRQF_TRIGGER_LOW, 0, &palmas_irq_chip, +			IRQF_ONESHOT | pdata->irq_flags, 0, &palmas_irq_chip,  			&palmas->irq_data);  	if (ret < 0)  		goto err; diff --git a/drivers/mfd/tps65912-core.c b/drivers/mfd/tps65912-core.c index 4658b5bdcd8..aeb8e40ab42 100644 --- a/drivers/mfd/tps65912-core.c +++ b/drivers/mfd/tps65912-core.c @@ -169,6 +169,7 @@ err:  void tps65912_device_exit(struct tps65912 *tps65912)  {  	mfd_remove_devices(tps65912->dev); +	tps65912_irq_exit(tps65912);  	kfree(tps65912);  } diff --git a/drivers/mfd/twl4030-audio.c b/drivers/mfd/twl4030-audio.c index e16edca9267..d2ab222138c 100644 --- a/drivers/mfd/twl4030-audio.c +++ b/drivers/mfd/twl4030-audio.c @@ -118,7 +118,7 @@ EXPORT_SYMBOL_GPL(twl4030_audio_enable_resource);   * Disable the resource.   * The function returns with error or the content of the register   */ -int twl4030_audio_disable_resource(unsigned id) +int twl4030_audio_disable_resource(enum twl4030_audio_res id)  {  	struct twl4030_audio *audio = platform_get_drvdata(twl4030_audio_dev);  	int val; diff --git a/drivers/mfd/twl4030-madc.c b/drivers/mfd/twl4030-madc.c index 88ff9dc8330..942b666a2a0 100644 --- a/drivers/mfd/twl4030-madc.c +++ b/drivers/mfd/twl4030-madc.c @@ -800,7 +800,7 @@ static int twl4030_madc_remove(struct platform_device *pdev)  static struct platform_driver twl4030_madc_driver = {  	.probe = twl4030_madc_probe, -	.remove = __exit_p(twl4030_madc_remove), +	.remove = twl4030_madc_remove,  	.driver = {  		   .name = "twl4030_madc",  		   .owner = THIS_MODULE, diff --git a/drivers/mmc/host/s3cmci.c b/drivers/mmc/host/s3cmci.c index 63fb265e0da..8d6794cdf89 100644 --- a/drivers/mmc/host/s3cmci.c +++ b/drivers/mmc/host/s3cmci.c @@ -25,14 +25,93 @@  #include <mach/dma.h> -#include <mach/regs-sdi.h> -  #include <linux/platform_data/mmc-s3cmci.h>  #include "s3cmci.h"  #define DRIVER_NAME "s3c-mci" +#define S3C2410_SDICON			(0x00) +#define S3C2410_SDIPRE			(0x04) +#define S3C2410_SDICMDARG		(0x08) +#define S3C2410_SDICMDCON		(0x0C) +#define S3C2410_SDICMDSTAT		(0x10) +#define S3C2410_SDIRSP0			(0x14) +#define S3C2410_SDIRSP1			(0x18) +#define S3C2410_SDIRSP2			(0x1C) +#define S3C2410_SDIRSP3			(0x20) +#define S3C2410_SDITIMER		(0x24) +#define S3C2410_SDIBSIZE		(0x28) +#define S3C2410_SDIDCON			(0x2C) +#define S3C2410_SDIDCNT			(0x30) +#define S3C2410_SDIDSTA			(0x34) +#define S3C2410_SDIFSTA			(0x38) + +#define S3C2410_SDIDATA			(0x3C) +#define S3C2410_SDIIMSK			(0x40) + +#define S3C2440_SDIDATA			(0x40) +#define S3C2440_SDIIMSK			(0x3C) + +#define S3C2440_SDICON_SDRESET		(1 << 8) +#define S3C2410_SDICON_SDIOIRQ		(1 << 3) +#define S3C2410_SDICON_FIFORESET	(1 << 1) +#define S3C2410_SDICON_CLOCKTYPE	(1 << 0) + +#define S3C2410_SDICMDCON_LONGRSP	(1 << 10) +#define S3C2410_SDICMDCON_WAITRSP	(1 << 9) +#define S3C2410_SDICMDCON_CMDSTART	(1 << 8) +#define S3C2410_SDICMDCON_SENDERHOST	(1 << 6) +#define S3C2410_SDICMDCON_INDEX		(0x3f) + +#define S3C2410_SDICMDSTAT_CRCFAIL	(1 << 12) +#define S3C2410_SDICMDSTAT_CMDSENT	(1 << 11) +#define S3C2410_SDICMDSTAT_CMDTIMEOUT	(1 << 10) +#define S3C2410_SDICMDSTAT_RSPFIN	(1 << 9) + +#define S3C2440_SDIDCON_DS_WORD		(2 << 22) +#define S3C2410_SDIDCON_TXAFTERRESP	(1 << 20) +#define S3C2410_SDIDCON_RXAFTERCMD	(1 << 19) +#define S3C2410_SDIDCON_BLOCKMODE	(1 << 17) +#define S3C2410_SDIDCON_WIDEBUS		(1 << 16) +#define S3C2410_SDIDCON_DMAEN		(1 << 15) +#define S3C2410_SDIDCON_STOP		(1 << 14) +#define S3C2440_SDIDCON_DATSTART	(1 << 14) + +#define S3C2410_SDIDCON_XFER_RXSTART	(2 << 12) +#define S3C2410_SDIDCON_XFER_TXSTART	(3 << 12) + +#define S3C2410_SDIDCON_BLKNUM_MASK	(0xFFF) + +#define S3C2410_SDIDSTA_SDIOIRQDETECT	(1 << 9) +#define S3C2410_SDIDSTA_FIFOFAIL	(1 << 8) +#define S3C2410_SDIDSTA_CRCFAIL		(1 << 7) +#define S3C2410_SDIDSTA_RXCRCFAIL	(1 << 6) +#define S3C2410_SDIDSTA_DATATIMEOUT	(1 << 5) +#define S3C2410_SDIDSTA_XFERFINISH	(1 << 4) +#define S3C2410_SDIDSTA_TXDATAON	(1 << 1) +#define S3C2410_SDIDSTA_RXDATAON	(1 << 0) + +#define S3C2440_SDIFSTA_FIFORESET	(1 << 16) +#define S3C2440_SDIFSTA_FIFOFAIL	(3 << 14) +#define S3C2410_SDIFSTA_TFDET		(1 << 13) +#define S3C2410_SDIFSTA_RFDET		(1 << 12) +#define S3C2410_SDIFSTA_COUNTMASK	(0x7f) + +#define S3C2410_SDIIMSK_RESPONSECRC	(1 << 17) +#define S3C2410_SDIIMSK_CMDSENT		(1 << 16) +#define S3C2410_SDIIMSK_CMDTIMEOUT	(1 << 15) +#define S3C2410_SDIIMSK_RESPONSEND	(1 << 14) +#define S3C2410_SDIIMSK_SDIOIRQ		(1 << 12) +#define S3C2410_SDIIMSK_FIFOFAIL	(1 << 11) +#define S3C2410_SDIIMSK_CRCSTATUS	(1 << 10) +#define S3C2410_SDIIMSK_DATACRC		(1 << 9) +#define S3C2410_SDIIMSK_DATATIMEOUT	(1 << 8) +#define S3C2410_SDIIMSK_DATAFINISH	(1 << 7) +#define S3C2410_SDIIMSK_TXFIFOHALF	(1 << 4) +#define S3C2410_SDIIMSK_RXFIFOLAST	(1 << 2) +#define S3C2410_SDIIMSK_RXFIFOHALF	(1 << 0) +  enum dbg_channels {  	dbg_err   = (1 << 0),  	dbg_debug = (1 << 1), diff --git a/drivers/mtd/bcm47xxpart.c b/drivers/mtd/bcm47xxpart.c index 63feb75cc8e..9279a9174f8 100644 --- a/drivers/mtd/bcm47xxpart.c +++ b/drivers/mtd/bcm47xxpart.c @@ -19,6 +19,12 @@  /* 10 parts were found on sflash on Netgear WNDR4500 */  #define BCM47XXPART_MAX_PARTS		12 +/* + * Amount of bytes we read when analyzing each block of flash memory. + * Set it big enough to allow detecting partition and reading important data. + */ +#define BCM47XXPART_BYTES_TO_READ	0x404 +  /* Magics */  #define BOARD_DATA_MAGIC		0x5246504D	/* MPFR */  #define POT_MAGIC1			0x54544f50	/* POTT */ @@ -57,17 +63,15 @@ static int bcm47xxpart_parse(struct mtd_info *master,  	struct trx_header *trx;  	int trx_part = -1;  	int last_trx_part = -1; -	int max_bytes_to_read = 0x8004; +	int possible_nvram_sizes[] = { 0x8000, 0xF000, 0x10000, };  	if (blocksize <= 0x10000)  		blocksize = 0x10000; -	if (blocksize == 0x20000) -		max_bytes_to_read = 0x18004;  	/* Alloc */  	parts = kzalloc(sizeof(struct mtd_partition) * BCM47XXPART_MAX_PARTS,  			GFP_KERNEL); -	buf = kzalloc(max_bytes_to_read, GFP_KERNEL); +	buf = kzalloc(BCM47XXPART_BYTES_TO_READ, GFP_KERNEL);  	/* Parse block by block looking for magics */  	for (offset = 0; offset <= master->size - blocksize; @@ -82,7 +86,7 @@ static int bcm47xxpart_parse(struct mtd_info *master,  		}  		/* Read beginning of the block */ -		if (mtd_read(master, offset, max_bytes_to_read, +		if (mtd_read(master, offset, BCM47XXPART_BYTES_TO_READ,  			     &bytes_read, (uint8_t *)buf) < 0) {  			pr_err("mtd_read error while parsing (offset: 0x%X)!\n",  			       offset); @@ -96,20 +100,6 @@ static int bcm47xxpart_parse(struct mtd_info *master,  			continue;  		} -		/* Standard NVRAM */ -		if (buf[0x000 / 4] == NVRAM_HEADER || -		    buf[0x1000 / 4] == NVRAM_HEADER || -		    buf[0x8000 / 4] == NVRAM_HEADER || -		    (blocksize == 0x20000 && ( -		      buf[0x10000 / 4] == NVRAM_HEADER || -		      buf[0x11000 / 4] == NVRAM_HEADER || -		      buf[0x18000 / 4] == NVRAM_HEADER))) { -			bcm47xxpart_add_part(&parts[curr_part++], "nvram", -					     offset, 0); -			offset = rounddown(offset, blocksize); -			continue; -		} -  		/*  		 * board_data starts with board_id which differs across boards,  		 * but we can use 'MPFR' (hopefully) magic at 0x100 @@ -178,6 +168,30 @@ static int bcm47xxpart_parse(struct mtd_info *master,  			continue;  		}  	} + +	/* Look for NVRAM at the end of the last block. */ +	for (i = 0; i < ARRAY_SIZE(possible_nvram_sizes); i++) { +		if (curr_part > BCM47XXPART_MAX_PARTS) { +			pr_warn("Reached maximum number of partitions, scanning stopped!\n"); +			break; +		} + +		offset = master->size - possible_nvram_sizes[i]; +		if (mtd_read(master, offset, 0x4, &bytes_read, +			     (uint8_t *)buf) < 0) { +			pr_err("mtd_read error while reading at offset 0x%X!\n", +			       offset); +			continue; +		} + +		/* Standard NVRAM */ +		if (buf[0] == NVRAM_HEADER) { +			bcm47xxpart_add_part(&parts[curr_part++], "nvram", +					     master->size - blocksize, 0); +			break; +		} +	} +  	kfree(buf);  	/* diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c index 43214151b88..42c63927609 100644 --- a/drivers/mtd/nand/nand_base.c +++ b/drivers/mtd/nand/nand_base.c @@ -1523,6 +1523,14 @@ static int nand_do_read_ops(struct mtd_info *mtd, loff_t from,  					oobreadlen -= toread;  				}  			} + +			if (chip->options & NAND_NEED_READRDY) { +				/* Apply delay or wait for ready/busy pin */ +				if (!chip->dev_ready) +					udelay(chip->chip_delay); +				else +					nand_wait_ready(mtd); +			}  		} else {  			memcpy(buf, chip->buffers->databuf + col, bytes);  			buf += bytes; @@ -1787,6 +1795,14 @@ static int nand_do_read_oob(struct mtd_info *mtd, loff_t from,  		len = min(len, readlen);  		buf = nand_transfer_oob(chip, buf, ops, len); +		if (chip->options & NAND_NEED_READRDY) { +			/* Apply delay or wait for ready/busy pin */ +			if (!chip->dev_ready) +				udelay(chip->chip_delay); +			else +				nand_wait_ready(mtd); +		} +  		readlen -= len;  		if (!readlen)  			break; diff --git a/drivers/mtd/nand/nand_ids.c b/drivers/mtd/nand/nand_ids.c index e3aa2748a6e..9c612388e5d 100644 --- a/drivers/mtd/nand/nand_ids.c +++ b/drivers/mtd/nand/nand_ids.c @@ -22,49 +22,51 @@  *	512	512 Byte page size  */  struct nand_flash_dev nand_flash_ids[] = { +#define SP_OPTIONS NAND_NEED_READRDY +#define SP_OPTIONS16 (SP_OPTIONS | NAND_BUSWIDTH_16)  #ifdef CONFIG_MTD_NAND_MUSEUM_IDS -	{"NAND 1MiB 5V 8-bit",		0x6e, 256, 1, 0x1000, 0}, -	{"NAND 2MiB 5V 8-bit",		0x64, 256, 2, 0x1000, 0}, -	{"NAND 4MiB 5V 8-bit",		0x6b, 512, 4, 0x2000, 0}, -	{"NAND 1MiB 3,3V 8-bit",	0xe8, 256, 1, 0x1000, 0}, -	{"NAND 1MiB 3,3V 8-bit",	0xec, 256, 1, 0x1000, 0}, -	{"NAND 2MiB 3,3V 8-bit",	0xea, 256, 2, 0x1000, 0}, -	{"NAND 4MiB 3,3V 8-bit",	0xd5, 512, 4, 0x2000, 0}, -	{"NAND 4MiB 3,3V 8-bit",	0xe3, 512, 4, 0x2000, 0}, -	{"NAND 4MiB 3,3V 8-bit",	0xe5, 512, 4, 0x2000, 0}, -	{"NAND 8MiB 3,3V 8-bit",	0xd6, 512, 8, 0x2000, 0}, +	{"NAND 1MiB 5V 8-bit",		0x6e, 256, 1, 0x1000, SP_OPTIONS}, +	{"NAND 2MiB 5V 8-bit",		0x64, 256, 2, 0x1000, SP_OPTIONS}, +	{"NAND 4MiB 5V 8-bit",		0x6b, 512, 4, 0x2000, SP_OPTIONS}, +	{"NAND 1MiB 3,3V 8-bit",	0xe8, 256, 1, 0x1000, SP_OPTIONS}, +	{"NAND 1MiB 3,3V 8-bit",	0xec, 256, 1, 0x1000, SP_OPTIONS}, +	{"NAND 2MiB 3,3V 8-bit",	0xea, 256, 2, 0x1000, SP_OPTIONS}, +	{"NAND 4MiB 3,3V 8-bit",	0xd5, 512, 4, 0x2000, SP_OPTIONS}, +	{"NAND 4MiB 3,3V 8-bit",	0xe3, 512, 4, 0x2000, SP_OPTIONS}, +	{"NAND 4MiB 3,3V 8-bit",	0xe5, 512, 4, 0x2000, SP_OPTIONS}, +	{"NAND 8MiB 3,3V 8-bit",	0xd6, 512, 8, 0x2000, SP_OPTIONS}, -	{"NAND 8MiB 1,8V 8-bit",	0x39, 512, 8, 0x2000, 0}, -	{"NAND 8MiB 3,3V 8-bit",	0xe6, 512, 8, 0x2000, 0}, -	{"NAND 8MiB 1,8V 16-bit",	0x49, 512, 8, 0x2000, NAND_BUSWIDTH_16}, -	{"NAND 8MiB 3,3V 16-bit",	0x59, 512, 8, 0x2000, NAND_BUSWIDTH_16}, +	{"NAND 8MiB 1,8V 8-bit",	0x39, 512, 8, 0x2000, SP_OPTIONS}, +	{"NAND 8MiB 3,3V 8-bit",	0xe6, 512, 8, 0x2000, SP_OPTIONS}, +	{"NAND 8MiB 1,8V 16-bit",	0x49, 512, 8, 0x2000, SP_OPTIONS16}, +	{"NAND 8MiB 3,3V 16-bit",	0x59, 512, 8, 0x2000, SP_OPTIONS16},  #endif -	{"NAND 16MiB 1,8V 8-bit",	0x33, 512, 16, 0x4000, 0}, -	{"NAND 16MiB 3,3V 8-bit",	0x73, 512, 16, 0x4000, 0}, -	{"NAND 16MiB 1,8V 16-bit",	0x43, 512, 16, 0x4000, NAND_BUSWIDTH_16}, -	{"NAND 16MiB 3,3V 16-bit",	0x53, 512, 16, 0x4000, NAND_BUSWIDTH_16}, +	{"NAND 16MiB 1,8V 8-bit",	0x33, 512, 16, 0x4000, SP_OPTIONS}, +	{"NAND 16MiB 3,3V 8-bit",	0x73, 512, 16, 0x4000, SP_OPTIONS}, +	{"NAND 16MiB 1,8V 16-bit",	0x43, 512, 16, 0x4000, SP_OPTIONS16}, +	{"NAND 16MiB 3,3V 16-bit",	0x53, 512, 16, 0x4000, SP_OPTIONS16}, -	{"NAND 32MiB 1,8V 8-bit",	0x35, 512, 32, 0x4000, 0}, -	{"NAND 32MiB 3,3V 8-bit",	0x75, 512, 32, 0x4000, 0}, -	{"NAND 32MiB 1,8V 16-bit",	0x45, 512, 32, 0x4000, NAND_BUSWIDTH_16}, -	{"NAND 32MiB 3,3V 16-bit",	0x55, 512, 32, 0x4000, NAND_BUSWIDTH_16}, +	{"NAND 32MiB 1,8V 8-bit",	0x35, 512, 32, 0x4000, SP_OPTIONS}, +	{"NAND 32MiB 3,3V 8-bit",	0x75, 512, 32, 0x4000, SP_OPTIONS}, +	{"NAND 32MiB 1,8V 16-bit",	0x45, 512, 32, 0x4000, SP_OPTIONS16}, +	{"NAND 32MiB 3,3V 16-bit",	0x55, 512, 32, 0x4000, SP_OPTIONS16}, -	{"NAND 64MiB 1,8V 8-bit",	0x36, 512, 64, 0x4000, 0}, -	{"NAND 64MiB 3,3V 8-bit",	0x76, 512, 64, 0x4000, 0}, -	{"NAND 64MiB 1,8V 16-bit",	0x46, 512, 64, 0x4000, NAND_BUSWIDTH_16}, -	{"NAND 64MiB 3,3V 16-bit",	0x56, 512, 64, 0x4000, NAND_BUSWIDTH_16}, +	{"NAND 64MiB 1,8V 8-bit",	0x36, 512, 64, 0x4000, SP_OPTIONS}, +	{"NAND 64MiB 3,3V 8-bit",	0x76, 512, 64, 0x4000, SP_OPTIONS}, +	{"NAND 64MiB 1,8V 16-bit",	0x46, 512, 64, 0x4000, SP_OPTIONS16}, +	{"NAND 64MiB 3,3V 16-bit",	0x56, 512, 64, 0x4000, SP_OPTIONS16}, -	{"NAND 128MiB 1,8V 8-bit",	0x78, 512, 128, 0x4000, 0}, -	{"NAND 128MiB 1,8V 8-bit",	0x39, 512, 128, 0x4000, 0}, -	{"NAND 128MiB 3,3V 8-bit",	0x79, 512, 128, 0x4000, 0}, -	{"NAND 128MiB 1,8V 16-bit",	0x72, 512, 128, 0x4000, NAND_BUSWIDTH_16}, -	{"NAND 128MiB 1,8V 16-bit",	0x49, 512, 128, 0x4000, NAND_BUSWIDTH_16}, -	{"NAND 128MiB 3,3V 16-bit",	0x74, 512, 128, 0x4000, NAND_BUSWIDTH_16}, -	{"NAND 128MiB 3,3V 16-bit",	0x59, 512, 128, 0x4000, NAND_BUSWIDTH_16}, +	{"NAND 128MiB 1,8V 8-bit",	0x78, 512, 128, 0x4000, SP_OPTIONS}, +	{"NAND 128MiB 1,8V 8-bit",	0x39, 512, 128, 0x4000, SP_OPTIONS}, +	{"NAND 128MiB 3,3V 8-bit",	0x79, 512, 128, 0x4000, SP_OPTIONS}, +	{"NAND 128MiB 1,8V 16-bit",	0x72, 512, 128, 0x4000, SP_OPTIONS16}, +	{"NAND 128MiB 1,8V 16-bit",	0x49, 512, 128, 0x4000, SP_OPTIONS16}, +	{"NAND 128MiB 3,3V 16-bit",	0x74, 512, 128, 0x4000, SP_OPTIONS16}, +	{"NAND 128MiB 3,3V 16-bit",	0x59, 512, 128, 0x4000, SP_OPTIONS16}, -	{"NAND 256MiB 3,3V 8-bit",	0x71, 512, 256, 0x4000, 0}, +	{"NAND 256MiB 3,3V 8-bit",	0x71, 512, 256, 0x4000, SP_OPTIONS},  	/*  	 * These are the new chips with large page size. The pagesize and the diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index 7bd068a6056..6bbd90e1123 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c @@ -1746,6 +1746,8 @@ int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)  	bond_compute_features(bond); +	bond_update_speed_duplex(new_slave); +  	read_lock(&bond->lock);  	new_slave->last_arp_rx = jiffies - @@ -1798,8 +1800,6 @@ int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)  		new_slave->link == BOND_LINK_DOWN ? "DOWN" :  			(new_slave->link == BOND_LINK_UP ? "UP" : "BACK")); -	bond_update_speed_duplex(new_slave); -  	if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) {  		/* if there is a primary slave, remember it */  		if (strcmp(bond->params.primary, new_slave->dev->name) == 0) { @@ -1964,7 +1964,6 @@ static int __bond_release_one(struct net_device *bond_dev,  	}  	block_netpoll_tx(); -	call_netdevice_notifiers(NETDEV_RELEASE, bond_dev);  	write_lock_bh(&bond->lock);  	slave = bond_get_slave_by_dev(bond, slave_dev); @@ -2066,8 +2065,10 @@ static int __bond_release_one(struct net_device *bond_dev,  	write_unlock_bh(&bond->lock);  	unblock_netpoll_tx(); -	if (bond->slave_cnt == 0) +	if (bond->slave_cnt == 0) {  		call_netdevice_notifiers(NETDEV_CHANGEADDR, bond->dev); +		call_netdevice_notifiers(NETDEV_RELEASE, bond->dev); +	}  	bond_compute_features(bond);  	if (!(bond_dev->features & NETIF_F_VLAN_CHALLENGED) && @@ -2373,8 +2374,6 @@ static void bond_miimon_commit(struct bonding *bond)  				bond_set_backup_slave(slave);  			} -			bond_update_speed_duplex(slave); -  			pr_info("%s: link status definitely up for interface %s, %u Mbps %s duplex.\n",  				bond->dev->name, slave->dev->name,  				slave->speed, slave->duplex ? "full" : "half"); diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c index a923bc4d5a1..4046f97378c 100644 --- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c +++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c @@ -2760,6 +2760,7 @@ load_error2:  	bp->port.pmf = 0;  load_error1:  	bnx2x_napi_disable(bp); +	bnx2x_del_all_napi(bp);  	/* clear pf_load status, as it was already set */  	if (IS_PF(bp)) diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_link.c b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_link.c index 31c5787970d..77ebae0ac64 100644 --- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_link.c +++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_link.c @@ -8647,7 +8647,9 @@ void bnx2x_handle_module_detect_int(struct link_params *params)  						MDIO_WC_DEVAD,  						MDIO_WC_REG_DIGITAL5_MISC6,  						&rx_tx_in_reset); -				if (!rx_tx_in_reset) { +				if ((!rx_tx_in_reset) && +				    (params->link_flags & +				     PHY_INITIALIZED)) {  					bnx2x_warpcore_reset_lane(bp, phy, 1);  					bnx2x_warpcore_config_sfi(phy, params);  					bnx2x_warpcore_reset_lane(bp, phy, 0); @@ -12527,6 +12529,8 @@ int bnx2x_phy_init(struct link_params *params, struct link_vars *vars)  	vars->flow_ctrl = BNX2X_FLOW_CTRL_NONE;  	vars->mac_type = MAC_TYPE_NONE;  	vars->phy_flags = 0; +	vars->check_kr2_recovery_cnt = 0; +	params->link_flags = PHY_INITIALIZED;  	/* Driver opens NIG-BRB filters */  	bnx2x_set_rx_filter(params, 1);  	/* Check if link flap can be avoided */ @@ -12691,6 +12695,7 @@ int bnx2x_lfa_reset(struct link_params *params,  	struct bnx2x *bp = params->bp;  	vars->link_up = 0;  	vars->phy_flags = 0; +	params->link_flags &= ~PHY_INITIALIZED;  	if (!params->lfa_base)  		return bnx2x_link_reset(params, vars, 1);  	/* @@ -13411,6 +13416,7 @@ static void bnx2x_disable_kr2(struct link_params *params,  	vars->link_attr_sync &= ~LINK_ATTR_SYNC_KR2_ENABLE;  	bnx2x_update_link_attr(params, vars->link_attr_sync); +	vars->check_kr2_recovery_cnt = CHECK_KR2_RECOVERY_CNT;  	/* Restart AN on leading lane */  	bnx2x_warpcore_restart_AN_KR(phy, params);  } @@ -13439,6 +13445,15 @@ static void bnx2x_check_kr2_wa(struct link_params *params,  		return;  	} +	/* Once KR2 was disabled, wait 5 seconds before checking KR2 recovery +	 * since some switches tend to reinit the AN process and clear the +	 * advertised BP/NP after ~2 seconds causing the KR2 to be disabled +	 * and recovered many times +	 */ +	if (vars->check_kr2_recovery_cnt > 0) { +		vars->check_kr2_recovery_cnt--; +		return; +	}  	lane = bnx2x_get_warpcore_lane(phy, params);  	CL22_WR_OVER_CL45(bp, phy, MDIO_REG_BANK_AER_BLOCK,  			  MDIO_AER_BLOCK_AER_REG, lane); diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_link.h b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_link.h index be5c195d03d..56c2aae4e2c 100644 --- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_link.h +++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_link.h @@ -309,6 +309,7 @@ struct link_params {  				req_flow_ctrl is set to AUTO */  	u16 link_flags;  #define LINK_FLAGS_INT_DISABLED		(1<<0) +#define PHY_INITIALIZED		(1<<1)  	u32 lfa_base;  }; @@ -342,7 +343,8 @@ struct link_vars {  	u32 link_status;  	u32 eee_status;  	u8 fault_detected; -	u8 rsrv1; +	u8 check_kr2_recovery_cnt; +#define CHECK_KR2_RECOVERY_CNT	5  	u16 periodic_flags;  #define PERIODIC_FLAGS_LINK_EVENT	0x0001 diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_stats.h b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_stats.h index 364e37ecbc5..198f6f1c9ad 100644 --- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_stats.h +++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_stats.h @@ -459,8 +459,9 @@ struct bnx2x_fw_port_stats_old {  #define UPDATE_QSTAT(s, t) \  	do { \ -		qstats->t##_hi = qstats_old->t##_hi + le32_to_cpu(s.hi); \  		qstats->t##_lo = qstats_old->t##_lo + le32_to_cpu(s.lo); \ +		qstats->t##_hi = qstats_old->t##_hi + le32_to_cpu(s.hi) \ +			+ ((qstats->t##_lo < qstats_old->t##_lo) ? 1 : 0); \  	} while (0)  #define UPDATE_QSTAT_OLD(f) \ diff --git a/drivers/net/ethernet/broadcom/tg3.c b/drivers/net/ethernet/broadcom/tg3.c index fdb9b565541..67d2663b397 100644 --- a/drivers/net/ethernet/broadcom/tg3.c +++ b/drivers/net/ethernet/broadcom/tg3.c @@ -1869,6 +1869,8 @@ static void tg3_link_report(struct tg3 *tp)  		tg3_ump_link_report(tp);  	} + +	tp->link_up = netif_carrier_ok(tp->dev);  }  static u16 tg3_advert_flowctrl_1000X(u8 flow_ctrl) @@ -2522,12 +2524,6 @@ static int tg3_phy_reset_5703_4_5(struct tg3 *tp)  	return err;  } -static void tg3_carrier_on(struct tg3 *tp) -{ -	netif_carrier_on(tp->dev); -	tp->link_up = true; -} -  static void tg3_carrier_off(struct tg3 *tp)  {  	netif_carrier_off(tp->dev); @@ -2553,7 +2549,7 @@ static int tg3_phy_reset(struct tg3 *tp)  		return -EBUSY;  	if (netif_running(tp->dev) && tp->link_up) { -		tg3_carrier_off(tp); +		netif_carrier_off(tp->dev);  		tg3_link_report(tp);  	} @@ -4134,6 +4130,14 @@ static void tg3_phy_copper_begin(struct tg3 *tp)  		tp->link_config.active_speed = tp->link_config.speed;  		tp->link_config.active_duplex = tp->link_config.duplex; +		if (tg3_asic_rev(tp) == ASIC_REV_5714) { +			/* With autoneg disabled, 5715 only links up when the +			 * advertisement register has the configured speed +			 * enabled. +			 */ +			tg3_writephy(tp, MII_ADVERTISE, ADVERTISE_ALL); +		} +  		bmcr = 0;  		switch (tp->link_config.speed) {  		default: @@ -4262,9 +4266,9 @@ static bool tg3_test_and_report_link_chg(struct tg3 *tp, int curr_link_up)  {  	if (curr_link_up != tp->link_up) {  		if (curr_link_up) { -			tg3_carrier_on(tp); +			netif_carrier_on(tp->dev);  		} else { -			tg3_carrier_off(tp); +			netif_carrier_off(tp->dev);  			if (tp->phy_flags & TG3_PHYFLG_MII_SERDES)  				tp->phy_flags &= ~TG3_PHYFLG_PARALLEL_DETECT;  		} diff --git a/drivers/net/ethernet/chelsio/cxgb4/t4_hw.c b/drivers/net/ethernet/chelsio/cxgb4/t4_hw.c index 4ce62031f62..8049268ce0f 100644 --- a/drivers/net/ethernet/chelsio/cxgb4/t4_hw.c +++ b/drivers/net/ethernet/chelsio/cxgb4/t4_hw.c @@ -497,8 +497,9 @@ int t4_memory_write(struct adapter *adap, int mtype, u32 addr, u32 len,  }  #define EEPROM_STAT_ADDR   0x7bfc -#define VPD_BASE           0  #define VPD_LEN            512 +#define VPD_BASE           0x400 +#define VPD_BASE_OLD       0  /**   *	t4_seeprom_wp - enable/disable EEPROM write protection @@ -524,7 +525,7 @@ int t4_seeprom_wp(struct adapter *adapter, bool enable)  int get_vpd_params(struct adapter *adapter, struct vpd_params *p)  {  	u32 cclk_param, cclk_val; -	int i, ret; +	int i, ret, addr;  	int ec, sn;  	u8 *vpd, csum;  	unsigned int vpdr_len, kw_offset, id_len; @@ -533,7 +534,12 @@ int get_vpd_params(struct adapter *adapter, struct vpd_params *p)  	if (!vpd)  		return -ENOMEM; -	ret = pci_read_vpd(adapter->pdev, VPD_BASE, VPD_LEN, vpd); +	ret = pci_read_vpd(adapter->pdev, VPD_BASE, sizeof(u32), vpd); +	if (ret < 0) +		goto out; +	addr = *vpd == 0x82 ? VPD_BASE : VPD_BASE_OLD; + +	ret = pci_read_vpd(adapter->pdev, addr, VPD_LEN, vpd);  	if (ret < 0)  		goto out; diff --git a/drivers/net/ethernet/dec/tulip/Kconfig b/drivers/net/ethernet/dec/tulip/Kconfig index 0c37fb2cc86..1df33c799c0 100644 --- a/drivers/net/ethernet/dec/tulip/Kconfig +++ b/drivers/net/ethernet/dec/tulip/Kconfig @@ -108,6 +108,7 @@ config TULIP_DM910X  config DE4X5  	tristate "Generic DECchip & DIGITAL EtherWORKS PCI/EISA"  	depends on (PCI || EISA) +	depends on VIRT_TO_BUS || ALPHA || PPC || SPARC  	select CRC32  	---help---  	  This is support for the DIGITAL series of PCI/EISA Ethernet cards. diff --git a/drivers/net/ethernet/emulex/benet/be.h b/drivers/net/ethernet/emulex/benet/be.h index 28ceb841418..29aff55f2ee 100644 --- a/drivers/net/ethernet/emulex/benet/be.h +++ b/drivers/net/ethernet/emulex/benet/be.h @@ -349,6 +349,7 @@ struct be_adapter {  	struct pci_dev *pdev;  	struct net_device *netdev; +	u8 __iomem *csr;	/* CSR BAR used only for BE2/3 */  	u8 __iomem *db;		/* Door Bell */  	struct mutex mbox_lock; /* For serializing mbox cmds to BE card */ diff --git a/drivers/net/ethernet/emulex/benet/be_cmds.c b/drivers/net/ethernet/emulex/benet/be_cmds.c index 071aea79d21..3c9b4f12e3e 100644 --- a/drivers/net/ethernet/emulex/benet/be_cmds.c +++ b/drivers/net/ethernet/emulex/benet/be_cmds.c @@ -473,19 +473,17 @@ static int be_mbox_notify_wait(struct be_adapter *adapter)  	return 0;  } -static int be_POST_stage_get(struct be_adapter *adapter, u16 *stage) +static u16 be_POST_stage_get(struct be_adapter *adapter)  {  	u32 sem; -	u32 reg = skyhawk_chip(adapter) ? SLIPORT_SEMAPHORE_OFFSET_SH : -					  SLIPORT_SEMAPHORE_OFFSET_BE; -	pci_read_config_dword(adapter->pdev, reg, &sem); -	*stage = sem & POST_STAGE_MASK; - -	if ((sem >> POST_ERR_SHIFT) & POST_ERR_MASK) -		return -1; +	if (BEx_chip(adapter)) +		sem  = ioread32(adapter->csr + SLIPORT_SEMAPHORE_OFFSET_BEx);  	else -		return 0; +		pci_read_config_dword(adapter->pdev, +				      SLIPORT_SEMAPHORE_OFFSET_SH, &sem); + +	return sem & POST_STAGE_MASK;  }  int lancer_wait_ready(struct be_adapter *adapter) @@ -579,19 +577,17 @@ int be_fw_wait_ready(struct be_adapter *adapter)  	}  	do { -		status = be_POST_stage_get(adapter, &stage); -		if (status) { -			dev_err(dev, "POST error; stage=0x%x\n", stage); -			return -1; -		} else if (stage != POST_STAGE_ARMFW_RDY) { -			if (msleep_interruptible(2000)) { -				dev_err(dev, "Waiting for POST aborted\n"); -				return -EINTR; -			} -			timeout += 2; -		} else { +		stage = be_POST_stage_get(adapter); +		if (stage == POST_STAGE_ARMFW_RDY)  			return 0; + +		dev_info(dev, "Waiting for POST, %ds elapsed\n", +			 timeout); +		if (msleep_interruptible(2000)) { +			dev_err(dev, "Waiting for POST aborted\n"); +			return -EINTR;  		} +		timeout += 2;  	} while (timeout < 60);  	dev_err(dev, "POST timeout; stage=0x%x\n", stage); diff --git a/drivers/net/ethernet/emulex/benet/be_hw.h b/drivers/net/ethernet/emulex/benet/be_hw.h index 541d4530d5b..62dc220695f 100644 --- a/drivers/net/ethernet/emulex/benet/be_hw.h +++ b/drivers/net/ethernet/emulex/benet/be_hw.h @@ -32,8 +32,8 @@  #define MPU_EP_CONTROL 		0  /********** MPU semphore: used for SH & BE  *************/ -#define SLIPORT_SEMAPHORE_OFFSET_BE		0x7c -#define SLIPORT_SEMAPHORE_OFFSET_SH		0x94 +#define SLIPORT_SEMAPHORE_OFFSET_BEx		0xac  /* CSR BAR offset */ +#define SLIPORT_SEMAPHORE_OFFSET_SH		0x94  /* PCI-CFG offset */  #define POST_STAGE_MASK				0x0000FFFF  #define POST_ERR_MASK				0x1  #define POST_ERR_SHIFT				31 diff --git a/drivers/net/ethernet/emulex/benet/be_main.c b/drivers/net/ethernet/emulex/benet/be_main.c index 3860888ac71..08e54f3d288 100644 --- a/drivers/net/ethernet/emulex/benet/be_main.c +++ b/drivers/net/ethernet/emulex/benet/be_main.c @@ -3688,6 +3688,8 @@ static void be_netdev_init(struct net_device *netdev)  static void be_unmap_pci_bars(struct be_adapter *adapter)  { +	if (adapter->csr) +		pci_iounmap(adapter->pdev, adapter->csr);  	if (adapter->db)  		pci_iounmap(adapter->pdev, adapter->db);  } @@ -3721,6 +3723,12 @@ static int be_map_pci_bars(struct be_adapter *adapter)  	adapter->if_type = (sli_intf & SLI_INTF_IF_TYPE_MASK) >>  				SLI_INTF_IF_TYPE_SHIFT; +	if (BEx_chip(adapter) && be_physfn(adapter)) { +		adapter->csr = pci_iomap(adapter->pdev, 2, 0); +		if (adapter->csr == NULL) +			return -ENOMEM; +	} +  	addr = pci_iomap(adapter->pdev, db_bar(adapter), 0);  	if (addr == NULL)  		goto pci_map_err; @@ -4329,6 +4337,8 @@ static pci_ers_result_t be_eeh_reset(struct pci_dev *pdev)  	pci_restore_state(pdev);  	/* Check if card is ok and fw is ready */ +	dev_info(&adapter->pdev->dev, +		 "Waiting for FW to be ready after EEH reset\n");  	status = be_fw_wait_ready(adapter);  	if (status)  		return PCI_ERS_RESULT_DISCONNECT; diff --git a/drivers/net/ethernet/freescale/fec.c b/drivers/net/ethernet/freescale/fec.c index 069a155d16e..e3f39372ce2 100644 --- a/drivers/net/ethernet/freescale/fec.c +++ b/drivers/net/ethernet/freescale/fec.c @@ -934,24 +934,28 @@ static void fec_enet_adjust_link(struct net_device *ndev)  		goto spin_unlock;  	} -	/* Duplex link change */  	if (phy_dev->link) { -		if (fep->full_duplex != phy_dev->duplex) { -			fec_restart(ndev, phy_dev->duplex); -			/* prevent unnecessary second fec_restart() below */ +		if (!fep->link) {  			fep->link = phy_dev->link;  			status_change = 1;  		} -	} -	/* Link on or off change */ -	if (phy_dev->link != fep->link) { -		fep->link = phy_dev->link; -		if (phy_dev->link) +		if (fep->full_duplex != phy_dev->duplex) +			status_change = 1; + +		if (phy_dev->speed != fep->speed) { +			fep->speed = phy_dev->speed; +			status_change = 1; +		} + +		/* if any of the above changed restart the FEC */ +		if (status_change)  			fec_restart(ndev, phy_dev->duplex); -		else +	} else { +		if (fep->link) {  			fec_stop(ndev); -		status_change = 1; +			status_change = 1; +		}  	}  spin_unlock: @@ -1437,6 +1441,7 @@ fec_enet_close(struct net_device *ndev)  	struct fec_enet_private *fep = netdev_priv(ndev);  	/* Don't know what to do yet. */ +	napi_disable(&fep->napi);  	fep->opened = 0;  	netif_stop_queue(ndev);  	fec_stop(ndev); diff --git a/drivers/net/ethernet/freescale/fec.h b/drivers/net/ethernet/freescale/fec.h index f5390071efd..eb437296283 100644 --- a/drivers/net/ethernet/freescale/fec.h +++ b/drivers/net/ethernet/freescale/fec.h @@ -240,6 +240,7 @@ struct fec_enet_private {  	phy_interface_t	phy_interface;  	int	link;  	int	full_duplex; +	int	speed;  	struct	completion mdio_done;  	int	irq[FEC_IRQ_NUM];  	int	bufdesc_ex; diff --git a/drivers/net/ethernet/intel/e1000e/ethtool.c b/drivers/net/ethernet/intel/e1000e/ethtool.c index 2c1813737f6..f91a8f3f9d4 100644 --- a/drivers/net/ethernet/intel/e1000e/ethtool.c +++ b/drivers/net/ethernet/intel/e1000e/ethtool.c @@ -36,6 +36,7 @@  #include <linux/delay.h>  #include <linux/vmalloc.h>  #include <linux/mdio.h> +#include <linux/pm_runtime.h>  #include "e1000.h" @@ -2229,7 +2230,19 @@ static int e1000e_get_ts_info(struct net_device *netdev,  	return 0;  } +static int e1000e_ethtool_begin(struct net_device *netdev) +{ +	return pm_runtime_get_sync(netdev->dev.parent); +} + +static void e1000e_ethtool_complete(struct net_device *netdev) +{ +	pm_runtime_put_sync(netdev->dev.parent); +} +  static const struct ethtool_ops e1000_ethtool_ops = { +	.begin			= e1000e_ethtool_begin, +	.complete		= e1000e_ethtool_complete,  	.get_settings		= e1000_get_settings,  	.set_settings		= e1000_set_settings,  	.get_drvinfo		= e1000_get_drvinfo, diff --git a/drivers/net/ethernet/intel/e1000e/ich8lan.c b/drivers/net/ethernet/intel/e1000e/ich8lan.c index dff7bff8b8e..121a865c7fb 100644 --- a/drivers/net/ethernet/intel/e1000e/ich8lan.c +++ b/drivers/net/ethernet/intel/e1000e/ich8lan.c @@ -782,6 +782,59 @@ release:  }  /** + *  e1000_k1_workaround_lpt_lp - K1 workaround on Lynxpoint-LP + *  @hw:   pointer to the HW structure + *  @link: link up bool flag + * + *  When K1 is enabled for 1Gbps, the MAC can miss 2 DMA completion indications + *  preventing further DMA write requests.  Workaround the issue by disabling + *  the de-assertion of the clock request when in 1Gpbs mode. + **/ +static s32 e1000_k1_workaround_lpt_lp(struct e1000_hw *hw, bool link) +{ +	u32 fextnvm6 = er32(FEXTNVM6); +	s32 ret_val = 0; + +	if (link && (er32(STATUS) & E1000_STATUS_SPEED_1000)) { +		u16 kmrn_reg; + +		ret_val = hw->phy.ops.acquire(hw); +		if (ret_val) +			return ret_val; + +		ret_val = +		    e1000e_read_kmrn_reg_locked(hw, E1000_KMRNCTRLSTA_K1_CONFIG, +						&kmrn_reg); +		if (ret_val) +			goto release; + +		ret_val = +		    e1000e_write_kmrn_reg_locked(hw, +						 E1000_KMRNCTRLSTA_K1_CONFIG, +						 kmrn_reg & +						 ~E1000_KMRNCTRLSTA_K1_ENABLE); +		if (ret_val) +			goto release; + +		usleep_range(10, 20); + +		ew32(FEXTNVM6, fextnvm6 | E1000_FEXTNVM6_REQ_PLL_CLK); + +		ret_val = +		    e1000e_write_kmrn_reg_locked(hw, +						 E1000_KMRNCTRLSTA_K1_CONFIG, +						 kmrn_reg); +release: +		hw->phy.ops.release(hw); +	} else { +		/* clear FEXTNVM6 bit 8 on link down or 10/100 */ +		ew32(FEXTNVM6, fextnvm6 & ~E1000_FEXTNVM6_REQ_PLL_CLK); +	} + +	return ret_val; +} + +/**   *  e1000_check_for_copper_link_ich8lan - Check for link (Copper)   *  @hw: pointer to the HW structure   * @@ -818,6 +871,14 @@ static s32 e1000_check_for_copper_link_ich8lan(struct e1000_hw *hw)  			return ret_val;  	} +	/* Work-around I218 hang issue */ +	if ((hw->adapter->pdev->device == E1000_DEV_ID_PCH_LPTLP_I218_LM) || +	    (hw->adapter->pdev->device == E1000_DEV_ID_PCH_LPTLP_I218_V)) { +		ret_val = e1000_k1_workaround_lpt_lp(hw, link); +		if (ret_val) +			return ret_val; +	} +  	/* Clear link partner's EEE ability */  	hw->dev_spec.ich8lan.eee_lp_ability = 0; @@ -3954,8 +4015,16 @@ void e1000_suspend_workarounds_ich8lan(struct e1000_hw *hw)  	phy_ctrl = er32(PHY_CTRL);  	phy_ctrl |= E1000_PHY_CTRL_GBE_DISABLE; +  	if (hw->phy.type == e1000_phy_i217) { -		u16 phy_reg; +		u16 phy_reg, device_id = hw->adapter->pdev->device; + +		if ((device_id == E1000_DEV_ID_PCH_LPTLP_I218_LM) || +		    (device_id == E1000_DEV_ID_PCH_LPTLP_I218_V)) { +			u32 fextnvm6 = er32(FEXTNVM6); + +			ew32(FEXTNVM6, fextnvm6 & ~E1000_FEXTNVM6_REQ_PLL_CLK); +		}  		ret_val = hw->phy.ops.acquire(hw);  		if (ret_val) diff --git a/drivers/net/ethernet/intel/e1000e/ich8lan.h b/drivers/net/ethernet/intel/e1000e/ich8lan.h index b6d3174d7d2..8bf4655c2e1 100644 --- a/drivers/net/ethernet/intel/e1000e/ich8lan.h +++ b/drivers/net/ethernet/intel/e1000e/ich8lan.h @@ -92,6 +92,8 @@  #define E1000_FEXTNVM4_BEACON_DURATION_8USEC	0x7  #define E1000_FEXTNVM4_BEACON_DURATION_16USEC	0x3 +#define E1000_FEXTNVM6_REQ_PLL_CLK	0x00000100 +  #define PCIE_ICH8_SNOOP_ALL	PCIE_NO_SNOOP_ALL  #define E1000_ICH_RAR_ENTRIES	7 diff --git a/drivers/net/ethernet/intel/e1000e/netdev.c b/drivers/net/ethernet/intel/e1000e/netdev.c index a177b8b65c4..948b86ffa4f 100644 --- a/drivers/net/ethernet/intel/e1000e/netdev.c +++ b/drivers/net/ethernet/intel/e1000e/netdev.c @@ -4303,6 +4303,7 @@ static int e1000_open(struct net_device *netdev)  	netif_start_queue(netdev);  	adapter->idle_check = true; +	hw->mac.get_link_status = true;  	pm_runtime_put(&pdev->dev);  	/* fire a link status change interrupt to start the watchdog */ @@ -4662,6 +4663,7 @@ static void e1000_phy_read_status(struct e1000_adapter *adapter)  	    (adapter->hw.phy.media_type == e1000_media_type_copper)) {  		int ret_val; +		pm_runtime_get_sync(&adapter->pdev->dev);  		ret_val = e1e_rphy(hw, MII_BMCR, &phy->bmcr);  		ret_val |= e1e_rphy(hw, MII_BMSR, &phy->bmsr);  		ret_val |= e1e_rphy(hw, MII_ADVERTISE, &phy->advertise); @@ -4672,6 +4674,7 @@ static void e1000_phy_read_status(struct e1000_adapter *adapter)  		ret_val |= e1e_rphy(hw, MII_ESTATUS, &phy->estatus);  		if (ret_val)  			e_warn("Error reading PHY register\n"); +		pm_runtime_put_sync(&adapter->pdev->dev);  	} else {  		/* Do not read PHY registers if link is not up  		 * Set values to typical power-on defaults @@ -5887,8 +5890,7 @@ release:  	return retval;  } -static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake, -			    bool runtime) +static int __e1000_shutdown(struct pci_dev *pdev, bool runtime)  {  	struct net_device *netdev = pci_get_drvdata(pdev);  	struct e1000_adapter *adapter = netdev_priv(netdev); @@ -5912,10 +5914,6 @@ static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake,  	}  	e1000e_reset_interrupt_capability(adapter); -	retval = pci_save_state(pdev); -	if (retval) -		return retval; -  	status = er32(STATUS);  	if (status & E1000_STATUS_LU)  		wufc &= ~E1000_WUFC_LNKC; @@ -5971,13 +5969,6 @@ static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake,  		ew32(WUFC, 0);  	} -	*enable_wake = !!wufc; - -	/* make sure adapter isn't asleep if manageability is enabled */ -	if ((adapter->flags & FLAG_MNG_PT_ENABLED) || -	    (hw->mac.ops.check_mng_mode(hw))) -		*enable_wake = true; -  	if (adapter->hw.phy.type == e1000_phy_igp_3)  		e1000e_igp3_phy_powerdown_workaround_ich8lan(&adapter->hw); @@ -5986,27 +5977,7 @@ static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake,  	 */  	e1000e_release_hw_control(adapter); -	pci_disable_device(pdev); - -	return 0; -} - -static void e1000_power_off(struct pci_dev *pdev, bool sleep, bool wake) -{ -	if (sleep && wake) { -		pci_prepare_to_sleep(pdev); -		return; -	} - -	pci_wake_from_d3(pdev, wake); -	pci_set_power_state(pdev, PCI_D3hot); -} - -static void e1000_complete_shutdown(struct pci_dev *pdev, bool sleep, -                                    bool wake) -{ -	struct net_device *netdev = pci_get_drvdata(pdev); -	struct e1000_adapter *adapter = netdev_priv(netdev); +	pci_clear_master(pdev);  	/* The pci-e switch on some quad port adapters will report a  	 * correctable error when the MAC transitions from D0 to D3.  To @@ -6021,12 +5992,13 @@ static void e1000_complete_shutdown(struct pci_dev *pdev, bool sleep,  		pcie_capability_write_word(us_dev, PCI_EXP_DEVCTL,  					   (devctl & ~PCI_EXP_DEVCTL_CERE)); -		e1000_power_off(pdev, sleep, wake); +		pci_save_state(pdev); +		pci_prepare_to_sleep(pdev);  		pcie_capability_write_word(us_dev, PCI_EXP_DEVCTL, devctl); -	} else { -		e1000_power_off(pdev, sleep, wake);  	} + +	return 0;  }  #ifdef CONFIG_PCIEASPM @@ -6084,9 +6056,7 @@ static int __e1000_resume(struct pci_dev *pdev)  	if (aspm_disable_flag)  		e1000e_disable_aspm(pdev, aspm_disable_flag); -	pci_set_power_state(pdev, PCI_D0); -	pci_restore_state(pdev); -	pci_save_state(pdev); +	pci_set_master(pdev);  	e1000e_set_interrupt_capability(adapter);  	if (netif_running(netdev)) { @@ -6152,14 +6122,8 @@ static int __e1000_resume(struct pci_dev *pdev)  static int e1000_suspend(struct device *dev)  {  	struct pci_dev *pdev = to_pci_dev(dev); -	int retval; -	bool wake; - -	retval = __e1000_shutdown(pdev, &wake, false); -	if (!retval) -		e1000_complete_shutdown(pdev, true, wake); -	return retval; +	return __e1000_shutdown(pdev, false);  }  static int e1000_resume(struct device *dev) @@ -6182,13 +6146,10 @@ static int e1000_runtime_suspend(struct device *dev)  	struct net_device *netdev = pci_get_drvdata(pdev);  	struct e1000_adapter *adapter = netdev_priv(netdev); -	if (e1000e_pm_ready(adapter)) { -		bool wake; - -		__e1000_shutdown(pdev, &wake, true); -	} +	if (!e1000e_pm_ready(adapter)) +		return 0; -	return 0; +	return __e1000_shutdown(pdev, true);  }  static int e1000_idle(struct device *dev) @@ -6226,12 +6187,7 @@ static int e1000_runtime_resume(struct device *dev)  static void e1000_shutdown(struct pci_dev *pdev)  { -	bool wake = false; - -	__e1000_shutdown(pdev, &wake, false); - -	if (system_state == SYSTEM_POWER_OFF) -		e1000_complete_shutdown(pdev, false, wake); +	__e1000_shutdown(pdev, false);  }  #ifdef CONFIG_NET_POLL_CONTROLLER @@ -6352,9 +6308,9 @@ static pci_ers_result_t e1000_io_slot_reset(struct pci_dev *pdev)  			"Cannot re-enable PCI device after reset.\n");  		result = PCI_ERS_RESULT_DISCONNECT;  	} else { -		pci_set_master(pdev);  		pdev->state_saved = true;  		pci_restore_state(pdev); +		pci_set_master(pdev);  		pci_enable_wake(pdev, PCI_D3hot, 0);  		pci_enable_wake(pdev, PCI_D3cold, 0); @@ -6783,7 +6739,11 @@ static int e1000_probe(struct pci_dev *pdev, const struct pci_device_id *ent)  	/* initialize the wol settings based on the eeprom settings */  	adapter->wol = adapter->eeprom_wol; -	device_set_wakeup_enable(&adapter->pdev->dev, adapter->wol); + +	/* make sure adapter isn't asleep if manageability is enabled */ +	if (adapter->wol || (adapter->flags & FLAG_MNG_PT_ENABLED) || +	    (hw->mac.ops.check_mng_mode(hw))) +		device_wakeup_enable(&pdev->dev);  	/* save off EEPROM version number */  	e1000_read_nvm(&adapter->hw, 5, 1, &adapter->eeprom_vers); diff --git a/drivers/net/ethernet/intel/e1000e/regs.h b/drivers/net/ethernet/intel/e1000e/regs.h index 794fe149766..a7e6a3e3725 100644 --- a/drivers/net/ethernet/intel/e1000e/regs.h +++ b/drivers/net/ethernet/intel/e1000e/regs.h @@ -42,6 +42,7 @@  #define E1000_FEXTNVM	0x00028	/* Future Extended NVM - RW */  #define E1000_FEXTNVM3	0x0003C	/* Future Extended NVM 3 - RW */  #define E1000_FEXTNVM4	0x00024	/* Future Extended NVM 4 - RW */ +#define E1000_FEXTNVM6	0x00010	/* Future Extended NVM 6 - RW */  #define E1000_FEXTNVM7	0x000E4	/* Future Extended NVM 7 - RW */  #define E1000_FCT	0x00030	/* Flow Control Type - RW */  #define E1000_VET	0x00038	/* VLAN Ether Type - RW */ diff --git a/drivers/net/ethernet/intel/igb/e1000_82575.c b/drivers/net/ethernet/intel/igb/e1000_82575.c index 84e7e0909de..b64542acfa3 100644 --- a/drivers/net/ethernet/intel/igb/e1000_82575.c +++ b/drivers/net/ethernet/intel/igb/e1000_82575.c @@ -1361,11 +1361,16 @@ static s32 igb_setup_copper_link_82575(struct e1000_hw *hw)  	switch (hw->phy.type) {  	case e1000_phy_i210:  	case e1000_phy_m88: -		if (hw->phy.id == I347AT4_E_PHY_ID || -		    hw->phy.id == M88E1112_E_PHY_ID) +		switch (hw->phy.id) { +		case I347AT4_E_PHY_ID: +		case M88E1112_E_PHY_ID: +		case I210_I_PHY_ID:  			ret_val = igb_copper_link_setup_m88_gen2(hw); -		else +			break; +		default:  			ret_val = igb_copper_link_setup_m88(hw); +			break; +		}  		break;  	case e1000_phy_igp_3:  		ret_val = igb_copper_link_setup_igp(hw); diff --git a/drivers/net/ethernet/intel/igb/igb.h b/drivers/net/ethernet/intel/igb/igb.h index d27edbc6392..25151401c2a 100644 --- a/drivers/net/ethernet/intel/igb/igb.h +++ b/drivers/net/ethernet/intel/igb/igb.h @@ -447,7 +447,7 @@ struct igb_adapter {  #endif  	struct i2c_algo_bit_data i2c_algo;  	struct i2c_adapter i2c_adap; -	struct igb_i2c_client_list *i2c_clients; +	struct i2c_client *i2c_client;  };  #define IGB_FLAG_HAS_MSI		(1 << 0) diff --git a/drivers/net/ethernet/intel/igb/igb_hwmon.c b/drivers/net/ethernet/intel/igb/igb_hwmon.c index 0a9b073d0b0..4623502054d 100644 --- a/drivers/net/ethernet/intel/igb/igb_hwmon.c +++ b/drivers/net/ethernet/intel/igb/igb_hwmon.c @@ -39,6 +39,10 @@  #include <linux/pci.h>  #ifdef CONFIG_IGB_HWMON +struct i2c_board_info i350_sensor_info = { +	I2C_BOARD_INFO("i350bb", (0Xf8 >> 1)), +}; +  /* hwmon callback functions */  static ssize_t igb_hwmon_show_location(struct device *dev,  					 struct device_attribute *attr, @@ -188,6 +192,7 @@ int igb_sysfs_init(struct igb_adapter *adapter)  	unsigned int i;  	int n_attrs;  	int rc = 0; +	struct i2c_client *client = NULL;  	/* If this method isn't defined we don't support thermals */  	if (adapter->hw.mac.ops.init_thermal_sensor_thresh == NULL) @@ -198,6 +203,15 @@ int igb_sysfs_init(struct igb_adapter *adapter)  		if (rc)  			goto exit; +	/* init i2c_client */ +	client = i2c_new_device(&adapter->i2c_adap, &i350_sensor_info); +	if (client == NULL) { +		dev_info(&adapter->pdev->dev, +			"Failed to create new i2c device..\n"); +		goto exit; +	} +	adapter->i2c_client = client; +  	/* Allocation space for max attributes  	 * max num sensors * values (loc, temp, max, caution)  	 */ diff --git a/drivers/net/ethernet/intel/igb/igb_main.c b/drivers/net/ethernet/intel/igb/igb_main.c index ed79a1c53b5..4dbd62968c7 100644 --- a/drivers/net/ethernet/intel/igb/igb_main.c +++ b/drivers/net/ethernet/intel/igb/igb_main.c @@ -1923,10 +1923,6 @@ void igb_set_fw_version(struct igb_adapter *adapter)  	return;  } -static const struct i2c_board_info i350_sensor_info = { -	I2C_BOARD_INFO("i350bb", 0Xf8), -}; -  /*  igb_init_i2c - Init I2C interface   *  @adapter: pointer to adapter structure   * @@ -6227,13 +6223,6 @@ static struct sk_buff *igb_build_rx_buffer(struct igb_ring *rx_ring,  	/* If we spanned a buffer we have a huge mess so test for it */  	BUG_ON(unlikely(!igb_test_staterr(rx_desc, E1000_RXD_STAT_EOP))); -	/* Guarantee this function can be used by verifying buffer sizes */ -	BUILD_BUG_ON(SKB_WITH_OVERHEAD(IGB_RX_BUFSZ) < (NET_SKB_PAD + -							NET_IP_ALIGN + -							IGB_TS_HDR_LEN + -							ETH_FRAME_LEN + -							ETH_FCS_LEN)); -  	rx_buffer = &rx_ring->rx_buffer_info[rx_ring->next_to_clean];  	page = rx_buffer->page;  	prefetchw(page); @@ -7724,67 +7713,6 @@ static void igb_init_dmac(struct igb_adapter *adapter, u32 pba)  	}  } -static DEFINE_SPINLOCK(i2c_clients_lock); - -/*  igb_get_i2c_client - returns matching client - *  in adapters's client list. - *  @adapter: adapter struct - *  @dev_addr: device address of i2c needed. - */ -static struct i2c_client * -igb_get_i2c_client(struct igb_adapter *adapter, u8 dev_addr) -{ -	ulong flags; -	struct igb_i2c_client_list *client_list; -	struct i2c_client *client = NULL; -	struct i2c_board_info client_info = { -		I2C_BOARD_INFO("igb", 0x00), -	}; - -	spin_lock_irqsave(&i2c_clients_lock, flags); -	client_list = adapter->i2c_clients; - -	/* See if we already have an i2c_client */ -	while (client_list) { -		if (client_list->client->addr == (dev_addr >> 1)) { -			client = client_list->client; -			goto exit; -		} else { -			client_list = client_list->next; -		} -	} - -	/* no client_list found, create a new one */ -	client_list = kzalloc(sizeof(*client_list), GFP_ATOMIC); -	if (client_list == NULL) -		goto exit; - -	/* dev_addr passed to us is left-shifted by 1 bit -	 * i2c_new_device call expects it to be flush to the right. -	 */ -	client_info.addr = dev_addr >> 1; -	client_info.platform_data = adapter; -	client_list->client = i2c_new_device(&adapter->i2c_adap, &client_info); -	if (client_list->client == NULL) { -		dev_info(&adapter->pdev->dev, -			"Failed to create new i2c device..\n"); -		goto err_no_client; -	} - -	/* insert new client at head of list */ -	client_list->next = adapter->i2c_clients; -	adapter->i2c_clients = client_list; - -	client = client_list->client; -	goto exit; - -err_no_client: -	kfree(client_list); -exit: -	spin_unlock_irqrestore(&i2c_clients_lock, flags); -	return client; -} -  /*  igb_read_i2c_byte - Reads 8 bit word over I2C   *  @hw: pointer to hardware structure   *  @byte_offset: byte offset to read @@ -7798,7 +7726,7 @@ s32 igb_read_i2c_byte(struct e1000_hw *hw, u8 byte_offset,  				u8 dev_addr, u8 *data)  {  	struct igb_adapter *adapter = container_of(hw, struct igb_adapter, hw); -	struct i2c_client *this_client = igb_get_i2c_client(adapter, dev_addr); +	struct i2c_client *this_client = adapter->i2c_client;  	s32 status;  	u16 swfw_mask = 0; @@ -7835,7 +7763,7 @@ s32 igb_write_i2c_byte(struct e1000_hw *hw, u8 byte_offset,  				 u8 dev_addr, u8 data)  {  	struct igb_adapter *adapter = container_of(hw, struct igb_adapter, hw); -	struct i2c_client *this_client = igb_get_i2c_client(adapter, dev_addr); +	struct i2c_client *this_client = adapter->i2c_client;  	s32 status;  	u16 swfw_mask = E1000_SWFW_PHY0_SM; diff --git a/drivers/net/ethernet/marvell/mv643xx_eth.c b/drivers/net/ethernet/marvell/mv643xx_eth.c index 29140502b71..6562c736a1d 100644 --- a/drivers/net/ethernet/marvell/mv643xx_eth.c +++ b/drivers/net/ethernet/marvell/mv643xx_eth.c @@ -1081,6 +1081,45 @@ static void txq_set_fixed_prio_mode(struct tx_queue *txq)  /* mii management interface *************************************************/ +static void mv643xx_adjust_pscr(struct mv643xx_eth_private *mp) +{ +	u32 pscr = rdlp(mp, PORT_SERIAL_CONTROL); +	u32 autoneg_disable = FORCE_LINK_PASS | +	             DISABLE_AUTO_NEG_SPEED_GMII | +		     DISABLE_AUTO_NEG_FOR_FLOW_CTRL | +		     DISABLE_AUTO_NEG_FOR_DUPLEX; + +	if (mp->phy->autoneg == AUTONEG_ENABLE) { +		/* enable auto negotiation */ +		pscr &= ~autoneg_disable; +		goto out_write; +	} + +	pscr |= autoneg_disable; + +	if (mp->phy->speed == SPEED_1000) { +		/* force gigabit, half duplex not supported */ +		pscr |= SET_GMII_SPEED_TO_1000; +		pscr |= SET_FULL_DUPLEX_MODE; +		goto out_write; +	} + +	pscr &= ~SET_GMII_SPEED_TO_1000; + +	if (mp->phy->speed == SPEED_100) +		pscr |= SET_MII_SPEED_TO_100; +	else +		pscr &= ~SET_MII_SPEED_TO_100; + +	if (mp->phy->duplex == DUPLEX_FULL) +		pscr |= SET_FULL_DUPLEX_MODE; +	else +		pscr &= ~SET_FULL_DUPLEX_MODE; + +out_write: +	wrlp(mp, PORT_SERIAL_CONTROL, pscr); +} +  static irqreturn_t mv643xx_eth_err_irq(int irq, void *dev_id)  {  	struct mv643xx_eth_shared_private *msp = dev_id; @@ -1499,6 +1538,7 @@ static int  mv643xx_eth_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)  {  	struct mv643xx_eth_private *mp = netdev_priv(dev); +	int ret;  	if (mp->phy == NULL)  		return -EINVAL; @@ -1508,7 +1548,10 @@ mv643xx_eth_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)  	 */  	cmd->advertising &= ~ADVERTISED_1000baseT_Half; -	return phy_ethtool_sset(mp->phy, cmd); +	ret = phy_ethtool_sset(mp->phy, cmd); +	if (!ret) +		mv643xx_adjust_pscr(mp); +	return ret;  }  static void mv643xx_eth_get_drvinfo(struct net_device *dev, @@ -2442,11 +2485,15 @@ static int mv643xx_eth_stop(struct net_device *dev)  static int mv643xx_eth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)  {  	struct mv643xx_eth_private *mp = netdev_priv(dev); +	int ret; -	if (mp->phy != NULL) -		return phy_mii_ioctl(mp->phy, ifr, cmd); +	if (mp->phy == NULL) +		return -ENOTSUPP; -	return -EOPNOTSUPP; +	ret = phy_mii_ioctl(mp->phy, ifr, cmd); +	if (!ret) +		mv643xx_adjust_pscr(mp); +	return ret;  }  static int mv643xx_eth_change_mtu(struct net_device *dev, int new_mtu) diff --git a/drivers/net/ethernet/mellanox/mlx4/cq.c b/drivers/net/ethernet/mellanox/mlx4/cq.c index 7e64033d7de..0706623cfb9 100644 --- a/drivers/net/ethernet/mellanox/mlx4/cq.c +++ b/drivers/net/ethernet/mellanox/mlx4/cq.c @@ -226,7 +226,7 @@ void __mlx4_cq_free_icm(struct mlx4_dev *dev, int cqn)  static void mlx4_cq_free_icm(struct mlx4_dev *dev, int cqn)  { -	u64 in_param; +	u64 in_param = 0;  	int err;  	if (mlx4_is_mfunc(dev)) { diff --git a/drivers/net/ethernet/mellanox/mlx4/en_netdev.c b/drivers/net/ethernet/mellanox/mlx4/en_netdev.c index bb4d8d99f36..995d4b6d5c1 100644 --- a/drivers/net/ethernet/mellanox/mlx4/en_netdev.c +++ b/drivers/net/ethernet/mellanox/mlx4/en_netdev.c @@ -565,34 +565,38 @@ static void mlx4_en_put_qp(struct mlx4_en_priv *priv)  	struct mlx4_en_dev *mdev = priv->mdev;  	struct mlx4_dev *dev = mdev->dev;  	int qpn = priv->base_qpn; -	u64 mac = mlx4_en_mac_to_u64(priv->dev->dev_addr); - -	en_dbg(DRV, priv, "Registering MAC: %pM for deleting\n", -	       priv->dev->dev_addr); -	mlx4_unregister_mac(dev, priv->port, mac); +	u64 mac; -	if (dev->caps.steering_mode != MLX4_STEERING_MODE_A0) { +	if (dev->caps.steering_mode == MLX4_STEERING_MODE_A0) { +		mac = mlx4_en_mac_to_u64(priv->dev->dev_addr); +		en_dbg(DRV, priv, "Registering MAC: %pM for deleting\n", +		       priv->dev->dev_addr); +		mlx4_unregister_mac(dev, priv->port, mac); +	} else {  		struct mlx4_mac_entry *entry;  		struct hlist_node *tmp;  		struct hlist_head *bucket; -		unsigned int mac_hash; +		unsigned int i; -		mac_hash = priv->dev->dev_addr[MLX4_EN_MAC_HASH_IDX]; -		bucket = &priv->mac_hash[mac_hash]; -		hlist_for_each_entry_safe(entry, tmp, bucket, hlist) { -			if (ether_addr_equal_64bits(entry->mac, -						    priv->dev->dev_addr)) { -				en_dbg(DRV, priv, "Releasing qp: port %d, MAC %pM, qpn %d\n", -				       priv->port, priv->dev->dev_addr, qpn); +		for (i = 0; i < MLX4_EN_MAC_HASH_SIZE; ++i) { +			bucket = &priv->mac_hash[i]; +			hlist_for_each_entry_safe(entry, tmp, bucket, hlist) { +				mac = mlx4_en_mac_to_u64(entry->mac); +				en_dbg(DRV, priv, "Registering MAC: %pM for deleting\n", +				       entry->mac);  				mlx4_en_uc_steer_release(priv, entry->mac,  							 qpn, entry->reg_id); -				mlx4_qp_release_range(dev, qpn, 1); +				mlx4_unregister_mac(dev, priv->port, mac);  				hlist_del_rcu(&entry->hlist);  				kfree_rcu(entry, rcu); -				break;  			}  		} + +		en_dbg(DRV, priv, "Releasing qp: port %d, qpn %d\n", +		       priv->port, qpn); +		mlx4_qp_release_range(dev, qpn, 1); +		priv->flags &= ~MLX4_EN_FLAG_FORCE_PROMISC;  	}  } @@ -650,28 +654,10 @@ u64 mlx4_en_mac_to_u64(u8 *addr)  	return mac;  } -static int mlx4_en_set_mac(struct net_device *dev, void *addr) -{ -	struct mlx4_en_priv *priv = netdev_priv(dev); -	struct mlx4_en_dev *mdev = priv->mdev; -	struct sockaddr *saddr = addr; - -	if (!is_valid_ether_addr(saddr->sa_data)) -		return -EADDRNOTAVAIL; - -	memcpy(dev->dev_addr, saddr->sa_data, ETH_ALEN); -	queue_work(mdev->workqueue, &priv->mac_task); -	return 0; -} - -static void mlx4_en_do_set_mac(struct work_struct *work) +static int mlx4_en_do_set_mac(struct mlx4_en_priv *priv)  { -	struct mlx4_en_priv *priv = container_of(work, struct mlx4_en_priv, -						 mac_task); -	struct mlx4_en_dev *mdev = priv->mdev;  	int err = 0; -	mutex_lock(&mdev->state_lock);  	if (priv->port_up) {  		/* Remove old MAC and insert the new one */  		err = mlx4_en_replace_mac(priv, priv->base_qpn, @@ -683,7 +669,26 @@ static void mlx4_en_do_set_mac(struct work_struct *work)  	} else  		en_dbg(HW, priv, "Port is down while registering mac, exiting...\n"); +	return err; +} + +static int mlx4_en_set_mac(struct net_device *dev, void *addr) +{ +	struct mlx4_en_priv *priv = netdev_priv(dev); +	struct mlx4_en_dev *mdev = priv->mdev; +	struct sockaddr *saddr = addr; +	int err; + +	if (!is_valid_ether_addr(saddr->sa_data)) +		return -EADDRNOTAVAIL; + +	memcpy(dev->dev_addr, saddr->sa_data, ETH_ALEN); + +	mutex_lock(&mdev->state_lock); +	err = mlx4_en_do_set_mac(priv);  	mutex_unlock(&mdev->state_lock); + +	return err;  }  static void mlx4_en_clear_list(struct net_device *dev) @@ -1348,7 +1353,7 @@ static void mlx4_en_do_get_stats(struct work_struct *work)  		queue_delayed_work(mdev->workqueue, &priv->stats_task, STATS_DELAY);  	}  	if (mdev->mac_removed[MLX4_MAX_PORTS + 1 - priv->port]) { -		queue_work(mdev->workqueue, &priv->mac_task); +		mlx4_en_do_set_mac(priv);  		mdev->mac_removed[MLX4_MAX_PORTS + 1 - priv->port] = 0;  	}  	mutex_unlock(&mdev->state_lock); @@ -1828,9 +1833,11 @@ int mlx4_en_alloc_resources(struct mlx4_en_priv *priv)  	}  #ifdef CONFIG_RFS_ACCEL -	priv->dev->rx_cpu_rmap = alloc_irq_cpu_rmap(priv->mdev->dev->caps.comp_pool); -	if (!priv->dev->rx_cpu_rmap) -		goto err; +	if (priv->mdev->dev->caps.comp_pool) { +		priv->dev->rx_cpu_rmap = alloc_irq_cpu_rmap(priv->mdev->dev->caps.comp_pool); +		if (!priv->dev->rx_cpu_rmap) +			goto err; +	}  #endif  	return 0; @@ -2078,7 +2085,6 @@ int mlx4_en_init_netdev(struct mlx4_en_dev *mdev, int port,  	priv->msg_enable = MLX4_EN_MSG_LEVEL;  	spin_lock_init(&priv->stats_lock);  	INIT_WORK(&priv->rx_mode_task, mlx4_en_do_set_rx_mode); -	INIT_WORK(&priv->mac_task, mlx4_en_do_set_mac);  	INIT_WORK(&priv->watchdog_task, mlx4_en_restart);  	INIT_WORK(&priv->linkstate_task, mlx4_en_linkstate);  	INIT_DELAYED_WORK(&priv->stats_task, mlx4_en_do_get_stats); diff --git a/drivers/net/ethernet/mellanox/mlx4/fw.c b/drivers/net/ethernet/mellanox/mlx4/fw.c index 50917eb3013..f6245579962 100644 --- a/drivers/net/ethernet/mellanox/mlx4/fw.c +++ b/drivers/net/ethernet/mellanox/mlx4/fw.c @@ -787,6 +787,14 @@ int mlx4_QUERY_DEV_CAP_wrapper(struct mlx4_dev *dev, int slave,  	bmme_flags &= ~MLX4_BMME_FLAG_TYPE_2_WIN;  	MLX4_PUT(outbox->buf, bmme_flags, QUERY_DEV_CAP_BMME_FLAGS_OFFSET); +	/* turn off device-managed steering capability if not enabled */ +	if (dev->caps.steering_mode != MLX4_STEERING_MODE_DEVICE_MANAGED) { +		MLX4_GET(field, outbox->buf, +			 QUERY_DEV_CAP_FLOW_STEERING_RANGE_EN_OFFSET); +		field &= 0x7f; +		MLX4_PUT(outbox->buf, field, +			 QUERY_DEV_CAP_FLOW_STEERING_RANGE_EN_OFFSET); +	}  	return 0;  } diff --git a/drivers/net/ethernet/mellanox/mlx4/main.c b/drivers/net/ethernet/mellanox/mlx4/main.c index d180bc46826..16abde20e1f 100644 --- a/drivers/net/ethernet/mellanox/mlx4/main.c +++ b/drivers/net/ethernet/mellanox/mlx4/main.c @@ -1555,7 +1555,7 @@ void __mlx4_counter_free(struct mlx4_dev *dev, u32 idx)  void mlx4_counter_free(struct mlx4_dev *dev, u32 idx)  { -	u64 in_param; +	u64 in_param = 0;  	if (mlx4_is_mfunc(dev)) {  		set_param_l(&in_param, idx); diff --git a/drivers/net/ethernet/mellanox/mlx4/mlx4.h b/drivers/net/ethernet/mellanox/mlx4/mlx4.h index cf883345af8..d738454116a 100644 --- a/drivers/net/ethernet/mellanox/mlx4/mlx4.h +++ b/drivers/net/ethernet/mellanox/mlx4/mlx4.h @@ -1235,7 +1235,7 @@ int mlx4_get_qp_per_mgm(struct mlx4_dev *dev);  static inline void set_param_l(u64 *arg, u32 val)  { -	*((u32 *)arg) = val; +	*arg = (*arg & 0xffffffff00000000ULL) | (u64) val;  }  static inline void set_param_h(u64 *arg, u32 val) diff --git a/drivers/net/ethernet/mellanox/mlx4/mlx4_en.h b/drivers/net/ethernet/mellanox/mlx4/mlx4_en.h index c313d7e943a..f710b7ce0dc 100644 --- a/drivers/net/ethernet/mellanox/mlx4/mlx4_en.h +++ b/drivers/net/ethernet/mellanox/mlx4/mlx4_en.h @@ -509,7 +509,6 @@ struct mlx4_en_priv {  	struct mlx4_en_cq rx_cq[MAX_RX_RINGS];  	struct mlx4_qp drop_qp;  	struct work_struct rx_mode_task; -	struct work_struct mac_task;  	struct work_struct watchdog_task;  	struct work_struct linkstate_task;  	struct delayed_work stats_task; diff --git a/drivers/net/ethernet/mellanox/mlx4/mr.c b/drivers/net/ethernet/mellanox/mlx4/mr.c index 602ca9bf78e..f91719a08cb 100644 --- a/drivers/net/ethernet/mellanox/mlx4/mr.c +++ b/drivers/net/ethernet/mellanox/mlx4/mr.c @@ -183,7 +183,7 @@ u32 __mlx4_alloc_mtt_range(struct mlx4_dev *dev, int order)  static u32 mlx4_alloc_mtt_range(struct mlx4_dev *dev, int order)  { -	u64 in_param; +	u64 in_param = 0;  	u64 out_param;  	int err; @@ -240,7 +240,7 @@ void __mlx4_free_mtt_range(struct mlx4_dev *dev, u32 offset, int order)  static void mlx4_free_mtt_range(struct mlx4_dev *dev, u32 offset, int order)  { -	u64 in_param; +	u64 in_param = 0;  	int err;  	if (mlx4_is_mfunc(dev)) { @@ -351,7 +351,7 @@ void __mlx4_mpt_release(struct mlx4_dev *dev, u32 index)  static void mlx4_mpt_release(struct mlx4_dev *dev, u32 index)  { -	u64 in_param; +	u64 in_param = 0;  	if (mlx4_is_mfunc(dev)) {  		set_param_l(&in_param, index); @@ -374,7 +374,7 @@ int __mlx4_mpt_alloc_icm(struct mlx4_dev *dev, u32 index)  static int mlx4_mpt_alloc_icm(struct mlx4_dev *dev, u32 index)  { -	u64 param; +	u64 param = 0;  	if (mlx4_is_mfunc(dev)) {  		set_param_l(¶m, index); @@ -395,7 +395,7 @@ void __mlx4_mpt_free_icm(struct mlx4_dev *dev, u32 index)  static void mlx4_mpt_free_icm(struct mlx4_dev *dev, u32 index)  { -	u64 in_param; +	u64 in_param = 0;  	if (mlx4_is_mfunc(dev)) {  		set_param_l(&in_param, index); diff --git a/drivers/net/ethernet/mellanox/mlx4/pd.c b/drivers/net/ethernet/mellanox/mlx4/pd.c index 1ac88637ad9..00f223acada 100644 --- a/drivers/net/ethernet/mellanox/mlx4/pd.c +++ b/drivers/net/ethernet/mellanox/mlx4/pd.c @@ -101,7 +101,7 @@ void __mlx4_xrcd_free(struct mlx4_dev *dev, u32 xrcdn)  void mlx4_xrcd_free(struct mlx4_dev *dev, u32 xrcdn)  { -	u64 in_param; +	u64 in_param = 0;  	int err;  	if (mlx4_is_mfunc(dev)) { diff --git a/drivers/net/ethernet/mellanox/mlx4/port.c b/drivers/net/ethernet/mellanox/mlx4/port.c index 719ead15e49..10c57c86388 100644 --- a/drivers/net/ethernet/mellanox/mlx4/port.c +++ b/drivers/net/ethernet/mellanox/mlx4/port.c @@ -175,7 +175,7 @@ EXPORT_SYMBOL_GPL(__mlx4_register_mac);  int mlx4_register_mac(struct mlx4_dev *dev, u8 port, u64 mac)  { -	u64 out_param; +	u64 out_param = 0;  	int err;  	if (mlx4_is_mfunc(dev)) { @@ -222,7 +222,7 @@ EXPORT_SYMBOL_GPL(__mlx4_unregister_mac);  void mlx4_unregister_mac(struct mlx4_dev *dev, u8 port, u64 mac)  { -	u64 out_param; +	u64 out_param = 0;  	if (mlx4_is_mfunc(dev)) {  		set_param_l(&out_param, port); @@ -361,7 +361,7 @@ out:  int mlx4_register_vlan(struct mlx4_dev *dev, u8 port, u16 vlan, int *index)  { -	u64 out_param; +	u64 out_param = 0;  	int err;  	if (mlx4_is_mfunc(dev)) { @@ -406,7 +406,7 @@ out:  void mlx4_unregister_vlan(struct mlx4_dev *dev, u8 port, int index)  { -	u64 in_param; +	u64 in_param = 0;  	int err;  	if (mlx4_is_mfunc(dev)) { diff --git a/drivers/net/ethernet/mellanox/mlx4/qp.c b/drivers/net/ethernet/mellanox/mlx4/qp.c index 81e2abe07bb..e891b058c1b 100644 --- a/drivers/net/ethernet/mellanox/mlx4/qp.c +++ b/drivers/net/ethernet/mellanox/mlx4/qp.c @@ -222,7 +222,7 @@ int __mlx4_qp_reserve_range(struct mlx4_dev *dev, int cnt, int align,  int mlx4_qp_reserve_range(struct mlx4_dev *dev, int cnt, int align, int *base)  { -	u64 in_param; +	u64 in_param = 0;  	u64 out_param;  	int err; @@ -255,7 +255,7 @@ void __mlx4_qp_release_range(struct mlx4_dev *dev, int base_qpn, int cnt)  void mlx4_qp_release_range(struct mlx4_dev *dev, int base_qpn, int cnt)  { -	u64 in_param; +	u64 in_param = 0;  	int err;  	if (mlx4_is_mfunc(dev)) { @@ -319,7 +319,7 @@ err_out:  static int mlx4_qp_alloc_icm(struct mlx4_dev *dev, int qpn)  { -	u64 param; +	u64 param = 0;  	if (mlx4_is_mfunc(dev)) {  		set_param_l(¶m, qpn); @@ -344,7 +344,7 @@ void __mlx4_qp_free_icm(struct mlx4_dev *dev, int qpn)  static void mlx4_qp_free_icm(struct mlx4_dev *dev, int qpn)  { -	u64 in_param; +	u64 in_param = 0;  	if (mlx4_is_mfunc(dev)) {  		set_param_l(&in_param, qpn); diff --git a/drivers/net/ethernet/mellanox/mlx4/resource_tracker.c b/drivers/net/ethernet/mellanox/mlx4/resource_tracker.c index 083fb48dc3d..2995687f1ae 100644 --- a/drivers/net/ethernet/mellanox/mlx4/resource_tracker.c +++ b/drivers/net/ethernet/mellanox/mlx4/resource_tracker.c @@ -2990,6 +2990,9 @@ int mlx4_QP_ATTACH_wrapper(struct mlx4_dev *dev, int slave,  	u8 steer_type_mask = 2;  	enum mlx4_steer_type type = (gid[7] & steer_type_mask) >> 1; +	if (dev->caps.steering_mode != MLX4_STEERING_MODE_B0) +		return -EINVAL; +  	qpn = vhcr->in_modifier & 0xffffff;  	err = get_res(dev, slave, qpn, RES_QP, &rqp);  	if (err) diff --git a/drivers/net/ethernet/mellanox/mlx4/srq.c b/drivers/net/ethernet/mellanox/mlx4/srq.c index feda6c00829..e329fe1f11b 100644 --- a/drivers/net/ethernet/mellanox/mlx4/srq.c +++ b/drivers/net/ethernet/mellanox/mlx4/srq.c @@ -149,7 +149,7 @@ void __mlx4_srq_free_icm(struct mlx4_dev *dev, int srqn)  static void mlx4_srq_free_icm(struct mlx4_dev *dev, int srqn)  { -	u64 in_param; +	u64 in_param = 0;  	if (mlx4_is_mfunc(dev)) {  		set_param_l(&in_param, srqn); diff --git a/drivers/net/ethernet/sfc/efx.h b/drivers/net/ethernet/sfc/efx.h index 50247dfe8f5..d2f790df6dc 100644 --- a/drivers/net/ethernet/sfc/efx.h +++ b/drivers/net/ethernet/sfc/efx.h @@ -171,9 +171,9 @@ static inline void efx_device_detach_sync(struct efx_nic *efx)  	 * TX scheduler is stopped when we're done and before  	 * netif_device_present() becomes false.  	 */ -	netif_tx_lock(dev); +	netif_tx_lock_bh(dev);  	netif_device_detach(dev); -	netif_tx_unlock(dev); +	netif_tx_unlock_bh(dev);  }  #endif /* EFX_EFX_H */ diff --git a/drivers/net/ethernet/sfc/nic.c b/drivers/net/ethernet/sfc/nic.c index 0ad790cc473..eaa8e874a3c 100644 --- a/drivers/net/ethernet/sfc/nic.c +++ b/drivers/net/ethernet/sfc/nic.c @@ -376,7 +376,8 @@ efx_may_push_tx_desc(struct efx_tx_queue *tx_queue, unsigned int write_count)  		return false;  	tx_queue->empty_read_count = 0; -	return ((empty_read_count ^ write_count) & ~EFX_EMPTY_COUNT_VALID) == 0; +	return ((empty_read_count ^ write_count) & ~EFX_EMPTY_COUNT_VALID) == 0 +		&& tx_queue->write_count - write_count == 1;  }  /* For each entry inserted into the software descriptor ring, create a diff --git a/drivers/net/ethernet/sfc/rx.c b/drivers/net/ethernet/sfc/rx.c index 879ff5849bb..bb579a6128c 100644 --- a/drivers/net/ethernet/sfc/rx.c +++ b/drivers/net/ethernet/sfc/rx.c @@ -215,7 +215,7 @@ static int efx_init_rx_buffers_page(struct efx_rx_queue *rx_queue)  		rx_buf = efx_rx_buffer(rx_queue, index);  		rx_buf->dma_addr = dma_addr + EFX_PAGE_IP_ALIGN;  		rx_buf->u.page = page; -		rx_buf->page_offset = page_offset; +		rx_buf->page_offset = page_offset + EFX_PAGE_IP_ALIGN;  		rx_buf->len = efx->rx_buffer_len - EFX_PAGE_IP_ALIGN;  		rx_buf->flags = EFX_RX_BUF_PAGE;  		++rx_queue->added_count; diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c index 01ffbc48698..75c48558e6f 100644 --- a/drivers/net/ethernet/ti/cpsw.c +++ b/drivers/net/ethernet/ti/cpsw.c @@ -905,7 +905,7 @@ static netdev_tx_t cpsw_ndo_start_xmit(struct sk_buff *skb,  	/* If there is no more tx desc left free then we need to  	 * tell the kernel to stop sending us tx frames.  	 */ -	if (unlikely(cpdma_check_free_tx_desc(priv->txch))) +	if (unlikely(!cpdma_check_free_tx_desc(priv->txch)))  		netif_stop_queue(ndev);  	return NETDEV_TX_OK; diff --git a/drivers/net/ethernet/ti/davinci_emac.c b/drivers/net/ethernet/ti/davinci_emac.c index 52c05366599..ae1b77aa199 100644 --- a/drivers/net/ethernet/ti/davinci_emac.c +++ b/drivers/net/ethernet/ti/davinci_emac.c @@ -1102,7 +1102,7 @@ static int emac_dev_xmit(struct sk_buff *skb, struct net_device *ndev)  	/* If there is no more tx desc left free then we need to  	 * tell the kernel to stop sending us tx frames.  	 */ -	if (unlikely(cpdma_check_free_tx_desc(priv->txchan))) +	if (unlikely(!cpdma_check_free_tx_desc(priv->txchan)))  		netif_stop_queue(ndev);  	return NETDEV_TX_OK; diff --git a/drivers/net/hippi/rrunner.c b/drivers/net/hippi/rrunner.c index e5b19b05690..3c4d6274bb9 100644 --- a/drivers/net/hippi/rrunner.c +++ b/drivers/net/hippi/rrunner.c @@ -202,6 +202,9 @@ static int rr_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)  	return 0;   out: +	if (rrpriv->evt_ring) +		pci_free_consistent(pdev, EVT_RING_SIZE, rrpriv->evt_ring, +				    rrpriv->evt_ring_dma);  	if (rrpriv->rx_ring)  		pci_free_consistent(pdev, RX_TOTAL_SIZE, rrpriv->rx_ring,  				    rrpriv->rx_ring_dma); diff --git a/drivers/net/macvlan.c b/drivers/net/macvlan.c index 417b2af1aa8..73abbc1655d 100644 --- a/drivers/net/macvlan.c +++ b/drivers/net/macvlan.c @@ -660,6 +660,7 @@ void macvlan_common_setup(struct net_device *dev)  	ether_setup(dev);  	dev->priv_flags	       &= ~(IFF_XMIT_DST_RELEASE | IFF_TX_SKB_SHARING); +	dev->priv_flags	       |= IFF_UNICAST_FLT;  	dev->netdev_ops		= &macvlan_netdev_ops;  	dev->destructor		= free_netdev;  	dev->header_ops		= &macvlan_hard_header_ops, diff --git a/drivers/net/netconsole.c b/drivers/net/netconsole.c index 37add21a3d7..59ac143dec2 100644 --- a/drivers/net/netconsole.c +++ b/drivers/net/netconsole.c @@ -666,6 +666,7 @@ static int netconsole_netdev_event(struct notifier_block *this,  		goto done;  	spin_lock_irqsave(&target_list_lock, flags); +restart:  	list_for_each_entry(nt, &target_list, list) {  		netconsole_target_get(nt);  		if (nt->np.dev == dev) { @@ -678,15 +679,17 @@ static int netconsole_netdev_event(struct notifier_block *this,  			case NETDEV_UNREGISTER:  				/*  				 * rtnl_lock already held +				 * we might sleep in __netpoll_cleanup()  				 */ -				if (nt->np.dev) { -					__netpoll_cleanup(&nt->np); -					dev_put(nt->np.dev); -					nt->np.dev = NULL; -				} +				spin_unlock_irqrestore(&target_list_lock, flags); +				__netpoll_cleanup(&nt->np); +				spin_lock_irqsave(&target_list_lock, flags); +				dev_put(nt->np.dev); +				nt->np.dev = NULL;  				nt->enabled = 0;  				stopped = true; -				break; +				netconsole_target_put(nt); +				goto restart;  			}  		}  		netconsole_target_put(nt); diff --git a/drivers/net/team/team.c b/drivers/net/team/team.c index 05c5efe8459..bf341929787 100644 --- a/drivers/net/team/team.c +++ b/drivers/net/team/team.c @@ -1138,6 +1138,8 @@ static int team_port_del(struct team *team, struct net_device *port_dev)  	netdev_upper_dev_unlink(port_dev, dev);  	team_port_disable_netpoll(port);  	vlan_vids_del_by_dev(port_dev, dev); +	dev_uc_unsync(port_dev, dev); +	dev_mc_unsync(port_dev, dev);  	dev_close(port_dev);  	team_port_leave(team, port); diff --git a/drivers/net/tun.c b/drivers/net/tun.c index 2c6a22e278e..b7c457adc0d 100644 --- a/drivers/net/tun.c +++ b/drivers/net/tun.c @@ -747,6 +747,8 @@ static netdev_tx_t tun_net_xmit(struct sk_buff *skb, struct net_device *dev)  		goto drop;  	skb_orphan(skb); +	nf_reset(skb); +  	/* Enqueue packet */  	skb_queue_tail(&tfile->socket.sk->sk_receive_queue, skb); diff --git a/drivers/net/usb/Kconfig b/drivers/net/usb/Kconfig index 3b6e9b83342..7c769d8e25a 100644 --- a/drivers/net/usb/Kconfig +++ b/drivers/net/usb/Kconfig @@ -268,7 +268,7 @@ config USB_NET_SMSC75XX  	select CRC16  	select CRC32  	help -	  This option adds support for SMSC LAN95XX based USB 2.0 +	  This option adds support for SMSC LAN75XX based USB 2.0  	  Gigabit Ethernet adapters.  config USB_NET_SMSC95XX diff --git a/drivers/net/usb/cdc_mbim.c b/drivers/net/usb/cdc_mbim.c index 248d2dc765a..16c84299729 100644 --- a/drivers/net/usb/cdc_mbim.c +++ b/drivers/net/usb/cdc_mbim.c @@ -68,18 +68,9 @@ static int cdc_mbim_bind(struct usbnet *dev, struct usb_interface *intf)  	struct cdc_ncm_ctx *ctx;  	struct usb_driver *subdriver = ERR_PTR(-ENODEV);  	int ret = -ENODEV; -	u8 data_altsetting = CDC_NCM_DATA_ALTSETTING_NCM; +	u8 data_altsetting = cdc_ncm_select_altsetting(dev, intf);  	struct cdc_mbim_state *info = (void *)&dev->data; -	/* see if interface supports MBIM alternate setting */ -	if (intf->num_altsetting == 2) { -		if (!cdc_ncm_comm_intf_is_mbim(intf->cur_altsetting)) -			usb_set_interface(dev->udev, -					  intf->cur_altsetting->desc.bInterfaceNumber, -					  CDC_NCM_COMM_ALTSETTING_MBIM); -		data_altsetting = CDC_NCM_DATA_ALTSETTING_MBIM; -	} -  	/* Probably NCM, defer for cdc_ncm_bind */  	if (!cdc_ncm_comm_intf_is_mbim(intf->cur_altsetting))  		goto err; diff --git a/drivers/net/usb/cdc_ncm.c b/drivers/net/usb/cdc_ncm.c index 61b74a2b89a..4709fa3497c 100644 --- a/drivers/net/usb/cdc_ncm.c +++ b/drivers/net/usb/cdc_ncm.c @@ -55,6 +55,14 @@  #define	DRIVER_VERSION				"14-Mar-2012" +#if IS_ENABLED(CONFIG_USB_NET_CDC_MBIM) +static bool prefer_mbim = true; +#else +static bool prefer_mbim; +#endif +module_param(prefer_mbim, bool, S_IRUGO | S_IWUSR); +MODULE_PARM_DESC(prefer_mbim, "Prefer MBIM setting on dual NCM/MBIM functions"); +  static void cdc_ncm_txpath_bh(unsigned long param);  static void cdc_ncm_tx_timeout_start(struct cdc_ncm_ctx *ctx);  static enum hrtimer_restart cdc_ncm_tx_timer_cb(struct hrtimer *hr_timer); @@ -550,9 +558,12 @@ void cdc_ncm_unbind(struct usbnet *dev, struct usb_interface *intf)  }  EXPORT_SYMBOL_GPL(cdc_ncm_unbind); -static int cdc_ncm_bind(struct usbnet *dev, struct usb_interface *intf) +/* Select the MBIM altsetting iff it is preferred and available, + * returning the number of the corresponding data interface altsetting + */ +u8 cdc_ncm_select_altsetting(struct usbnet *dev, struct usb_interface *intf)  { -	int ret; +	struct usb_host_interface *alt;  	/* The MBIM spec defines a NCM compatible default altsetting,  	 * which we may have matched: @@ -568,23 +579,27 @@ static int cdc_ncm_bind(struct usbnet *dev, struct usb_interface *intf)  	 *   endpoint descriptors, shall be constructed according to  	 *   the rules given in section 6 (USB Device Model) of this  	 *   specification." -	 * -	 * Do not bind to such interfaces, allowing cdc_mbim to handle -	 * them  	 */ -#if IS_ENABLED(CONFIG_USB_NET_CDC_MBIM) -	if ((intf->num_altsetting == 2) && -	    !usb_set_interface(dev->udev, -			       intf->cur_altsetting->desc.bInterfaceNumber, -			       CDC_NCM_COMM_ALTSETTING_MBIM)) { -		if (cdc_ncm_comm_intf_is_mbim(intf->cur_altsetting)) -			return -ENODEV; -		else -			usb_set_interface(dev->udev, -					  intf->cur_altsetting->desc.bInterfaceNumber, -					  CDC_NCM_COMM_ALTSETTING_NCM); +	if (prefer_mbim && intf->num_altsetting == 2) { +		alt = usb_altnum_to_altsetting(intf, CDC_NCM_COMM_ALTSETTING_MBIM); +		if (alt && cdc_ncm_comm_intf_is_mbim(alt) && +		    !usb_set_interface(dev->udev, +				       intf->cur_altsetting->desc.bInterfaceNumber, +				       CDC_NCM_COMM_ALTSETTING_MBIM)) +			return CDC_NCM_DATA_ALTSETTING_MBIM;  	} -#endif +	return CDC_NCM_DATA_ALTSETTING_NCM; +} +EXPORT_SYMBOL_GPL(cdc_ncm_select_altsetting); + +static int cdc_ncm_bind(struct usbnet *dev, struct usb_interface *intf) +{ +	int ret; + +	/* MBIM backwards compatible function? */ +	cdc_ncm_select_altsetting(dev, intf); +	if (cdc_ncm_comm_intf_is_mbim(intf->cur_altsetting)) +		return -ENODEV;  	/* NCM data altsetting is always 1 */  	ret = cdc_ncm_bind_common(dev, intf, 1); diff --git a/drivers/net/usb/qmi_wwan.c b/drivers/net/usb/qmi_wwan.c index efb5c7c33a2..968d5d50751 100644 --- a/drivers/net/usb/qmi_wwan.c +++ b/drivers/net/usb/qmi_wwan.c @@ -139,16 +139,9 @@ static int qmi_wwan_bind(struct usbnet *dev, struct usb_interface *intf)  	BUILD_BUG_ON((sizeof(((struct usbnet *)0)->data) < sizeof(struct qmi_wwan_state))); -	/* control and data is shared? */ -	if (intf->cur_altsetting->desc.bNumEndpoints == 3) { -		info->control = intf; -		info->data = intf; -		goto shared; -	} - -	/* else require a single interrupt status endpoint on control intf */ -	if (intf->cur_altsetting->desc.bNumEndpoints != 1) -		goto err; +	/* set up initial state */ +	info->control = intf; +	info->data = intf;  	/* and a number of CDC descriptors */  	while (len > 3) { @@ -207,25 +200,14 @@ next_desc:  		buf += h->bLength;  	} -	/* did we find all the required ones? */ -	if (!(found & (1 << USB_CDC_HEADER_TYPE)) || -	    !(found & (1 << USB_CDC_UNION_TYPE))) { -		dev_err(&intf->dev, "CDC functional descriptors missing\n"); -		goto err; -	} - -	/* verify CDC Union */ -	if (desc->bInterfaceNumber != cdc_union->bMasterInterface0) { -		dev_err(&intf->dev, "bogus CDC Union: master=%u\n", cdc_union->bMasterInterface0); -		goto err; -	} - -	/* need to save these for unbind */ -	info->control = intf; -	info->data = usb_ifnum_to_if(dev->udev,	cdc_union->bSlaveInterface0); -	if (!info->data) { -		dev_err(&intf->dev, "bogus CDC Union: slave=%u\n", cdc_union->bSlaveInterface0); -		goto err; +	/* Use separate control and data interfaces if we found a CDC Union */ +	if (cdc_union) { +		info->data = usb_ifnum_to_if(dev->udev, cdc_union->bSlaveInterface0); +		if (desc->bInterfaceNumber != cdc_union->bMasterInterface0 || !info->data) { +			dev_err(&intf->dev, "bogus CDC Union: master=%u, slave=%u\n", +				cdc_union->bMasterInterface0, cdc_union->bSlaveInterface0); +			goto err; +		}  	}  	/* errors aren't fatal - we can live with the dynamic address */ @@ -235,11 +217,12 @@ next_desc:  	}  	/* claim data interface and set it up */ -	status = usb_driver_claim_interface(driver, info->data, dev); -	if (status < 0) -		goto err; +	if (info->control != info->data) { +		status = usb_driver_claim_interface(driver, info->data, dev); +		if (status < 0) +			goto err; +	} -shared:  	status = qmi_wwan_register_subdriver(dev);  	if (status < 0 && info->control != info->data) {  		usb_set_intfdata(info->data, NULL); diff --git a/drivers/net/vmxnet3/vmxnet3_drv.c b/drivers/net/vmxnet3/vmxnet3_drv.c index 4aad350e4da..eae7a03d4f9 100644 --- a/drivers/net/vmxnet3/vmxnet3_drv.c +++ b/drivers/net/vmxnet3/vmxnet3_drv.c @@ -2958,6 +2958,7 @@ vmxnet3_probe_device(struct pci_dev *pdev,  	adapter->num_rx_queues = num_rx_queues;  	adapter->num_tx_queues = num_tx_queues; +	adapter->rx_buf_per_pkt = 1;  	size = sizeof(struct Vmxnet3_TxQueueDesc) * adapter->num_tx_queues;  	size += sizeof(struct Vmxnet3_RxQueueDesc) * adapter->num_rx_queues; diff --git a/drivers/net/vmxnet3/vmxnet3_ethtool.c b/drivers/net/vmxnet3/vmxnet3_ethtool.c index a0feb17a023..63a124340cb 100644 --- a/drivers/net/vmxnet3/vmxnet3_ethtool.c +++ b/drivers/net/vmxnet3/vmxnet3_ethtool.c @@ -472,6 +472,12 @@ vmxnet3_set_ringparam(struct net_device *netdev,  						VMXNET3_RX_RING_MAX_SIZE)  		return -EINVAL; +	/* if adapter not yet initialized, do nothing */ +	if (adapter->rx_buf_per_pkt == 0) { +		netdev_err(netdev, "adapter not completely initialized, " +			   "ring size cannot be changed yet\n"); +		return -EOPNOTSUPP; +	}  	/* round it up to a multiple of VMXNET3_RING_SIZE_ALIGN */  	new_tx_ring_size = (param->tx_pending + VMXNET3_RING_SIZE_MASK) & diff --git a/drivers/net/vmxnet3/vmxnet3_int.h b/drivers/net/vmxnet3/vmxnet3_int.h index 3198384689d..35418146fa1 100644 --- a/drivers/net/vmxnet3/vmxnet3_int.h +++ b/drivers/net/vmxnet3/vmxnet3_int.h @@ -70,10 +70,10 @@  /*   * Version numbers   */ -#define VMXNET3_DRIVER_VERSION_STRING   "1.1.29.0-k" +#define VMXNET3_DRIVER_VERSION_STRING   "1.1.30.0-k"  /* a 32-bit int, each byte encode a verion number in VMXNET3_DRIVER_VERSION */ -#define VMXNET3_DRIVER_VERSION_NUM      0x01011D00 +#define VMXNET3_DRIVER_VERSION_NUM      0x01011E00  #if defined(CONFIG_PCI_MSI)  	/* RSS only makes sense if MSI-X is supported. */ diff --git a/drivers/net/vxlan.c b/drivers/net/vxlan.c index f10e58ac9c1..7cee7a3068e 100644 --- a/drivers/net/vxlan.c +++ b/drivers/net/vxlan.c @@ -961,6 +961,8 @@ static netdev_tx_t vxlan_xmit(struct sk_buff *skb, struct net_device *dev)  	iph->ttl	= ttl ? : ip4_dst_hoplimit(&rt->dst);  	tunnel_ip_select_ident(skb, old_iph, &rt->dst); +	nf_reset(skb); +  	vxlan_set_owner(dev, skb);  	/* See iptunnel_xmit() */ @@ -1504,6 +1506,14 @@ static __net_init int vxlan_init_net(struct net *net)  static __net_exit void vxlan_exit_net(struct net *net)  {  	struct vxlan_net *vn = net_generic(net, vxlan_net_id); +	struct vxlan_dev *vxlan; +	unsigned h; + +	rtnl_lock(); +	for (h = 0; h < VNI_HASH_SIZE; ++h) +		hlist_for_each_entry(vxlan, &vn->vni_list[h], hlist) +			dev_close(vxlan->dev); +	rtnl_unlock();  	if (vn->sock) {  		sk_release_kernel(vn->sock->sk); diff --git a/drivers/net/wireless/iwlwifi/dvm/sta.c b/drivers/net/wireless/iwlwifi/dvm/sta.c index 94ef33838bc..b775769f832 100644 --- a/drivers/net/wireless/iwlwifi/dvm/sta.c +++ b/drivers/net/wireless/iwlwifi/dvm/sta.c @@ -151,7 +151,7 @@ int iwl_send_add_sta(struct iwl_priv *priv,  		       sta_id, sta->sta.addr, flags & CMD_ASYNC ?  "a" : "");  	if (!(flags & CMD_ASYNC)) { -		cmd.flags |= CMD_WANT_SKB | CMD_WANT_HCMD; +		cmd.flags |= CMD_WANT_SKB;  		might_sleep();  	} diff --git a/drivers/net/wireless/iwlwifi/iwl-devtrace.h b/drivers/net/wireless/iwlwifi/iwl-devtrace.h index 10f01793d7a..81aa91fab5a 100644 --- a/drivers/net/wireless/iwlwifi/iwl-devtrace.h +++ b/drivers/net/wireless/iwlwifi/iwl-devtrace.h @@ -363,7 +363,7 @@ TRACE_EVENT(iwlwifi_dev_hcmd,  		__entry->flags = cmd->flags;  		memcpy(__get_dynamic_array(hcmd), hdr, sizeof(*hdr)); -		for (i = 0; i < IWL_MAX_CMD_TFDS; i++) { +		for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {  			if (!cmd->len[i])  				continue;  			memcpy((u8 *)__get_dynamic_array(hcmd) + offset, diff --git a/drivers/net/wireless/iwlwifi/iwl-drv.c b/drivers/net/wireless/iwlwifi/iwl-drv.c index 6f228bb2b84..fbfd2d13711 100644 --- a/drivers/net/wireless/iwlwifi/iwl-drv.c +++ b/drivers/net/wireless/iwlwifi/iwl-drv.c @@ -1102,7 +1102,6 @@ void iwl_drv_stop(struct iwl_drv *drv)  /* shared module parameters */  struct iwl_mod_params iwlwifi_mod_params = { -	.amsdu_size_8K = 1,  	.restart_fw = 1,  	.plcp_check = true,  	.bt_coex_active = true, @@ -1207,7 +1206,7 @@ MODULE_PARM_DESC(11n_disable,  	"disable 11n functionality, bitmap: 1: full, 2: agg TX, 4: agg RX");  module_param_named(amsdu_size_8K, iwlwifi_mod_params.amsdu_size_8K,  		   int, S_IRUGO); -MODULE_PARM_DESC(amsdu_size_8K, "enable 8K amsdu size"); +MODULE_PARM_DESC(amsdu_size_8K, "enable 8K amsdu size (default 0)");  module_param_named(fw_restart, iwlwifi_mod_params.restart_fw, int, S_IRUGO);  MODULE_PARM_DESC(fw_restart, "restart firmware in case of error"); diff --git a/drivers/net/wireless/iwlwifi/iwl-modparams.h b/drivers/net/wireless/iwlwifi/iwl-modparams.h index e5e3a79eae2..2c2a729092f 100644 --- a/drivers/net/wireless/iwlwifi/iwl-modparams.h +++ b/drivers/net/wireless/iwlwifi/iwl-modparams.h @@ -91,7 +91,7 @@ enum iwl_power_level {   * @sw_crypto: using hardware encryption, default = 0   * @disable_11n: disable 11n capabilities, default = 0,   *	use IWL_DISABLE_HT_* constants - * @amsdu_size_8K: enable 8K amsdu size, default = 1 + * @amsdu_size_8K: enable 8K amsdu size, default = 0   * @restart_fw: restart firmware, default = 1   * @plcp_check: enable plcp health check, default = true   * @wd_disable: enable stuck queue check, default = 0 diff --git a/drivers/net/wireless/iwlwifi/iwl-trans.h b/drivers/net/wireless/iwlwifi/iwl-trans.h index 8c7bec6b9a0..0cac2b7af78 100644 --- a/drivers/net/wireless/iwlwifi/iwl-trans.h +++ b/drivers/net/wireless/iwlwifi/iwl-trans.h @@ -186,19 +186,13 @@ struct iwl_rx_packet {   * @CMD_ASYNC: Return right away and don't want for the response   * @CMD_WANT_SKB: valid only with CMD_SYNC. The caller needs the buffer of the   *	response. The caller needs to call iwl_free_resp when done. - * @CMD_WANT_HCMD: The caller needs to get the HCMD that was sent in the - *	response handler. Chunks flagged by %IWL_HCMD_DFL_NOCOPY won't be - *	copied. The pointer passed to the response handler is in the transport - *	ownership and don't need to be freed by the op_mode. This also means - *	that the pointer is invalidated after the op_mode's handler returns.   * @CMD_ON_DEMAND: This command is sent by the test mode pipe.   */  enum CMD_MODE {  	CMD_SYNC		= 0,  	CMD_ASYNC		= BIT(0),  	CMD_WANT_SKB		= BIT(1), -	CMD_WANT_HCMD		= BIT(2), -	CMD_ON_DEMAND		= BIT(3), +	CMD_ON_DEMAND		= BIT(2),  };  #define DEF_CMD_PAYLOAD_SIZE 320 @@ -217,7 +211,11 @@ struct iwl_device_cmd {  #define TFD_MAX_PAYLOAD_SIZE (sizeof(struct iwl_device_cmd)) -#define IWL_MAX_CMD_TFDS	2 +/* + * number of transfer buffers (fragments) per transmit frame descriptor; + * this is just the driver's idea, the hardware supports 20 + */ +#define IWL_MAX_CMD_TBS_PER_TFD	2  /**   * struct iwl_hcmd_dataflag - flag for each one of the chunks of the command @@ -254,15 +252,15 @@ enum iwl_hcmd_dataflag {   * @id: id of the host command   */  struct iwl_host_cmd { -	const void *data[IWL_MAX_CMD_TFDS]; +	const void *data[IWL_MAX_CMD_TBS_PER_TFD];  	struct iwl_rx_packet *resp_pkt;  	unsigned long _rx_page_addr;  	u32 _rx_page_order;  	int handler_status;  	u32 flags; -	u16 len[IWL_MAX_CMD_TFDS]; -	u8 dataflags[IWL_MAX_CMD_TFDS]; +	u16 len[IWL_MAX_CMD_TBS_PER_TFD]; +	u8 dataflags[IWL_MAX_CMD_TBS_PER_TFD];  	u8 id;  }; diff --git a/drivers/net/wireless/iwlwifi/mvm/fw-api.h b/drivers/net/wireless/iwlwifi/mvm/fw-api.h index 23eebda848b..2adb61f103f 100644 --- a/drivers/net/wireless/iwlwifi/mvm/fw-api.h +++ b/drivers/net/wireless/iwlwifi/mvm/fw-api.h @@ -762,18 +762,20 @@ struct iwl_phy_context_cmd {  #define IWL_RX_INFO_PHY_CNT 8  #define IWL_RX_INFO_AGC_IDX 1  #define IWL_RX_INFO_RSSI_AB_IDX 2 -#define IWL_RX_INFO_RSSI_C_IDX 3 -#define IWL_OFDM_AGC_DB_MSK 0xfe00 -#define IWL_OFDM_AGC_DB_POS 9 +#define IWL_OFDM_AGC_A_MSK 0x0000007f +#define IWL_OFDM_AGC_A_POS 0 +#define IWL_OFDM_AGC_B_MSK 0x00003f80 +#define IWL_OFDM_AGC_B_POS 7 +#define IWL_OFDM_AGC_CODE_MSK 0x3fe00000 +#define IWL_OFDM_AGC_CODE_POS 20  #define IWL_OFDM_RSSI_INBAND_A_MSK 0x00ff -#define IWL_OFDM_RSSI_ALLBAND_A_MSK 0xff00  #define IWL_OFDM_RSSI_A_POS 0 +#define IWL_OFDM_RSSI_ALLBAND_A_MSK 0xff00 +#define IWL_OFDM_RSSI_ALLBAND_A_POS 8  #define IWL_OFDM_RSSI_INBAND_B_MSK 0xff0000 -#define IWL_OFDM_RSSI_ALLBAND_B_MSK 0xff000000  #define IWL_OFDM_RSSI_B_POS 16 -#define IWL_OFDM_RSSI_INBAND_C_MSK 0x00ff -#define IWL_OFDM_RSSI_ALLBAND_C_MSK 0xff00 -#define IWL_OFDM_RSSI_C_POS 0 +#define IWL_OFDM_RSSI_ALLBAND_B_MSK 0xff000000 +#define IWL_OFDM_RSSI_ALLBAND_B_POS 24  /**   * struct iwl_rx_phy_info - phy info diff --git a/drivers/net/wireless/iwlwifi/mvm/fw.c b/drivers/net/wireless/iwlwifi/mvm/fw.c index d3d959db03a..500f818dba0 100644 --- a/drivers/net/wireless/iwlwifi/mvm/fw.c +++ b/drivers/net/wireless/iwlwifi/mvm/fw.c @@ -79,17 +79,8 @@  #define UCODE_VALID_OK	cpu_to_le32(0x1)  /* Default calibration values for WkP - set to INIT image w/o running */ -static const u8 wkp_calib_values_bb_filter[] = { 0xbf, 0x00, 0x5f, 0x00, 0x2f, -						 0x00, 0x18, 0x00 }; -static const u8 wkp_calib_values_rx_dc[] = { 0x7f, 0x7f, 0x7f, 0x7f, 0x7f, -					     0x7f, 0x7f, 0x7f }; -static const u8 wkp_calib_values_tx_lo[] = { 0x00, 0x00, 0x00, 0x00 }; -static const u8 wkp_calib_values_tx_iq[] = { 0xff, 0x00, 0xff, 0x00, 0x00, -					     0x00 }; -static const u8 wkp_calib_values_rx_iq[] = { 0xff, 0x00, 0x00, 0x00 };  static const u8 wkp_calib_values_rx_iq_skew[] = { 0x00, 0x00, 0x01, 0x00 };  static const u8 wkp_calib_values_tx_iq_skew[] = { 0x01, 0x00, 0x00, 0x00 }; -static const u8 wkp_calib_values_xtal[] = { 0xd2, 0xd2 };  struct iwl_calib_default_data {  	u16 size; @@ -99,12 +90,7 @@ struct iwl_calib_default_data {  #define CALIB_SIZE_N_DATA(_buf) {.size = sizeof(_buf), .data = &_buf}  static const struct iwl_calib_default_data wkp_calib_default_data[12] = { -	[5] = CALIB_SIZE_N_DATA(wkp_calib_values_rx_dc), -	[6] = CALIB_SIZE_N_DATA(wkp_calib_values_bb_filter), -	[7] = CALIB_SIZE_N_DATA(wkp_calib_values_tx_lo), -	[8] = CALIB_SIZE_N_DATA(wkp_calib_values_tx_iq),  	[9] = CALIB_SIZE_N_DATA(wkp_calib_values_tx_iq_skew), -	[10] = CALIB_SIZE_N_DATA(wkp_calib_values_rx_iq),  	[11] = CALIB_SIZE_N_DATA(wkp_calib_values_rx_iq_skew),  }; @@ -241,20 +227,6 @@ static int iwl_mvm_load_ucode_wait_alive(struct iwl_mvm *mvm,  	return 0;  } -#define IWL_HW_REV_ID_RAINBOW	0x2 -#define IWL_PROJ_TYPE_LHP	0x5 - -static u32 iwl_mvm_build_phy_cfg(struct iwl_mvm *mvm) -{ -	struct iwl_nvm_data *data = mvm->nvm_data; -	/* Temp calls to static definitions, will be changed to CSR calls */ -	u8 hw_rev_id = IWL_HW_REV_ID_RAINBOW; -	u8 project_type = IWL_PROJ_TYPE_LHP; - -	return data->radio_cfg_dash | (data->radio_cfg_step << 2) | -		(hw_rev_id << 4) | ((project_type & 0x7f) << 6) | -		(data->valid_tx_ant << 16) | (data->valid_rx_ant << 20); -}  static int iwl_send_phy_cfg_cmd(struct iwl_mvm *mvm)  { @@ -262,7 +234,7 @@ static int iwl_send_phy_cfg_cmd(struct iwl_mvm *mvm)  	enum iwl_ucode_type ucode_type = mvm->cur_ucode;  	/* Set parameters */ -	phy_cfg_cmd.phy_cfg = cpu_to_le32(iwl_mvm_build_phy_cfg(mvm)); +	phy_cfg_cmd.phy_cfg = cpu_to_le32(mvm->fw->phy_config);  	phy_cfg_cmd.calib_control.event_trigger =  		mvm->fw->default_calib[ucode_type].event_trigger;  	phy_cfg_cmd.calib_control.flow_trigger = @@ -275,103 +247,6 @@ static int iwl_send_phy_cfg_cmd(struct iwl_mvm *mvm)  				    sizeof(phy_cfg_cmd), &phy_cfg_cmd);  } -/* Starting with the new PHY DB implementation - New calibs are enabled */ -/* Value - 0x405e7 */ -#define IWL_CALIB_DEFAULT_FLOW_INIT	(IWL_CALIB_CFG_XTAL_IDX		|\ -					 IWL_CALIB_CFG_TEMPERATURE_IDX	|\ -					 IWL_CALIB_CFG_VOLTAGE_READ_IDX	|\ -					 IWL_CALIB_CFG_DC_IDX		|\ -					 IWL_CALIB_CFG_BB_FILTER_IDX	|\ -					 IWL_CALIB_CFG_LO_LEAKAGE_IDX	|\ -					 IWL_CALIB_CFG_TX_IQ_IDX	|\ -					 IWL_CALIB_CFG_RX_IQ_IDX	|\ -					 IWL_CALIB_CFG_AGC_IDX) - -#define IWL_CALIB_DEFAULT_EVENT_INIT	0x0 - -/* Value 0x41567 */ -#define IWL_CALIB_DEFAULT_FLOW_RUN	(IWL_CALIB_CFG_XTAL_IDX		|\ -					 IWL_CALIB_CFG_TEMPERATURE_IDX	|\ -					 IWL_CALIB_CFG_VOLTAGE_READ_IDX	|\ -					 IWL_CALIB_CFG_BB_FILTER_IDX	|\ -					 IWL_CALIB_CFG_DC_IDX		|\ -					 IWL_CALIB_CFG_TX_IQ_IDX	|\ -					 IWL_CALIB_CFG_RX_IQ_IDX	|\ -					 IWL_CALIB_CFG_SENSITIVITY_IDX	|\ -					 IWL_CALIB_CFG_AGC_IDX) - -#define IWL_CALIB_DEFAULT_EVENT_RUN	(IWL_CALIB_CFG_XTAL_IDX		|\ -					 IWL_CALIB_CFG_TEMPERATURE_IDX	|\ -					 IWL_CALIB_CFG_VOLTAGE_READ_IDX	|\ -					 IWL_CALIB_CFG_TX_PWR_IDX	|\ -					 IWL_CALIB_CFG_DC_IDX		|\ -					 IWL_CALIB_CFG_TX_IQ_IDX	|\ -					 IWL_CALIB_CFG_SENSITIVITY_IDX) - -/* - * Sets the calibrations trigger values that will be sent to the FW for runtime - * and init calibrations. - * The ones given in the FW TLV are not correct. - */ -static void iwl_set_default_calib_trigger(struct iwl_mvm *mvm) -{ -	struct iwl_tlv_calib_ctrl default_calib; - -	/* -	 * WkP FW TLV calib bits are wrong, overwrite them. -	 * This defines the dynamic calibrations which are implemented in the -	 * uCode both for init(flow) calculation and event driven calibs. -	 */ - -	/* Init Image */ -	default_calib.event_trigger = cpu_to_le32(IWL_CALIB_DEFAULT_EVENT_INIT); -	default_calib.flow_trigger = cpu_to_le32(IWL_CALIB_DEFAULT_FLOW_INIT); - -	if (default_calib.event_trigger != -	    mvm->fw->default_calib[IWL_UCODE_INIT].event_trigger) -		IWL_ERR(mvm, -			"Updating the event calib for INIT image: 0x%x -> 0x%x\n", -			mvm->fw->default_calib[IWL_UCODE_INIT].event_trigger, -			default_calib.event_trigger); -	if (default_calib.flow_trigger != -	    mvm->fw->default_calib[IWL_UCODE_INIT].flow_trigger) -		IWL_ERR(mvm, -			"Updating the flow calib for INIT image: 0x%x -> 0x%x\n", -			mvm->fw->default_calib[IWL_UCODE_INIT].flow_trigger, -			default_calib.flow_trigger); - -	memcpy((void *)&mvm->fw->default_calib[IWL_UCODE_INIT], -	       &default_calib, sizeof(struct iwl_tlv_calib_ctrl)); -	IWL_ERR(mvm, -		"Setting uCode init calibrations event 0x%x, trigger 0x%x\n", -		default_calib.event_trigger, -		default_calib.flow_trigger); - -	/* Run time image */ -	default_calib.event_trigger = cpu_to_le32(IWL_CALIB_DEFAULT_EVENT_RUN); -	default_calib.flow_trigger = cpu_to_le32(IWL_CALIB_DEFAULT_FLOW_RUN); - -	if (default_calib.event_trigger != -	    mvm->fw->default_calib[IWL_UCODE_REGULAR].event_trigger) -		IWL_ERR(mvm, -			"Updating the event calib for RT image: 0x%x -> 0x%x\n", -			mvm->fw->default_calib[IWL_UCODE_REGULAR].event_trigger, -			default_calib.event_trigger); -	if (default_calib.flow_trigger != -	    mvm->fw->default_calib[IWL_UCODE_REGULAR].flow_trigger) -		IWL_ERR(mvm, -			"Updating the flow calib for RT image: 0x%x -> 0x%x\n", -			mvm->fw->default_calib[IWL_UCODE_REGULAR].flow_trigger, -			default_calib.flow_trigger); - -	memcpy((void *)&mvm->fw->default_calib[IWL_UCODE_REGULAR], -	       &default_calib, sizeof(struct iwl_tlv_calib_ctrl)); -	IWL_ERR(mvm, -		"Setting uCode runtime calibs event 0x%x, trigger 0x%x\n", -		default_calib.event_trigger, -		default_calib.flow_trigger); -} -  static int iwl_set_default_calibrations(struct iwl_mvm *mvm)  {  	u8 cmd_raw[16]; /* holds the variable size commands */ @@ -446,8 +321,10 @@ int iwl_run_init_mvm_ucode(struct iwl_mvm *mvm, bool read_nvm)  	ret = iwl_nvm_check_version(mvm->nvm_data, mvm->trans);  	WARN_ON(ret); -	/* Override the calibrations from TLV and the const of fw */ -	iwl_set_default_calib_trigger(mvm); +	/* Send TX valid antennas before triggering calibrations */ +	ret = iwl_send_tx_ant_cfg(mvm, mvm->nvm_data->valid_tx_ant); +	if (ret) +		goto error;  	/* WkP doesn't have all calibrations, need to set default values */  	if (mvm->cfg->device_family == IWL_DEVICE_FAMILY_7000) { diff --git a/drivers/net/wireless/iwlwifi/mvm/mvm.h b/drivers/net/wireless/iwlwifi/mvm/mvm.h index 537711b1047..bdae700c769 100644 --- a/drivers/net/wireless/iwlwifi/mvm/mvm.h +++ b/drivers/net/wireless/iwlwifi/mvm/mvm.h @@ -80,7 +80,8 @@  #define IWL_INVALID_MAC80211_QUEUE	0xff  #define IWL_MVM_MAX_ADDRESSES		2 -#define IWL_RSSI_OFFSET 44 +/* RSSI offset for WkP */ +#define IWL_RSSI_OFFSET 50  enum iwl_mvm_tx_fifo {  	IWL_MVM_TX_FIFO_BK = 0, diff --git a/drivers/net/wireless/iwlwifi/mvm/ops.c b/drivers/net/wireless/iwlwifi/mvm/ops.c index aa59adf87db..d0f9c1e0475 100644 --- a/drivers/net/wireless/iwlwifi/mvm/ops.c +++ b/drivers/net/wireless/iwlwifi/mvm/ops.c @@ -624,12 +624,8 @@ static void iwl_mvm_free_skb(struct iwl_op_mode *op_mode, struct sk_buff *skb)  	ieee80211_free_txskb(mvm->hw, skb);  } -static void iwl_mvm_nic_error(struct iwl_op_mode *op_mode) +static void iwl_mvm_nic_restart(struct iwl_mvm *mvm)  { -	struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode); - -	iwl_mvm_dump_nic_error_log(mvm); -  	iwl_abort_notification_waits(&mvm->notif_wait);  	/* @@ -663,9 +659,21 @@ static void iwl_mvm_nic_error(struct iwl_op_mode *op_mode)  	}  } +static void iwl_mvm_nic_error(struct iwl_op_mode *op_mode) +{ +	struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode); + +	iwl_mvm_dump_nic_error_log(mvm); + +	iwl_mvm_nic_restart(mvm); +} +  static void iwl_mvm_cmd_queue_full(struct iwl_op_mode *op_mode)  { +	struct iwl_mvm *mvm = IWL_OP_MODE_GET_MVM(op_mode); +  	WARN_ON(1); +	iwl_mvm_nic_restart(mvm);  }  static const struct iwl_op_mode_ops iwl_mvm_ops = { diff --git a/drivers/net/wireless/iwlwifi/mvm/rx.c b/drivers/net/wireless/iwlwifi/mvm/rx.c index 3f40ab05bbd..b0b190d0ec2 100644 --- a/drivers/net/wireless/iwlwifi/mvm/rx.c +++ b/drivers/net/wireless/iwlwifi/mvm/rx.c @@ -131,33 +131,42 @@ static void iwl_mvm_pass_packet_to_mac80211(struct iwl_mvm *mvm,  static int iwl_mvm_calc_rssi(struct iwl_mvm *mvm,  			     struct iwl_rx_phy_info *phy_info)  { -	u32 rssi_a, rssi_b, rssi_c, max_rssi, agc_db; +	int rssi_a, rssi_b, rssi_a_dbm, rssi_b_dbm, max_rssi_dbm; +	int rssi_all_band_a, rssi_all_band_b; +	u32 agc_a, agc_b, max_agc;  	u32 val; -	/* Find max rssi among 3 possible receivers. +	/* Find max rssi among 2 possible receivers.  	 * These values are measured by the Digital Signal Processor (DSP).  	 * They should stay fairly constant even as the signal strength varies,  	 * if the radio's Automatic Gain Control (AGC) is working right.  	 * AGC value (see below) will provide the "interesting" info.  	 */ +	val = le32_to_cpu(phy_info->non_cfg_phy[IWL_RX_INFO_AGC_IDX]); +	agc_a = (val & IWL_OFDM_AGC_A_MSK) >> IWL_OFDM_AGC_A_POS; +	agc_b = (val & IWL_OFDM_AGC_B_MSK) >> IWL_OFDM_AGC_B_POS; +	max_agc = max_t(u32, agc_a, agc_b); +  	val = le32_to_cpu(phy_info->non_cfg_phy[IWL_RX_INFO_RSSI_AB_IDX]);  	rssi_a = (val & IWL_OFDM_RSSI_INBAND_A_MSK) >> IWL_OFDM_RSSI_A_POS;  	rssi_b = (val & IWL_OFDM_RSSI_INBAND_B_MSK) >> IWL_OFDM_RSSI_B_POS; -	val = le32_to_cpu(phy_info->non_cfg_phy[IWL_RX_INFO_RSSI_C_IDX]); -	rssi_c = (val & IWL_OFDM_RSSI_INBAND_C_MSK) >> IWL_OFDM_RSSI_C_POS; - -	val = le32_to_cpu(phy_info->non_cfg_phy[IWL_RX_INFO_AGC_IDX]); -	agc_db = (val & IWL_OFDM_AGC_DB_MSK) >> IWL_OFDM_AGC_DB_POS; +	rssi_all_band_a = (val & IWL_OFDM_RSSI_ALLBAND_A_MSK) >> +				IWL_OFDM_RSSI_ALLBAND_A_POS; +	rssi_all_band_b = (val & IWL_OFDM_RSSI_ALLBAND_B_MSK) >> +				IWL_OFDM_RSSI_ALLBAND_B_POS; -	max_rssi = max_t(u32, rssi_a, rssi_b); -	max_rssi = max_t(u32, max_rssi, rssi_c); +	/* +	 * dBm = rssi dB - agc dB - constant. +	 * Higher AGC (higher radio gain) means lower signal. +	 */ +	rssi_a_dbm = rssi_a - IWL_RSSI_OFFSET - agc_a; +	rssi_b_dbm = rssi_b - IWL_RSSI_OFFSET - agc_b; +	max_rssi_dbm = max_t(int, rssi_a_dbm, rssi_b_dbm); -	IWL_DEBUG_STATS(mvm, "Rssi In A %d B %d C %d Max %d AGC dB %d\n", -			rssi_a, rssi_b, rssi_c, max_rssi, agc_db); +	IWL_DEBUG_STATS(mvm, "Rssi In A %d B %d Max %d AGCA %d AGCB %d\n", +			rssi_a_dbm, rssi_b_dbm, max_rssi_dbm, agc_a, agc_b); -	/* dBm = max_rssi dB - agc dB - constant. -	 * Higher AGC (higher radio gain) means lower signal. */ -	return max_rssi - agc_db - IWL_RSSI_OFFSET; +	return max_rssi_dbm;  }  /* diff --git a/drivers/net/wireless/iwlwifi/mvm/sta.c b/drivers/net/wireless/iwlwifi/mvm/sta.c index 861a7f9f8e7..274f44e2ef6 100644 --- a/drivers/net/wireless/iwlwifi/mvm/sta.c +++ b/drivers/net/wireless/iwlwifi/mvm/sta.c @@ -770,6 +770,16 @@ int iwl_mvm_sta_tx_agg_stop(struct iwl_mvm *mvm, struct ieee80211_vif *vif,  	u16 txq_id;  	int err; + +	/* +	 * If mac80211 is cleaning its state, then say that we finished since +	 * our state has been cleared anyway. +	 */ +	if (test_bit(IWL_MVM_STATUS_IN_HW_RESTART, &mvm->status)) { +		ieee80211_stop_tx_ba_cb_irqsafe(vif, sta->addr, tid); +		return 0; +	} +  	spin_lock_bh(&mvmsta->lock);  	txq_id = tid_data->txq_id; diff --git a/drivers/net/wireless/iwlwifi/mvm/tx.c b/drivers/net/wireless/iwlwifi/mvm/tx.c index 6b67ce3f679..6645efe5c03 100644 --- a/drivers/net/wireless/iwlwifi/mvm/tx.c +++ b/drivers/net/wireless/iwlwifi/mvm/tx.c @@ -607,12 +607,8 @@ static void iwl_mvm_rx_tx_cmd_single(struct iwl_mvm *mvm,  		/* Single frame failure in an AMPDU queue => send BAR */  		if (txq_id >= IWL_FIRST_AMPDU_QUEUE && -		    !(info->flags & IEEE80211_TX_STAT_ACK)) { -			/* there must be only one skb in the skb_list */ -			WARN_ON_ONCE(skb_freed > 1 || -				     !skb_queue_empty(&skbs)); +		    !(info->flags & IEEE80211_TX_STAT_ACK))  			info->flags |= IEEE80211_TX_STAT_AMPDU_NO_BACK; -		}  		/* W/A FW bug: seq_ctl is wrong when the queue is flushed */  		if (status == TX_STATUS_FAIL_FIFO_FLUSHED) { diff --git a/drivers/net/wireless/iwlwifi/pcie/internal.h b/drivers/net/wireless/iwlwifi/pcie/internal.h index 3d62e805535..148843e7f34 100644 --- a/drivers/net/wireless/iwlwifi/pcie/internal.h +++ b/drivers/net/wireless/iwlwifi/pcie/internal.h @@ -137,10 +137,6 @@ static inline int iwl_queue_dec_wrap(int index, int n_bd)  struct iwl_cmd_meta {  	/* only for SYNC commands, iff the reply skb is wanted */  	struct iwl_host_cmd *source; - -	DEFINE_DMA_UNMAP_ADDR(mapping); -	DEFINE_DMA_UNMAP_LEN(len); -  	u32 flags;  }; @@ -185,25 +181,36 @@ struct iwl_queue {  /*   * The FH will write back to the first TB only, so we need   * to copy some data into the buffer regardless of whether - * it should be mapped or not. This indicates how much to - * copy, even for HCMDs it must be big enough to fit the - * DRAM scratch from the TX cmd, at least 16 bytes. + * it should be mapped or not. This indicates how big the + * first TB must be to include the scratch buffer. Since + * the scratch is 4 bytes at offset 12, it's 16 now. If we + * make it bigger then allocations will be bigger and copy + * slower, so that's probably not useful.   */ -#define IWL_HCMD_MIN_COPY_SIZE	16 +#define IWL_HCMD_SCRATCHBUF_SIZE	16  struct iwl_pcie_txq_entry {  	struct iwl_device_cmd *cmd; -	struct iwl_device_cmd *copy_cmd;  	struct sk_buff *skb;  	/* buffer to free after command completes */  	const void *free_buf;  	struct iwl_cmd_meta meta;  }; +struct iwl_pcie_txq_scratch_buf { +	struct iwl_cmd_header hdr; +	u8 buf[8]; +	__le32 scratch; +}; +  /**   * struct iwl_txq - Tx Queue for DMA   * @q: generic Rx/Tx queue descriptor   * @tfds: transmit frame descriptors (DMA memory) + * @scratchbufs: start of command headers, including scratch buffers, for + *	the writeback -- this is DMA memory and an array holding one buffer + *	for each command on the queue + * @scratchbufs_dma: DMA address for the scratchbufs start   * @entries: transmit entries (driver state)   * @lock: queue lock   * @stuck_timer: timer that fires if queue gets stuck @@ -217,6 +224,8 @@ struct iwl_pcie_txq_entry {  struct iwl_txq {  	struct iwl_queue q;  	struct iwl_tfd *tfds; +	struct iwl_pcie_txq_scratch_buf *scratchbufs; +	dma_addr_t scratchbufs_dma;  	struct iwl_pcie_txq_entry *entries;  	spinlock_t lock;  	struct timer_list stuck_timer; @@ -225,6 +234,13 @@ struct iwl_txq {  	u8 active;  }; +static inline dma_addr_t +iwl_pcie_get_scratchbuf_dma(struct iwl_txq *txq, int idx) +{ +	return txq->scratchbufs_dma + +	       sizeof(struct iwl_pcie_txq_scratch_buf) * idx; +} +  /**   * struct iwl_trans_pcie - PCIe transport specific data   * @rxq: all the RX queue data diff --git a/drivers/net/wireless/iwlwifi/pcie/rx.c b/drivers/net/wireless/iwlwifi/pcie/rx.c index b0ae06d2456..567e67ad1f6 100644 --- a/drivers/net/wireless/iwlwifi/pcie/rx.c +++ b/drivers/net/wireless/iwlwifi/pcie/rx.c @@ -637,22 +637,14 @@ static void iwl_pcie_rx_handle_rb(struct iwl_trans *trans,  		index = SEQ_TO_INDEX(sequence);  		cmd_index = get_cmd_index(&txq->q, index); -		if (reclaim) { -			struct iwl_pcie_txq_entry *ent; -			ent = &txq->entries[cmd_index]; -			cmd = ent->copy_cmd; -			WARN_ON_ONCE(!cmd && ent->meta.flags & CMD_WANT_HCMD); -		} else { +		if (reclaim) +			cmd = txq->entries[cmd_index].cmd; +		else  			cmd = NULL; -		}  		err = iwl_op_mode_rx(trans->op_mode, &rxcb, cmd);  		if (reclaim) { -			/* The original command isn't needed any more */ -			kfree(txq->entries[cmd_index].copy_cmd); -			txq->entries[cmd_index].copy_cmd = NULL; -			/* nor is the duplicated part of the command */  			kfree(txq->entries[cmd_index].free_buf);  			txq->entries[cmd_index].free_buf = NULL;  		} diff --git a/drivers/net/wireless/iwlwifi/pcie/tx.c b/drivers/net/wireless/iwlwifi/pcie/tx.c index 8b625a7f568..8595c16f74d 100644 --- a/drivers/net/wireless/iwlwifi/pcie/tx.c +++ b/drivers/net/wireless/iwlwifi/pcie/tx.c @@ -191,12 +191,9 @@ static void iwl_pcie_txq_stuck_timer(unsigned long data)  	}  	for (i = q->read_ptr; i != q->write_ptr; -	     i = iwl_queue_inc_wrap(i, q->n_bd)) { -		struct iwl_tx_cmd *tx_cmd = -			(struct iwl_tx_cmd *)txq->entries[i].cmd->payload; +	     i = iwl_queue_inc_wrap(i, q->n_bd))  		IWL_ERR(trans, "scratch %d = 0x%08x\n", i, -			get_unaligned_le32(&tx_cmd->scratch)); -	} +			le32_to_cpu(txq->scratchbufs[i].scratch));  	iwl_op_mode_nic_error(trans->op_mode);  } @@ -367,8 +364,8 @@ static inline u8 iwl_pcie_tfd_get_num_tbs(struct iwl_tfd *tfd)  }  static void iwl_pcie_tfd_unmap(struct iwl_trans *trans, -			       struct iwl_cmd_meta *meta, struct iwl_tfd *tfd, -			       enum dma_data_direction dma_dir) +			       struct iwl_cmd_meta *meta, +			       struct iwl_tfd *tfd)  {  	int i;  	int num_tbs; @@ -382,17 +379,12 @@ static void iwl_pcie_tfd_unmap(struct iwl_trans *trans,  		return;  	} -	/* Unmap tx_cmd */ -	if (num_tbs) -		dma_unmap_single(trans->dev, -				dma_unmap_addr(meta, mapping), -				dma_unmap_len(meta, len), -				DMA_BIDIRECTIONAL); +	/* first TB is never freed - it's the scratchbuf data */ -	/* Unmap chunks, if any. */  	for (i = 1; i < num_tbs; i++)  		dma_unmap_single(trans->dev, iwl_pcie_tfd_tb_get_addr(tfd, i), -				 iwl_pcie_tfd_tb_get_len(tfd, i), dma_dir); +				 iwl_pcie_tfd_tb_get_len(tfd, i), +				 DMA_TO_DEVICE);  	tfd->num_tbs = 0;  } @@ -406,8 +398,7 @@ static void iwl_pcie_tfd_unmap(struct iwl_trans *trans,   * Does NOT advance any TFD circular buffer read/write indexes   * Does NOT free the TFD itself (which is within circular buffer)   */ -static void iwl_pcie_txq_free_tfd(struct iwl_trans *trans, struct iwl_txq *txq, -				  enum dma_data_direction dma_dir) +static void iwl_pcie_txq_free_tfd(struct iwl_trans *trans, struct iwl_txq *txq)  {  	struct iwl_tfd *tfd_tmp = txq->tfds; @@ -418,8 +409,7 @@ static void iwl_pcie_txq_free_tfd(struct iwl_trans *trans, struct iwl_txq *txq,  	lockdep_assert_held(&txq->lock);  	/* We have only q->n_window txq->entries, but we use q->n_bd tfds */ -	iwl_pcie_tfd_unmap(trans, &txq->entries[idx].meta, &tfd_tmp[rd_ptr], -			   dma_dir); +	iwl_pcie_tfd_unmap(trans, &txq->entries[idx].meta, &tfd_tmp[rd_ptr]);  	/* free SKB */  	if (txq->entries) { @@ -479,6 +469,7 @@ static int iwl_pcie_txq_alloc(struct iwl_trans *trans,  {  	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);  	size_t tfd_sz = sizeof(struct iwl_tfd) * TFD_QUEUE_SIZE_MAX; +	size_t scratchbuf_sz;  	int i;  	if (WARN_ON(txq->entries || txq->tfds)) @@ -514,9 +505,25 @@ static int iwl_pcie_txq_alloc(struct iwl_trans *trans,  		IWL_ERR(trans, "dma_alloc_coherent(%zd) failed\n", tfd_sz);  		goto error;  	} + +	BUILD_BUG_ON(IWL_HCMD_SCRATCHBUF_SIZE != sizeof(*txq->scratchbufs)); +	BUILD_BUG_ON(offsetof(struct iwl_pcie_txq_scratch_buf, scratch) != +			sizeof(struct iwl_cmd_header) + +			offsetof(struct iwl_tx_cmd, scratch)); + +	scratchbuf_sz = sizeof(*txq->scratchbufs) * slots_num; + +	txq->scratchbufs = dma_alloc_coherent(trans->dev, scratchbuf_sz, +					      &txq->scratchbufs_dma, +					      GFP_KERNEL); +	if (!txq->scratchbufs) +		goto err_free_tfds; +  	txq->q.id = txq_id;  	return 0; +err_free_tfds: +	dma_free_coherent(trans->dev, tfd_sz, txq->tfds, txq->q.dma_addr);  error:  	if (txq->entries && txq_id == trans_pcie->cmd_queue)  		for (i = 0; i < slots_num; i++) @@ -565,22 +572,13 @@ static void iwl_pcie_txq_unmap(struct iwl_trans *trans, int txq_id)  	struct iwl_trans_pcie *trans_pcie = IWL_TRANS_GET_PCIE_TRANS(trans);  	struct iwl_txq *txq = &trans_pcie->txq[txq_id];  	struct iwl_queue *q = &txq->q; -	enum dma_data_direction dma_dir;  	if (!q->n_bd)  		return; -	/* In the command queue, all the TBs are mapped as BIDI -	 * so unmap them as such. -	 */ -	if (txq_id == trans_pcie->cmd_queue) -		dma_dir = DMA_BIDIRECTIONAL; -	else -		dma_dir = DMA_TO_DEVICE; -  	spin_lock_bh(&txq->lock);  	while (q->write_ptr != q->read_ptr) { -		iwl_pcie_txq_free_tfd(trans, txq, dma_dir); +		iwl_pcie_txq_free_tfd(trans, txq);  		q->read_ptr = iwl_queue_inc_wrap(q->read_ptr, q->n_bd);  	}  	spin_unlock_bh(&txq->lock); @@ -610,7 +608,6 @@ static void iwl_pcie_txq_free(struct iwl_trans *trans, int txq_id)  	if (txq_id == trans_pcie->cmd_queue)  		for (i = 0; i < txq->q.n_window; i++) {  			kfree(txq->entries[i].cmd); -			kfree(txq->entries[i].copy_cmd);  			kfree(txq->entries[i].free_buf);  		} @@ -619,6 +616,10 @@ static void iwl_pcie_txq_free(struct iwl_trans *trans, int txq_id)  		dma_free_coherent(dev, sizeof(struct iwl_tfd) *  				  txq->q.n_bd, txq->tfds, txq->q.dma_addr);  		txq->q.dma_addr = 0; + +		dma_free_coherent(dev, +				  sizeof(*txq->scratchbufs) * txq->q.n_window, +				  txq->scratchbufs, txq->scratchbufs_dma);  	}  	kfree(txq->entries); @@ -962,7 +963,7 @@ void iwl_trans_pcie_reclaim(struct iwl_trans *trans, int txq_id, int ssn,  		iwl_pcie_txq_inval_byte_cnt_tbl(trans, txq); -		iwl_pcie_txq_free_tfd(trans, txq, DMA_TO_DEVICE); +		iwl_pcie_txq_free_tfd(trans, txq);  	}  	iwl_pcie_txq_progress(trans_pcie, txq); @@ -1152,29 +1153,29 @@ static int iwl_pcie_enqueue_hcmd(struct iwl_trans *trans,  	void *dup_buf = NULL;  	dma_addr_t phys_addr;  	int idx; -	u16 copy_size, cmd_size, dma_size; +	u16 copy_size, cmd_size, scratch_size;  	bool had_nocopy = false;  	int i;  	u32 cmd_pos; -	const u8 *cmddata[IWL_MAX_CMD_TFDS]; -	u16 cmdlen[IWL_MAX_CMD_TFDS]; +	const u8 *cmddata[IWL_MAX_CMD_TBS_PER_TFD]; +	u16 cmdlen[IWL_MAX_CMD_TBS_PER_TFD];  	copy_size = sizeof(out_cmd->hdr);  	cmd_size = sizeof(out_cmd->hdr);  	/* need one for the header if the first is NOCOPY */ -	BUILD_BUG_ON(IWL_MAX_CMD_TFDS > IWL_NUM_OF_TBS - 1); +	BUILD_BUG_ON(IWL_MAX_CMD_TBS_PER_TFD > IWL_NUM_OF_TBS - 1); -	for (i = 0; i < IWL_MAX_CMD_TFDS; i++) { +	for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {  		cmddata[i] = cmd->data[i];  		cmdlen[i] = cmd->len[i];  		if (!cmd->len[i])  			continue; -		/* need at least IWL_HCMD_MIN_COPY_SIZE copied */ -		if (copy_size < IWL_HCMD_MIN_COPY_SIZE) { -			int copy = IWL_HCMD_MIN_COPY_SIZE - copy_size; +		/* need at least IWL_HCMD_SCRATCHBUF_SIZE copied */ +		if (copy_size < IWL_HCMD_SCRATCHBUF_SIZE) { +			int copy = IWL_HCMD_SCRATCHBUF_SIZE - copy_size;  			if (copy > cmdlen[i])  				copy = cmdlen[i]; @@ -1260,15 +1261,15 @@ static int iwl_pcie_enqueue_hcmd(struct iwl_trans *trans,  	/* and copy the data that needs to be copied */  	cmd_pos = offsetof(struct iwl_device_cmd, payload);  	copy_size = sizeof(out_cmd->hdr); -	for (i = 0; i < IWL_MAX_CMD_TFDS; i++) { +	for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {  		int copy = 0;  		if (!cmd->len)  			continue; -		/* need at least IWL_HCMD_MIN_COPY_SIZE copied */ -		if (copy_size < IWL_HCMD_MIN_COPY_SIZE) { -			copy = IWL_HCMD_MIN_COPY_SIZE - copy_size; +		/* need at least IWL_HCMD_SCRATCHBUF_SIZE copied */ +		if (copy_size < IWL_HCMD_SCRATCHBUF_SIZE) { +			copy = IWL_HCMD_SCRATCHBUF_SIZE - copy_size;  			if (copy > cmd->len[i])  				copy = cmd->len[i]; @@ -1286,50 +1287,38 @@ static int iwl_pcie_enqueue_hcmd(struct iwl_trans *trans,  		}  	} -	WARN_ON_ONCE(txq->entries[idx].copy_cmd); - -	/* -	 * since out_cmd will be the source address of the FH, it will write -	 * the retry count there. So when the user needs to receivce the HCMD -	 * that corresponds to the response in the response handler, it needs -	 * to set CMD_WANT_HCMD. -	 */ -	if (cmd->flags & CMD_WANT_HCMD) { -		txq->entries[idx].copy_cmd = -			kmemdup(out_cmd, cmd_pos, GFP_ATOMIC); -		if (unlikely(!txq->entries[idx].copy_cmd)) { -			idx = -ENOMEM; -			goto out; -		} -	} -  	IWL_DEBUG_HC(trans,  		     "Sending command %s (#%x), seq: 0x%04X, %d bytes at %d[%d]:%d\n",  		     get_cmd_string(trans_pcie, out_cmd->hdr.cmd),  		     out_cmd->hdr.cmd, le16_to_cpu(out_cmd->hdr.sequence),  		     cmd_size, q->write_ptr, idx, trans_pcie->cmd_queue); -	/* -	 * If the entire command is smaller than IWL_HCMD_MIN_COPY_SIZE, we must -	 * still map at least that many bytes for the hardware to write back to. -	 * We have enough space, so that's not a problem. -	 */ -	dma_size = max_t(u16, copy_size, IWL_HCMD_MIN_COPY_SIZE); - -	phys_addr = dma_map_single(trans->dev, &out_cmd->hdr, dma_size, -				   DMA_BIDIRECTIONAL); -	if (unlikely(dma_mapping_error(trans->dev, phys_addr))) { -		idx = -ENOMEM; -		goto out; -	} +	/* start the TFD with the scratchbuf */ +	scratch_size = min_t(int, copy_size, IWL_HCMD_SCRATCHBUF_SIZE); +	memcpy(&txq->scratchbufs[q->write_ptr], &out_cmd->hdr, scratch_size); +	iwl_pcie_txq_build_tfd(trans, txq, +			       iwl_pcie_get_scratchbuf_dma(txq, q->write_ptr), +			       scratch_size, 1); -	dma_unmap_addr_set(out_meta, mapping, phys_addr); -	dma_unmap_len_set(out_meta, len, dma_size); +	/* map first command fragment, if any remains */ +	if (copy_size > scratch_size) { +		phys_addr = dma_map_single(trans->dev, +					   ((u8 *)&out_cmd->hdr) + scratch_size, +					   copy_size - scratch_size, +					   DMA_TO_DEVICE); +		if (dma_mapping_error(trans->dev, phys_addr)) { +			iwl_pcie_tfd_unmap(trans, out_meta, +					   &txq->tfds[q->write_ptr]); +			idx = -ENOMEM; +			goto out; +		} -	iwl_pcie_txq_build_tfd(trans, txq, phys_addr, copy_size, 1); +		iwl_pcie_txq_build_tfd(trans, txq, phys_addr, +				       copy_size - scratch_size, 0); +	}  	/* map the remaining (adjusted) nocopy/dup fragments */ -	for (i = 0; i < IWL_MAX_CMD_TFDS; i++) { +	for (i = 0; i < IWL_MAX_CMD_TBS_PER_TFD; i++) {  		const void *data = cmddata[i];  		if (!cmdlen[i]) @@ -1340,11 +1329,10 @@ static int iwl_pcie_enqueue_hcmd(struct iwl_trans *trans,  		if (cmd->dataflags[i] & IWL_HCMD_DFL_DUP)  			data = dup_buf;  		phys_addr = dma_map_single(trans->dev, (void *)data, -					   cmdlen[i], DMA_BIDIRECTIONAL); +					   cmdlen[i], DMA_TO_DEVICE);  		if (dma_mapping_error(trans->dev, phys_addr)) {  			iwl_pcie_tfd_unmap(trans, out_meta, -					   &txq->tfds[q->write_ptr], -					   DMA_BIDIRECTIONAL); +					   &txq->tfds[q->write_ptr]);  			idx = -ENOMEM;  			goto out;  		} @@ -1418,7 +1406,7 @@ void iwl_pcie_hcmd_complete(struct iwl_trans *trans,  	cmd = txq->entries[cmd_index].cmd;  	meta = &txq->entries[cmd_index].meta; -	iwl_pcie_tfd_unmap(trans, meta, &txq->tfds[index], DMA_BIDIRECTIONAL); +	iwl_pcie_tfd_unmap(trans, meta, &txq->tfds[index]);  	/* Input error checking is done when commands are added to queue. */  	if (meta->flags & CMD_WANT_SKB) { @@ -1597,10 +1585,9 @@ int iwl_trans_pcie_tx(struct iwl_trans *trans, struct sk_buff *skb,  	struct iwl_cmd_meta *out_meta;  	struct iwl_txq *txq;  	struct iwl_queue *q; -	dma_addr_t phys_addr = 0; -	dma_addr_t txcmd_phys; -	dma_addr_t scratch_phys; -	u16 len, firstlen, secondlen; +	dma_addr_t tb0_phys, tb1_phys, scratch_phys; +	void *tb1_addr; +	u16 len, tb1_len, tb2_len;  	u8 wait_write_ptr = 0;  	__le16 fc = hdr->frame_control;  	u8 hdr_len = ieee80211_hdrlen(fc); @@ -1638,85 +1625,80 @@ int iwl_trans_pcie_tx(struct iwl_trans *trans, struct sk_buff *skb,  		cpu_to_le16((u16)(QUEUE_TO_SEQ(txq_id) |  			    INDEX_TO_SEQ(q->write_ptr))); +	tb0_phys = iwl_pcie_get_scratchbuf_dma(txq, q->write_ptr); +	scratch_phys = tb0_phys + sizeof(struct iwl_cmd_header) + +		       offsetof(struct iwl_tx_cmd, scratch); + +	tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys); +	tx_cmd->dram_msb_ptr = iwl_get_dma_hi_addr(scratch_phys); +  	/* Set up first empty entry in queue's array of Tx/cmd buffers */  	out_meta = &txq->entries[q->write_ptr].meta;  	/* -	 * Use the first empty entry in this queue's command buffer array -	 * to contain the Tx command and MAC header concatenated together -	 * (payload data will be in another buffer). -	 * Size of this varies, due to varying MAC header length. -	 * If end is not dword aligned, we'll have 2 extra bytes at the end -	 * of the MAC header (device reads on dword boundaries). -	 * We'll tell device about this padding later. +	 * The second TB (tb1) points to the remainder of the TX command +	 * and the 802.11 header - dword aligned size +	 * (This calculation modifies the TX command, so do it before the +	 * setup of the first TB)  	 */ -	len = sizeof(struct iwl_tx_cmd) + -		sizeof(struct iwl_cmd_header) + hdr_len; -	firstlen = (len + 3) & ~3; +	len = sizeof(struct iwl_tx_cmd) + sizeof(struct iwl_cmd_header) + +	      hdr_len - IWL_HCMD_SCRATCHBUF_SIZE; +	tb1_len = (len + 3) & ~3;  	/* Tell NIC about any 2-byte padding after MAC header */ -	if (firstlen != len) +	if (tb1_len != len)  		tx_cmd->tx_flags |= TX_CMD_FLG_MH_PAD_MSK; -	/* Physical address of this Tx command's header (not MAC header!), -	 * within command buffer array. */ -	txcmd_phys = dma_map_single(trans->dev, -				    &dev_cmd->hdr, firstlen, -				    DMA_BIDIRECTIONAL); -	if (unlikely(dma_mapping_error(trans->dev, txcmd_phys))) -		goto out_err; -	dma_unmap_addr_set(out_meta, mapping, txcmd_phys); -	dma_unmap_len_set(out_meta, len, firstlen); +	/* The first TB points to the scratchbuf data - min_copy bytes */ +	memcpy(&txq->scratchbufs[q->write_ptr], &dev_cmd->hdr, +	       IWL_HCMD_SCRATCHBUF_SIZE); +	iwl_pcie_txq_build_tfd(trans, txq, tb0_phys, +			       IWL_HCMD_SCRATCHBUF_SIZE, 1); -	if (!ieee80211_has_morefrags(fc)) { -		txq->need_update = 1; -	} else { -		wait_write_ptr = 1; -		txq->need_update = 0; -	} +	/* there must be data left over for TB1 or this code must be changed */ +	BUILD_BUG_ON(sizeof(struct iwl_tx_cmd) < IWL_HCMD_SCRATCHBUF_SIZE); -	/* Set up TFD's 2nd entry to point directly to remainder of skb, -	 * if any (802.11 null frames have no payload). */ -	secondlen = skb->len - hdr_len; -	if (secondlen > 0) { -		phys_addr = dma_map_single(trans->dev, skb->data + hdr_len, -					   secondlen, DMA_TO_DEVICE); -		if (unlikely(dma_mapping_error(trans->dev, phys_addr))) { -			dma_unmap_single(trans->dev, -					 dma_unmap_addr(out_meta, mapping), -					 dma_unmap_len(out_meta, len), -					 DMA_BIDIRECTIONAL); +	/* map the data for TB1 */ +	tb1_addr = ((u8 *)&dev_cmd->hdr) + IWL_HCMD_SCRATCHBUF_SIZE; +	tb1_phys = dma_map_single(trans->dev, tb1_addr, tb1_len, DMA_TO_DEVICE); +	if (unlikely(dma_mapping_error(trans->dev, tb1_phys))) +		goto out_err; +	iwl_pcie_txq_build_tfd(trans, txq, tb1_phys, tb1_len, 0); + +	/* +	 * Set up TFD's third entry to point directly to remainder +	 * of skb, if any (802.11 null frames have no payload). +	 */ +	tb2_len = skb->len - hdr_len; +	if (tb2_len > 0) { +		dma_addr_t tb2_phys = dma_map_single(trans->dev, +						     skb->data + hdr_len, +						     tb2_len, DMA_TO_DEVICE); +		if (unlikely(dma_mapping_error(trans->dev, tb2_phys))) { +			iwl_pcie_tfd_unmap(trans, out_meta, +					   &txq->tfds[q->write_ptr]);  			goto out_err;  		} +		iwl_pcie_txq_build_tfd(trans, txq, tb2_phys, tb2_len, 0);  	} -	/* Attach buffers to TFD */ -	iwl_pcie_txq_build_tfd(trans, txq, txcmd_phys, firstlen, 1); -	if (secondlen > 0) -		iwl_pcie_txq_build_tfd(trans, txq, phys_addr, secondlen, 0); - -	scratch_phys = txcmd_phys + sizeof(struct iwl_cmd_header) + -				offsetof(struct iwl_tx_cmd, scratch); - -	/* take back ownership of DMA buffer to enable update */ -	dma_sync_single_for_cpu(trans->dev, txcmd_phys, firstlen, -				DMA_BIDIRECTIONAL); -	tx_cmd->dram_lsb_ptr = cpu_to_le32(scratch_phys); -	tx_cmd->dram_msb_ptr = iwl_get_dma_hi_addr(scratch_phys); -  	/* Set up entry for this TFD in Tx byte-count array */  	iwl_pcie_txq_update_byte_cnt_tbl(trans, txq, le16_to_cpu(tx_cmd->len)); -	dma_sync_single_for_device(trans->dev, txcmd_phys, firstlen, -				   DMA_BIDIRECTIONAL); -  	trace_iwlwifi_dev_tx(trans->dev, skb,  			     &txq->tfds[txq->q.write_ptr],  			     sizeof(struct iwl_tfd), -			     &dev_cmd->hdr, firstlen, -			     skb->data + hdr_len, secondlen); +			     &dev_cmd->hdr, IWL_HCMD_SCRATCHBUF_SIZE + tb1_len, +			     skb->data + hdr_len, tb2_len);  	trace_iwlwifi_dev_tx_data(trans->dev, skb, -				  skb->data + hdr_len, secondlen); +				  skb->data + hdr_len, tb2_len); + +	if (!ieee80211_has_morefrags(fc)) { +		txq->need_update = 1; +	} else { +		wait_write_ptr = 1; +		txq->need_update = 0; +	}  	/* start timer if queue currently empty */  	if (txq->need_update && q->read_ptr == q->write_ptr && diff --git a/drivers/net/wireless/mwifiex/join.c b/drivers/net/wireless/mwifiex/join.c index 246aa62a481..2fe0ceba440 100644 --- a/drivers/net/wireless/mwifiex/join.c +++ b/drivers/net/wireless/mwifiex/join.c @@ -1117,10 +1117,9 @@ mwifiex_cmd_802_11_ad_hoc_join(struct mwifiex_private *priv,  		adhoc_join->bss_descriptor.bssid,  		adhoc_join->bss_descriptor.ssid); -	for (i = 0; bss_desc->supported_rates[i] && -			i < MWIFIEX_SUPPORTED_RATES; -			i++) -			; +	for (i = 0; i < MWIFIEX_SUPPORTED_RATES && +		    bss_desc->supported_rates[i]; i++) +		;  	rates_size = i;  	/* Copy Data Rates from the Rates recorded in scan response */ diff --git a/drivers/net/wireless/rt2x00/Kconfig b/drivers/net/wireless/rt2x00/Kconfig index 44d6ead4334..2bf4efa3318 100644 --- a/drivers/net/wireless/rt2x00/Kconfig +++ b/drivers/net/wireless/rt2x00/Kconfig @@ -55,10 +55,10 @@ config RT61PCI  config RT2800PCI  	tristate "Ralink rt27xx/rt28xx/rt30xx (PCI/PCIe/PCMCIA) support" -	depends on PCI || RALINK_RT288X || RALINK_RT305X +	depends on PCI || SOC_RT288X || SOC_RT305X  	select RT2800_LIB  	select RT2X00_LIB_PCI if PCI -	select RT2X00_LIB_SOC if RALINK_RT288X || RALINK_RT305X +	select RT2X00_LIB_SOC if SOC_RT288X || SOC_RT305X  	select RT2X00_LIB_FIRMWARE  	select RT2X00_LIB_CRYPTO  	select CRC_CCITT diff --git a/drivers/net/wireless/rt2x00/rt2800pci.c b/drivers/net/wireless/rt2x00/rt2800pci.c index 48a01aa21f1..ded73da4de0 100644 --- a/drivers/net/wireless/rt2x00/rt2800pci.c +++ b/drivers/net/wireless/rt2x00/rt2800pci.c @@ -89,7 +89,7 @@ static void rt2800pci_mcu_status(struct rt2x00_dev *rt2x00dev, const u8 token)  	rt2x00pci_register_write(rt2x00dev, H2M_MAILBOX_CID, ~0);  } -#if defined(CONFIG_RALINK_RT288X) || defined(CONFIG_RALINK_RT305X) +#if defined(CONFIG_SOC_RT288X) || defined(CONFIG_SOC_RT305X)  static int rt2800pci_read_eeprom_soc(struct rt2x00_dev *rt2x00dev)  {  	void __iomem *base_addr = ioremap(0x1F040000, EEPROM_SIZE); @@ -107,7 +107,7 @@ static inline int rt2800pci_read_eeprom_soc(struct rt2x00_dev *rt2x00dev)  {  	return -ENOMEM;  } -#endif /* CONFIG_RALINK_RT288X || CONFIG_RALINK_RT305X */ +#endif /* CONFIG_SOC_RT288X || CONFIG_SOC_RT305X */  #ifdef CONFIG_PCI  static void rt2800pci_eepromregister_read(struct eeprom_93cx6 *eeprom) @@ -1177,7 +1177,7 @@ MODULE_DEVICE_TABLE(pci, rt2800pci_device_table);  #endif /* CONFIG_PCI */  MODULE_LICENSE("GPL"); -#if defined(CONFIG_RALINK_RT288X) || defined(CONFIG_RALINK_RT305X) +#if defined(CONFIG_SOC_RT288X) || defined(CONFIG_SOC_RT305X)  static int rt2800soc_probe(struct platform_device *pdev)  {  	return rt2x00soc_probe(pdev, &rt2800pci_ops); @@ -1194,7 +1194,7 @@ static struct platform_driver rt2800soc_driver = {  	.suspend	= rt2x00soc_suspend,  	.resume		= rt2x00soc_resume,  }; -#endif /* CONFIG_RALINK_RT288X || CONFIG_RALINK_RT305X */ +#endif /* CONFIG_SOC_RT288X || CONFIG_SOC_RT305X */  #ifdef CONFIG_PCI  static int rt2800pci_probe(struct pci_dev *pci_dev, @@ -1217,7 +1217,7 @@ static int __init rt2800pci_init(void)  {  	int ret = 0; -#if defined(CONFIG_RALINK_RT288X) || defined(CONFIG_RALINK_RT305X) +#if defined(CONFIG_SOC_RT288X) || defined(CONFIG_SOC_RT305X)  	ret = platform_driver_register(&rt2800soc_driver);  	if (ret)  		return ret; @@ -1225,7 +1225,7 @@ static int __init rt2800pci_init(void)  #ifdef CONFIG_PCI  	ret = pci_register_driver(&rt2800pci_driver);  	if (ret) { -#if defined(CONFIG_RALINK_RT288X) || defined(CONFIG_RALINK_RT305X) +#if defined(CONFIG_SOC_RT288X) || defined(CONFIG_SOC_RT305X)  		platform_driver_unregister(&rt2800soc_driver);  #endif  		return ret; @@ -1240,7 +1240,7 @@ static void __exit rt2800pci_exit(void)  #ifdef CONFIG_PCI  	pci_unregister_driver(&rt2800pci_driver);  #endif -#if defined(CONFIG_RALINK_RT288X) || defined(CONFIG_RALINK_RT305X) +#if defined(CONFIG_SOC_RT288X) || defined(CONFIG_SOC_RT305X)  	platform_driver_unregister(&rt2800soc_driver);  #endif  } diff --git a/drivers/net/wireless/rtlwifi/rtl8192cu/hw.c b/drivers/net/wireless/rtlwifi/rtl8192cu/hw.c index b1ccff474c7..c08d0f4c5f3 100644 --- a/drivers/net/wireless/rtlwifi/rtl8192cu/hw.c +++ b/drivers/net/wireless/rtlwifi/rtl8192cu/hw.c @@ -1377,74 +1377,57 @@ void rtl92cu_card_disable(struct ieee80211_hw *hw)  void rtl92cu_set_check_bssid(struct ieee80211_hw *hw, bool check_bssid)  { -	/* dummy routine needed for callback from rtl_op_configure_filter() */ -} - -/*========================================================================== */ - -static void _rtl92cu_set_check_bssid(struct ieee80211_hw *hw, -			      enum nl80211_iftype type) -{  	struct rtl_priv *rtlpriv = rtl_priv(hw); -	u32 reg_rcr = rtl_read_dword(rtlpriv, REG_RCR);  	struct rtl_hal *rtlhal = rtl_hal(rtlpriv); -	struct rtl_phy *rtlphy = &(rtlpriv->phy); -	u8 filterout_non_associated_bssid = false; +	u32 reg_rcr = rtl_read_dword(rtlpriv, REG_RCR); -	switch (type) { -	case NL80211_IFTYPE_ADHOC: -	case NL80211_IFTYPE_STATION: -		filterout_non_associated_bssid = true; -		break; -	case NL80211_IFTYPE_UNSPECIFIED: -	case NL80211_IFTYPE_AP: -	default: -		break; -	} -	if (filterout_non_associated_bssid) { +	if (rtlpriv->psc.rfpwr_state != ERFON) +		return; + +	if (check_bssid) { +		u8 tmp;  		if (IS_NORMAL_CHIP(rtlhal->version)) { -			switch (rtlphy->current_io_type) { -			case IO_CMD_RESUME_DM_BY_SCAN: -				reg_rcr |= (RCR_CBSSID_DATA | RCR_CBSSID_BCN); -				rtlpriv->cfg->ops->set_hw_reg(hw, -						 HW_VAR_RCR, (u8 *)(®_rcr)); -				/* enable update TSF */ -				_rtl92cu_set_bcn_ctrl_reg(hw, 0, BIT(4)); -				break; -			case IO_CMD_PAUSE_DM_BY_SCAN: -				reg_rcr &= ~(RCR_CBSSID_DATA | RCR_CBSSID_BCN); -				rtlpriv->cfg->ops->set_hw_reg(hw, -						 HW_VAR_RCR, (u8 *)(®_rcr)); -				/* disable update TSF */ -				_rtl92cu_set_bcn_ctrl_reg(hw, BIT(4), 0); -				break; -			} +			reg_rcr |= (RCR_CBSSID_DATA | RCR_CBSSID_BCN); +			tmp = BIT(4);  		} else { -			reg_rcr |= (RCR_CBSSID); -			rtlpriv->cfg->ops->set_hw_reg(hw, HW_VAR_RCR, -						      (u8 *)(®_rcr)); -			_rtl92cu_set_bcn_ctrl_reg(hw, 0, (BIT(4)|BIT(5))); +			reg_rcr |= RCR_CBSSID; +			tmp = BIT(4) | BIT(5);  		} -	} else if (filterout_non_associated_bssid == false) { +		rtlpriv->cfg->ops->set_hw_reg(hw, HW_VAR_RCR, +					      (u8 *) (®_rcr)); +		_rtl92cu_set_bcn_ctrl_reg(hw, 0, tmp); +	} else { +		u8 tmp;  		if (IS_NORMAL_CHIP(rtlhal->version)) { -			reg_rcr &= (~(RCR_CBSSID_DATA | RCR_CBSSID_BCN)); -			rtlpriv->cfg->ops->set_hw_reg(hw, HW_VAR_RCR, -						      (u8 *)(®_rcr)); -			_rtl92cu_set_bcn_ctrl_reg(hw, BIT(4), 0); +			reg_rcr &= ~(RCR_CBSSID_DATA | RCR_CBSSID_BCN); +			tmp = BIT(4);  		} else { -			reg_rcr &= (~RCR_CBSSID); -			rtlpriv->cfg->ops->set_hw_reg(hw, HW_VAR_RCR, -						      (u8 *)(®_rcr)); -			_rtl92cu_set_bcn_ctrl_reg(hw, (BIT(4)|BIT(5)), 0); +			reg_rcr &= ~RCR_CBSSID; +			tmp = BIT(4) | BIT(5);  		} +		reg_rcr &= (~(RCR_CBSSID_DATA | RCR_CBSSID_BCN)); +		rtlpriv->cfg->ops->set_hw_reg(hw, +					      HW_VAR_RCR, (u8 *) (®_rcr)); +		_rtl92cu_set_bcn_ctrl_reg(hw, tmp, 0);  	}  } +/*========================================================================== */ +  int rtl92cu_set_network_type(struct ieee80211_hw *hw, enum nl80211_iftype type)  { +	struct rtl_priv *rtlpriv = rtl_priv(hw); +  	if (_rtl92cu_set_media_status(hw, type))  		return -EOPNOTSUPP; -	_rtl92cu_set_check_bssid(hw, type); + +	if (rtlpriv->mac80211.link_state == MAC80211_LINKED) { +		if (type != NL80211_IFTYPE_AP) +			rtl92cu_set_check_bssid(hw, true); +	} else { +		rtl92cu_set_check_bssid(hw, false); +	} +  	return 0;  } @@ -2058,8 +2041,6 @@ void rtl92cu_update_hal_rate_table(struct ieee80211_hw *hw,  			       (shortgi_rate << 4) | (shortgi_rate);  	}  	rtl_write_dword(rtlpriv, REG_ARFR0 + ratr_index * 4, ratr_value); -	RT_TRACE(rtlpriv, COMP_RATR, DBG_DMESG, "%x\n", -		 rtl_read_dword(rtlpriv, REG_ARFR0));  }  void rtl92cu_update_hal_rate_mask(struct ieee80211_hw *hw, u8 rssi_level) diff --git a/drivers/of/base.c b/drivers/of/base.c index 321d3ef0500..c6443de58fb 100644 --- a/drivers/of/base.c +++ b/drivers/of/base.c @@ -746,6 +746,64 @@ struct device_node *of_find_node_by_phandle(phandle handle)  EXPORT_SYMBOL(of_find_node_by_phandle);  /** + * of_find_property_value_of_size + * + * @np:		device node from which the property value is to be read. + * @propname:	name of the property to be searched. + * @len:	requested length of property value + * + * Search for a property in a device node and valid the requested size. + * Returns the property value on success, -EINVAL if the property does not + *  exist, -ENODATA if property does not have a value, and -EOVERFLOW if the + * property data isn't large enough. + * + */ +static void *of_find_property_value_of_size(const struct device_node *np, +			const char *propname, u32 len) +{ +	struct property *prop = of_find_property(np, propname, NULL); + +	if (!prop) +		return ERR_PTR(-EINVAL); +	if (!prop->value) +		return ERR_PTR(-ENODATA); +	if (len > prop->length) +		return ERR_PTR(-EOVERFLOW); + +	return prop->value; +} + +/** + * of_property_read_u32_index - Find and read a u32 from a multi-value property. + * + * @np:		device node from which the property value is to be read. + * @propname:	name of the property to be searched. + * @index:	index of the u32 in the list of values + * @out_value:	pointer to return value, modified only if no error. + * + * Search for a property in a device node and read nth 32-bit value from + * it. Returns 0 on success, -EINVAL if the property does not exist, + * -ENODATA if property does not have a value, and -EOVERFLOW if the + * property data isn't large enough. + * + * The out_value is modified only if a valid u32 value can be decoded. + */ +int of_property_read_u32_index(const struct device_node *np, +				       const char *propname, +				       u32 index, u32 *out_value) +{ +	const u32 *val = of_find_property_value_of_size(np, propname, +					((index + 1) * sizeof(*out_value))); + +	if (IS_ERR(val)) +		return PTR_ERR(val); + +	*out_value = be32_to_cpup(((__be32 *)val) + index); +	return 0; +} +EXPORT_SYMBOL_GPL(of_property_read_u32_index); + +/**   * of_property_read_u8_array - Find and read an array of u8 from a property.   *   * @np:		device node from which the property value is to be read. @@ -766,17 +824,12 @@ EXPORT_SYMBOL(of_find_node_by_phandle);  int of_property_read_u8_array(const struct device_node *np,  			const char *propname, u8 *out_values, size_t sz)  { -	struct property *prop = of_find_property(np, propname, NULL); -	const u8 *val; +	const u8 *val = of_find_property_value_of_size(np, propname, +						(sz * sizeof(*out_values))); -	if (!prop) -		return -EINVAL; -	if (!prop->value) -		return -ENODATA; -	if ((sz * sizeof(*out_values)) > prop->length) -		return -EOVERFLOW; +	if (IS_ERR(val)) +		return PTR_ERR(val); -	val = prop->value;  	while (sz--)  		*out_values++ = *val++;  	return 0; @@ -804,17 +857,12 @@ EXPORT_SYMBOL_GPL(of_property_read_u8_array);  int of_property_read_u16_array(const struct device_node *np,  			const char *propname, u16 *out_values, size_t sz)  { -	struct property *prop = of_find_property(np, propname, NULL); -	const __be16 *val; +	const __be16 *val = of_find_property_value_of_size(np, propname, +						(sz * sizeof(*out_values))); -	if (!prop) -		return -EINVAL; -	if (!prop->value) -		return -ENODATA; -	if ((sz * sizeof(*out_values)) > prop->length) -		return -EOVERFLOW; +	if (IS_ERR(val)) +		return PTR_ERR(val); -	val = prop->value;  	while (sz--)  		*out_values++ = be16_to_cpup(val++);  	return 0; @@ -841,17 +889,12 @@ int of_property_read_u32_array(const struct device_node *np,  			       const char *propname, u32 *out_values,  			       size_t sz)  { -	struct property *prop = of_find_property(np, propname, NULL); -	const __be32 *val; +	const __be32 *val = of_find_property_value_of_size(np, propname, +						(sz * sizeof(*out_values))); -	if (!prop) -		return -EINVAL; -	if (!prop->value) -		return -ENODATA; -	if ((sz * sizeof(*out_values)) > prop->length) -		return -EOVERFLOW; +	if (IS_ERR(val)) +		return PTR_ERR(val); -	val = prop->value;  	while (sz--)  		*out_values++ = be32_to_cpup(val++);  	return 0; @@ -874,15 +917,13 @@ EXPORT_SYMBOL_GPL(of_property_read_u32_array);  int of_property_read_u64(const struct device_node *np, const char *propname,  			 u64 *out_value)  { -	struct property *prop = of_find_property(np, propname, NULL); +	const __be32 *val = of_find_property_value_of_size(np, propname, +						sizeof(*out_value)); -	if (!prop) -		return -EINVAL; -	if (!prop->value) -		return -ENODATA; -	if (sizeof(*out_value) > prop->length) -		return -EOVERFLOW; -	*out_value = of_read_number(prop->value, 2); +	if (IS_ERR(val)) +		return PTR_ERR(val); + +	*out_value = of_read_number(val, 2);  	return 0;  }  EXPORT_SYMBOL_GPL(of_property_read_u64); diff --git a/drivers/pci/rom.c b/drivers/pci/rom.c index ab886b7ee32..b41ac7756a4 100644 --- a/drivers/pci/rom.c +++ b/drivers/pci/rom.c @@ -100,6 +100,27 @@ size_t pci_get_rom_size(struct pci_dev *pdev, void __iomem *rom, size_t size)  	return min((size_t)(image - rom), size);  } +static loff_t pci_find_rom(struct pci_dev *pdev, size_t *size) +{ +	struct resource *res = &pdev->resource[PCI_ROM_RESOURCE]; +	loff_t start; + +	/* assign the ROM an address if it doesn't have one */ +	if (res->parent == NULL && pci_assign_resource(pdev, PCI_ROM_RESOURCE)) +		return 0; +	start = pci_resource_start(pdev, PCI_ROM_RESOURCE); +	*size = pci_resource_len(pdev, PCI_ROM_RESOURCE); + +	if (*size == 0) +		return 0; + +	/* Enable ROM space decodes */ +	if (pci_enable_rom(pdev)) +		return 0; + +	return start; +} +  /**   * pci_map_rom - map a PCI ROM to kernel space   * @pdev: pointer to pci device struct @@ -114,21 +135,15 @@ size_t pci_get_rom_size(struct pci_dev *pdev, void __iomem *rom, size_t size)  void __iomem *pci_map_rom(struct pci_dev *pdev, size_t *size)  {  	struct resource *res = &pdev->resource[PCI_ROM_RESOURCE]; -	loff_t start; +	loff_t start = 0;  	void __iomem *rom;  	/* -	 * Some devices may provide ROMs via a source other than the BAR -	 */ -	if (pdev->rom && pdev->romlen) { -		*size = pdev->romlen; -		return phys_to_virt(pdev->rom); -	/*  	 * IORESOURCE_ROM_SHADOW set on x86, x86_64 and IA64 supports legacy  	 * memory map if the VGA enable bit of the Bridge Control register is  	 * set for embedded VGA.  	 */ -	} else if (res->flags & IORESOURCE_ROM_SHADOW) { +	if (res->flags & IORESOURCE_ROM_SHADOW) {  		/* primary video rom always starts here */  		start = (loff_t)0xC0000;  		*size = 0x20000; /* cover C000:0 through E000:0 */ @@ -139,21 +154,21 @@ void __iomem *pci_map_rom(struct pci_dev *pdev, size_t *size)  			return (void __iomem *)(unsigned long)  				pci_resource_start(pdev, PCI_ROM_RESOURCE);  		} else { -			/* assign the ROM an address if it doesn't have one */ -			if (res->parent == NULL && -			    pci_assign_resource(pdev,PCI_ROM_RESOURCE)) -				return NULL; -			start = pci_resource_start(pdev, PCI_ROM_RESOURCE); -			*size = pci_resource_len(pdev, PCI_ROM_RESOURCE); -			if (*size == 0) -				return NULL; - -			/* Enable ROM space decodes */ -			if (pci_enable_rom(pdev)) -				return NULL; +			start = pci_find_rom(pdev, size);  		}  	} +	/* +	 * Some devices may provide ROMs via a source other than the BAR +	 */ +	if (!start && pdev->rom && pdev->romlen) { +		*size = pdev->romlen; +		return phys_to_virt(pdev->rom); +	} + +	if (!start) +		return NULL; +  	rom = ioremap(start, *size);  	if (!rom) {  		/* restore enable if ioremap fails */ diff --git a/drivers/pinctrl/Kconfig b/drivers/pinctrl/Kconfig index 34f51d2d90d..35e94009829 100644 --- a/drivers/pinctrl/Kconfig +++ b/drivers/pinctrl/Kconfig @@ -229,6 +229,7 @@ config PINCTRL_EXYNOS5440  source "drivers/pinctrl/mvebu/Kconfig"  source "drivers/pinctrl/sh-pfc/Kconfig"  source "drivers/pinctrl/spear/Kconfig" +source "drivers/pinctrl/vt8500/Kconfig"  config PINCTRL_XWAY  	bool diff --git a/drivers/pinctrl/Makefile b/drivers/pinctrl/Makefile index f82cc5baf76..a5a52c83c13 100644 --- a/drivers/pinctrl/Makefile +++ b/drivers/pinctrl/Makefile @@ -52,3 +52,4 @@ obj-$(CONFIG_PLAT_ORION)        += mvebu/  obj-$(CONFIG_ARCH_SHMOBILE)	+= sh-pfc/  obj-$(CONFIG_SUPERH)		+= sh-pfc/  obj-$(CONFIG_PLAT_SPEAR)	+= spear/ +obj-$(CONFIG_ARCH_VT8500)	+= vt8500/ diff --git a/drivers/pinctrl/pinctrl-at91.c b/drivers/pinctrl/pinctrl-at91.c index 75933a6aa82..efb7f10e902 100644 --- a/drivers/pinctrl/pinctrl-at91.c +++ b/drivers/pinctrl/pinctrl-at91.c @@ -1277,21 +1277,80 @@ static int alt_gpio_irq_type(struct irq_data *d, unsigned type)  }  #ifdef CONFIG_PM + +static u32 wakeups[MAX_GPIO_BANKS]; +static u32 backups[MAX_GPIO_BANKS]; +  static int gpio_irq_set_wake(struct irq_data *d, unsigned state)  {  	struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(d);  	unsigned	bank = at91_gpio->pioc_idx; +	unsigned mask = 1 << d->hwirq;  	if (unlikely(bank >= MAX_GPIO_BANKS))  		return -EINVAL; +	if (state) +		wakeups[bank] |= mask; +	else +		wakeups[bank] &= ~mask; +  	irq_set_irq_wake(at91_gpio->pioc_virq, state);  	return 0;  } + +void at91_pinctrl_gpio_suspend(void) +{ +	int i; + +	for (i = 0; i < gpio_banks; i++) { +		void __iomem  *pio; + +		if (!gpio_chips[i]) +			continue; + +		pio = gpio_chips[i]->regbase; + +		backups[i] = __raw_readl(pio + PIO_IMR); +		__raw_writel(backups[i], pio + PIO_IDR); +		__raw_writel(wakeups[i], pio + PIO_IER); + +		if (!wakeups[i]) { +			clk_unprepare(gpio_chips[i]->clock); +			clk_disable(gpio_chips[i]->clock); +		} else { +			printk(KERN_DEBUG "GPIO-%c may wake for %08x\n", +			       'A'+i, wakeups[i]); +		} +	} +} + +void at91_pinctrl_gpio_resume(void) +{ +	int i; + +	for (i = 0; i < gpio_banks; i++) { +		void __iomem  *pio; + +		if (!gpio_chips[i]) +			continue; + +		pio = gpio_chips[i]->regbase; + +		if (!wakeups[i]) { +			if (clk_prepare(gpio_chips[i]->clock) == 0) +				clk_enable(gpio_chips[i]->clock); +		} + +		__raw_writel(wakeups[i], pio + PIO_IDR); +		__raw_writel(backups[i], pio + PIO_IER); +	} +} +  #else  #define gpio_irq_set_wake	NULL -#endif +#endif /* CONFIG_PM */  static struct irq_chip gpio_irqchip = {  	.name		= "GPIO", diff --git a/drivers/pinctrl/pinctrl-bcm2835.c b/drivers/pinctrl/pinctrl-bcm2835.c index 4eb6d2c4e4d..2a2e427d765 100644 --- a/drivers/pinctrl/pinctrl-bcm2835.c +++ b/drivers/pinctrl/pinctrl-bcm2835.c @@ -699,11 +699,6 @@ static int bcm2835_pctl_dt_node_to_map_pull(struct bcm2835_pinctrl *pc,  	return 0;  } -static inline u32 prop_u32(struct property *p, int i) -{ -	return be32_to_cpup(((__be32 *)p->value) + i); -} -  static int bcm2835_pctl_dt_node_to_map(struct pinctrl_dev *pctldev,  		struct device_node *np,  		struct pinctrl_map **map, unsigned *num_maps) @@ -761,7 +756,9 @@ static int bcm2835_pctl_dt_node_to_map(struct pinctrl_dev *pctldev,  		return -ENOMEM;  	for (i = 0; i < num_pins; i++) { -		pin = prop_u32(pins, i); +		err = of_property_read_u32_index(np, "brcm,pins", i, &pin); +		if (err) +			goto out;  		if (pin >= ARRAY_SIZE(bcm2835_gpio_pins)) {  			dev_err(pc->dev, "%s: invalid brcm,pins value %d\n",  				of_node_full_name(np), pin); @@ -770,14 +767,20 @@ static int bcm2835_pctl_dt_node_to_map(struct pinctrl_dev *pctldev,  		}  		if (num_funcs) { -			func = prop_u32(funcs, (num_funcs > 1) ? i : 0); +			err = of_property_read_u32_index(np, "brcm,function", +					(num_funcs > 1) ? i : 0, &func); +			if (err) +				goto out;  			err = bcm2835_pctl_dt_node_to_map_func(pc, np, pin,  							func, &cur_map);  			if (err)  				goto out;  		}  		if (num_pulls) { -			pull = prop_u32(pulls, (num_pulls > 1) ? i : 0); +			err = of_property_read_u32_index(np, "brcm,pull", +					(num_funcs > 1) ? i : 0, &pull); +			if (err) +				goto out;  			err = bcm2835_pctl_dt_node_to_map_pull(pc, np, pin,  							pull, &cur_map);  			if (err) diff --git a/drivers/pinctrl/pinctrl-exynos.c b/drivers/pinctrl/pinctrl-exynos.c index 538b9ddaadf..8738933a57d 100644 --- a/drivers/pinctrl/pinctrl-exynos.c +++ b/drivers/pinctrl/pinctrl-exynos.c @@ -677,3 +677,111 @@ struct samsung_pin_ctrl exynos4x12_pin_ctrl[] = {  		.label		= "exynos4x12-gpio-ctrl3",  	},  }; + +/* pin banks of exynos5250 pin-controller 0 */ +static struct samsung_pin_bank exynos5250_pin_banks0[] = { +	EXYNOS_PIN_BANK_EINTG(8, 0x000, "gpa0", 0x00), +	EXYNOS_PIN_BANK_EINTG(6, 0x020, "gpa1", 0x04), +	EXYNOS_PIN_BANK_EINTG(8, 0x040, "gpa2", 0x08), +	EXYNOS_PIN_BANK_EINTG(5, 0x060, "gpb0", 0x0c), +	EXYNOS_PIN_BANK_EINTG(5, 0x080, "gpb1", 0x10), +	EXYNOS_PIN_BANK_EINTG(4, 0x0A0, "gpb2", 0x14), +	EXYNOS_PIN_BANK_EINTG(4, 0x0C0, "gpb3", 0x18), +	EXYNOS_PIN_BANK_EINTG(7, 0x0E0, "gpc0", 0x1c), +	EXYNOS_PIN_BANK_EINTG(4, 0x100, "gpc1", 0x20), +	EXYNOS_PIN_BANK_EINTG(7, 0x120, "gpc2", 0x24), +	EXYNOS_PIN_BANK_EINTG(7, 0x140, "gpc3", 0x28), +	EXYNOS_PIN_BANK_EINTG(4, 0x160, "gpd0", 0x2c), +	EXYNOS_PIN_BANK_EINTG(8, 0x180, "gpd1", 0x30), +	EXYNOS_PIN_BANK_EINTG(7, 0x2E0, "gpc4", 0x34), +	EXYNOS_PIN_BANK_EINTN(6, 0x1A0, "gpy0"), +	EXYNOS_PIN_BANK_EINTN(4, 0x1C0, "gpy1"), +	EXYNOS_PIN_BANK_EINTN(6, 0x1E0, "gpy2"), +	EXYNOS_PIN_BANK_EINTN(8, 0x200, "gpy3"), +	EXYNOS_PIN_BANK_EINTN(8, 0x220, "gpy4"), +	EXYNOS_PIN_BANK_EINTN(8, 0x240, "gpy5"), +	EXYNOS_PIN_BANK_EINTN(8, 0x260, "gpy6"), +	EXYNOS_PIN_BANK_EINTW(8, 0xC00, "gpx0", 0x00), +	EXYNOS_PIN_BANK_EINTW(8, 0xC20, "gpx1", 0x04), +	EXYNOS_PIN_BANK_EINTW(8, 0xC40, "gpx2", 0x08), +	EXYNOS_PIN_BANK_EINTW(8, 0xC60, "gpx3", 0x0c), +}; + +/* pin banks of exynos5250 pin-controller 1 */ +static struct samsung_pin_bank exynos5250_pin_banks1[] = { +	EXYNOS_PIN_BANK_EINTG(8, 0x000, "gpe0", 0x00), +	EXYNOS_PIN_BANK_EINTG(2, 0x020, "gpe1", 0x04), +	EXYNOS_PIN_BANK_EINTG(4, 0x040, "gpf0", 0x08), +	EXYNOS_PIN_BANK_EINTG(4, 0x060, "gpf1", 0x0c), +	EXYNOS_PIN_BANK_EINTG(8, 0x080, "gpg0", 0x10), +	EXYNOS_PIN_BANK_EINTG(8, 0x0A0, "gpg1", 0x14), +	EXYNOS_PIN_BANK_EINTG(2, 0x0C0, "gpg2", 0x18), +	EXYNOS_PIN_BANK_EINTG(4, 0x0E0, "gph0", 0x1c), +	EXYNOS_PIN_BANK_EINTG(8, 0x100, "gph1", 0x20), +}; + +/* pin banks of exynos5250 pin-controller 2 */ +static struct samsung_pin_bank exynos5250_pin_banks2[] = { +	EXYNOS_PIN_BANK_EINTG(8, 0x000, "gpv0", 0x00), +	EXYNOS_PIN_BANK_EINTG(8, 0x020, "gpv1", 0x04), +	EXYNOS_PIN_BANK_EINTG(8, 0x060, "gpv2", 0x08), +	EXYNOS_PIN_BANK_EINTG(8, 0x080, "gpv3", 0x0c), +	EXYNOS_PIN_BANK_EINTG(2, 0x0C0, "gpv4", 0x10), +}; + +/* pin banks of exynos5250 pin-controller 3 */ +static struct samsung_pin_bank exynos5250_pin_banks3[] = { +	EXYNOS_PIN_BANK_EINTG(7, 0x000, "gpz", 0x00), +}; + +/* + * Samsung pinctrl driver data for Exynos5250 SoC. Exynos5250 SoC includes + * four gpio/pin-mux/pinconfig controllers. + */ +struct samsung_pin_ctrl exynos5250_pin_ctrl[] = { +	{ +		/* pin-controller instance 0 data */ +		.pin_banks	= exynos5250_pin_banks0, +		.nr_banks	= ARRAY_SIZE(exynos5250_pin_banks0), +		.geint_con	= EXYNOS_GPIO_ECON_OFFSET, +		.geint_mask	= EXYNOS_GPIO_EMASK_OFFSET, +		.geint_pend	= EXYNOS_GPIO_EPEND_OFFSET, +		.weint_con	= EXYNOS_WKUP_ECON_OFFSET, +		.weint_mask	= EXYNOS_WKUP_EMASK_OFFSET, +		.weint_pend	= EXYNOS_WKUP_EPEND_OFFSET, +		.svc		= EXYNOS_SVC_OFFSET, +		.eint_gpio_init = exynos_eint_gpio_init, +		.eint_wkup_init = exynos_eint_wkup_init, +		.label		= "exynos5250-gpio-ctrl0", +	}, { +		/* pin-controller instance 1 data */ +		.pin_banks	= exynos5250_pin_banks1, +		.nr_banks	= ARRAY_SIZE(exynos5250_pin_banks1), +		.geint_con	= EXYNOS_GPIO_ECON_OFFSET, +		.geint_mask	= EXYNOS_GPIO_EMASK_OFFSET, +		.geint_pend	= EXYNOS_GPIO_EPEND_OFFSET, +		.svc		= EXYNOS_SVC_OFFSET, +		.eint_gpio_init = exynos_eint_gpio_init, +		.label		= "exynos5250-gpio-ctrl1", +	}, { +		/* pin-controller instance 2 data */ +		.pin_banks	= exynos5250_pin_banks2, +		.nr_banks	= ARRAY_SIZE(exynos5250_pin_banks2), +		.geint_con	= EXYNOS_GPIO_ECON_OFFSET, +		.geint_mask	= EXYNOS_GPIO_EMASK_OFFSET, +		.geint_pend	= EXYNOS_GPIO_EPEND_OFFSET, +		.svc		= EXYNOS_SVC_OFFSET, +		.eint_gpio_init = exynos_eint_gpio_init, +		.label		= "exynos5250-gpio-ctrl2", +	}, { +		/* pin-controller instance 3 data */ +		.pin_banks	= exynos5250_pin_banks3, +		.nr_banks	= ARRAY_SIZE(exynos5250_pin_banks3), +		.geint_con	= EXYNOS_GPIO_ECON_OFFSET, +		.geint_mask	= EXYNOS_GPIO_EMASK_OFFSET, +		.geint_pend	= EXYNOS_GPIO_EPEND_OFFSET, +		.svc		= EXYNOS_SVC_OFFSET, +		.eint_gpio_init = exynos_eint_gpio_init, +		.label		= "exynos5250-gpio-ctrl3", +	}, +}; diff --git a/drivers/pinctrl/pinctrl-samsung.c b/drivers/pinctrl/pinctrl-samsung.c index f206df17565..3d5cf639aa4 100644 --- a/drivers/pinctrl/pinctrl-samsung.c +++ b/drivers/pinctrl/pinctrl-samsung.c @@ -948,6 +948,8 @@ static const struct of_device_id samsung_pinctrl_dt_match[] = {  		.data = (void *)exynos4210_pin_ctrl },  	{ .compatible = "samsung,exynos4x12-pinctrl",  		.data = (void *)exynos4x12_pin_ctrl }, +	{ .compatible = "samsung,exynos5250-pinctrl", +		.data = (void *)exynos5250_pin_ctrl },  	{},  };  MODULE_DEVICE_TABLE(of, samsung_pinctrl_dt_match); diff --git a/drivers/pinctrl/pinctrl-samsung.h b/drivers/pinctrl/pinctrl-samsung.h index e2d4e67f7e8..ee964aadce0 100644 --- a/drivers/pinctrl/pinctrl-samsung.h +++ b/drivers/pinctrl/pinctrl-samsung.h @@ -237,5 +237,6 @@ struct samsung_pmx_func {  /* list of all exported SoC specific data */  extern struct samsung_pin_ctrl exynos4210_pin_ctrl[];  extern struct samsung_pin_ctrl exynos4x12_pin_ctrl[]; +extern struct samsung_pin_ctrl exynos5250_pin_ctrl[];  #endif /* __PINCTRL_SAMSUNG_H */ diff --git a/drivers/pinctrl/sh-pfc/pfc-sh73a0.c b/drivers/pinctrl/sh-pfc/pfc-sh73a0.c index 709008e9412..6f15c03077a 100644 --- a/drivers/pinctrl/sh-pfc/pfc-sh73a0.c +++ b/drivers/pinctrl/sh-pfc/pfc-sh73a0.c @@ -2733,9 +2733,9 @@ static struct pinmux_data_reg pinmux_data_regs[] = {  	{ },  }; -/* IRQ pins through INTCS with IRQ0->15 from 0x200 and IRQ16-31 from 0x3200 */ -#define EXT_IRQ16L(n) intcs_evt2irq(0x200 + ((n) << 5)) -#define EXT_IRQ16H(n) intcs_evt2irq(0x3200 + ((n - 16) << 5)) +/* External IRQ pins mapped at IRQPIN_BASE */ +#define EXT_IRQ16L(n) irq_pin(n) +#define EXT_IRQ16H(n) irq_pin(n)  static struct pinmux_irq pinmux_irqs[] = {  	PINMUX_IRQ(EXT_IRQ16H(19), PORT9_FN0), diff --git a/drivers/pinctrl/vt8500/Kconfig b/drivers/pinctrl/vt8500/Kconfig new file mode 100644 index 00000000000..55724a73d94 --- /dev/null +++ b/drivers/pinctrl/vt8500/Kconfig @@ -0,0 +1,52 @@ +# +# VIA/Wondermedia PINCTRL drivers +# + +if ARCH_VT8500 + +config PINCTRL_WMT +	bool +	select PINMUX +	select GENERIC_PINCONF + +config PINCTRL_VT8500 +	bool "VIA VT8500 pin controller driver" +	depends on ARCH_WM8505 +	select PINCTRL_WMT +	help +	  Say yes here to support the gpio/pin control module on +	  VIA VT8500 SoCs. + +config PINCTRL_WM8505 +	bool "Wondermedia WM8505 pin controller driver" +	depends on ARCH_WM8505 +	select PINCTRL_WMT +	help +	  Say yes here to support the gpio/pin control module on +	  Wondermedia WM8505 SoCs. + +config PINCTRL_WM8650 +	bool "Wondermedia WM8650 pin controller driver" +	depends on ARCH_WM8505 +	select PINCTRL_WMT +	help +	  Say yes here to support the gpio/pin control module on +	  Wondermedia WM8650 SoCs. + +config PINCTRL_WM8750 +	bool "Wondermedia WM8750 pin controller driver" +	depends on ARCH_WM8750 +	select PINCTRL_WMT +	help +	  Say yes here to support the gpio/pin control module on +	  Wondermedia WM8750 SoCs. + +config PINCTRL_WM8850 +	bool "Wondermedia WM8850 pin controller driver" +	depends on ARCH_WM8850 +	select PINCTRL_WMT +	help +	  Say yes here to support the gpio/pin control module on +	  Wondermedia WM8850 SoCs. + +endif diff --git a/drivers/pinctrl/vt8500/Makefile b/drivers/pinctrl/vt8500/Makefile new file mode 100644 index 00000000000..24ec45dd0d8 --- /dev/null +++ b/drivers/pinctrl/vt8500/Makefile @@ -0,0 +1,8 @@ +# VIA/Wondermedia pinctrl support + +obj-$(CONFIG_PINCTRL_WMT)	+= pinctrl-wmt.o +obj-$(CONFIG_PINCTRL_VT8500)	+= pinctrl-vt8500.o +obj-$(CONFIG_PINCTRL_WM8505)	+= pinctrl-wm8505.o +obj-$(CONFIG_PINCTRL_WM8650)	+= pinctrl-wm8650.o +obj-$(CONFIG_PINCTRL_WM8750)	+= pinctrl-wm8750.o +obj-$(CONFIG_PINCTRL_WM8850)	+= pinctrl-wm8850.o diff --git a/drivers/pinctrl/vt8500/pinctrl-vt8500.c b/drivers/pinctrl/vt8500/pinctrl-vt8500.c new file mode 100644 index 00000000000..f2fe9f85cfa --- /dev/null +++ b/drivers/pinctrl/vt8500/pinctrl-vt8500.c @@ -0,0 +1,501 @@ +/* + * Pinctrl data for VIA VT8500 SoC + * + * Copyright (c) 2013 Tony Prisk <linux@prisktech.co.nz> + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for + * more details. + */ + +#include <linux/io.h> +#include <linux/module.h> +#include <linux/pinctrl/pinctrl.h> +#include <linux/platform_device.h> +#include <linux/slab.h> + +#include "pinctrl-wmt.h" + +/* + * Describe the register offsets within the GPIO memory space + * The dedicated external GPIO's should always be listed in bank 0 + * so they are exported in the 0..31 range which is what users + * expect. + * + * Do not reorder these banks as it will change the pin numbering + */ +static const struct wmt_pinctrl_bank_registers vt8500_banks[] = { +	WMT_PINCTRL_BANK(NO_REG, 0x3C, 0x5C, 0x7C, NO_REG, NO_REG),	/* 0 */ +	WMT_PINCTRL_BANK(0x00, 0x20, 0x40, 0x60, NO_REG, NO_REG),	/* 1 */ +	WMT_PINCTRL_BANK(0x04, 0x24, 0x44, 0x64, NO_REG, NO_REG),	/* 2 */ +	WMT_PINCTRL_BANK(0x08, 0x28, 0x48, 0x68, NO_REG, NO_REG),	/* 3 */ +	WMT_PINCTRL_BANK(0x0C, 0x2C, 0x4C, 0x6C, NO_REG, NO_REG),	/* 4 */ +	WMT_PINCTRL_BANK(0x10, 0x30, 0x50, 0x70, NO_REG, NO_REG),	/* 5 */ +	WMT_PINCTRL_BANK(0x14, 0x34, 0x54, 0x74, NO_REG, NO_REG),	/* 6 */ +}; + +/* Please keep sorted by bank/bit */ +#define WMT_PIN_EXTGPIO0	WMT_PIN(0, 0) +#define WMT_PIN_EXTGPIO1	WMT_PIN(0, 1) +#define WMT_PIN_EXTGPIO2	WMT_PIN(0, 2) +#define WMT_PIN_EXTGPIO3	WMT_PIN(0, 3) +#define WMT_PIN_EXTGPIO4	WMT_PIN(0, 4) +#define WMT_PIN_EXTGPIO5	WMT_PIN(0, 5) +#define WMT_PIN_EXTGPIO6	WMT_PIN(0, 6) +#define WMT_PIN_EXTGPIO7	WMT_PIN(0, 7) +#define WMT_PIN_EXTGPIO8	WMT_PIN(0, 8) +#define WMT_PIN_UART0RTS	WMT_PIN(1, 0) +#define WMT_PIN_UART0TXD	WMT_PIN(1, 1) +#define WMT_PIN_UART0CTS	WMT_PIN(1, 2) +#define WMT_PIN_UART0RXD	WMT_PIN(1, 3) +#define WMT_PIN_UART1RTS	WMT_PIN(1, 4) +#define WMT_PIN_UART1TXD	WMT_PIN(1, 5) +#define WMT_PIN_UART1CTS	WMT_PIN(1, 6) +#define WMT_PIN_UART1RXD	WMT_PIN(1, 7) +#define WMT_PIN_SPI0CLK		WMT_PIN(1, 8) +#define WMT_PIN_SPI0SS		WMT_PIN(1, 9) +#define WMT_PIN_SPI0MISO	WMT_PIN(1, 10) +#define WMT_PIN_SPI0MOSI	WMT_PIN(1, 11) +#define WMT_PIN_SPI1CLK		WMT_PIN(1, 12) +#define WMT_PIN_SPI1SS		WMT_PIN(1, 13) +#define WMT_PIN_SPI1MISO	WMT_PIN(1, 14) +#define WMT_PIN_SPI1MOSI	WMT_PIN(1, 15) +#define WMT_PIN_SPI2CLK		WMT_PIN(1, 16) +#define WMT_PIN_SPI2SS		WMT_PIN(1, 17) +#define WMT_PIN_SPI2MISO	WMT_PIN(1, 18) +#define WMT_PIN_SPI2MOSI	WMT_PIN(1, 19) +#define WMT_PIN_SDDATA0		WMT_PIN(2, 0) +#define WMT_PIN_SDDATA1		WMT_PIN(2, 1) +#define WMT_PIN_SDDATA2		WMT_PIN(2, 2) +#define WMT_PIN_SDDATA3		WMT_PIN(2, 3) +#define WMT_PIN_MMCDATA0	WMT_PIN(2, 4) +#define WMT_PIN_MMCDATA1	WMT_PIN(2, 5) +#define WMT_PIN_MMCDATA2	WMT_PIN(2, 6) +#define WMT_PIN_MMCDATA3	WMT_PIN(2, 7) +#define WMT_PIN_SDCLK		WMT_PIN(2, 8) +#define WMT_PIN_SDWP		WMT_PIN(2, 9) +#define WMT_PIN_SDCMD		WMT_PIN(2, 10) +#define WMT_PIN_MSDATA0		WMT_PIN(2, 16) +#define WMT_PIN_MSDATA1		WMT_PIN(2, 17) +#define WMT_PIN_MSDATA2		WMT_PIN(2, 18) +#define WMT_PIN_MSDATA3		WMT_PIN(2, 19) +#define WMT_PIN_MSCLK		WMT_PIN(2, 20) +#define WMT_PIN_MSBS		WMT_PIN(2, 21) +#define WMT_PIN_MSINS		WMT_PIN(2, 22) +#define WMT_PIN_I2C0SCL		WMT_PIN(2, 24) +#define WMT_PIN_I2C0SDA		WMT_PIN(2, 25) +#define WMT_PIN_I2C1SCL		WMT_PIN(2, 26) +#define WMT_PIN_I2C1SDA		WMT_PIN(2, 27) +#define WMT_PIN_MII0RXD0	WMT_PIN(3, 0) +#define WMT_PIN_MII0RXD1	WMT_PIN(3, 1) +#define WMT_PIN_MII0RXD2	WMT_PIN(3, 2) +#define WMT_PIN_MII0RXD3	WMT_PIN(3, 3) +#define WMT_PIN_MII0RXCLK	WMT_PIN(3, 4) +#define WMT_PIN_MII0RXDV	WMT_PIN(3, 5) +#define WMT_PIN_MII0RXERR	WMT_PIN(3, 6) +#define WMT_PIN_MII0PHYRST	WMT_PIN(3, 7) +#define WMT_PIN_MII0TXD0	WMT_PIN(3, 8) +#define WMT_PIN_MII0TXD1	WMT_PIN(3, 9) +#define WMT_PIN_MII0TXD2	WMT_PIN(3, 10) +#define WMT_PIN_MII0TXD3	WMT_PIN(3, 11) +#define WMT_PIN_MII0TXCLK	WMT_PIN(3, 12) +#define WMT_PIN_MII0TXEN	WMT_PIN(3, 13) +#define WMT_PIN_MII0TXERR	WMT_PIN(3, 14) +#define WMT_PIN_MII0PHYPD	WMT_PIN(3, 15) +#define WMT_PIN_MII0COL		WMT_PIN(3, 16) +#define WMT_PIN_MII0CRS		WMT_PIN(3, 17) +#define WMT_PIN_MII0MDIO	WMT_PIN(3, 18) +#define WMT_PIN_MII0MDC		WMT_PIN(3, 19) +#define WMT_PIN_SEECS		WMT_PIN(3, 20) +#define WMT_PIN_SEECK		WMT_PIN(3, 21) +#define WMT_PIN_SEEDI		WMT_PIN(3, 22) +#define WMT_PIN_SEEDO		WMT_PIN(3, 23) +#define WMT_PIN_IDEDREQ0	WMT_PIN(3, 24) +#define WMT_PIN_IDEDREQ1	WMT_PIN(3, 25) +#define WMT_PIN_IDEIOW		WMT_PIN(3, 26) +#define WMT_PIN_IDEIOR		WMT_PIN(3, 27) +#define WMT_PIN_IDEDACK		WMT_PIN(3, 28) +#define WMT_PIN_IDEIORDY	WMT_PIN(3, 29) +#define WMT_PIN_IDEINTRQ	WMT_PIN(3, 30) +#define WMT_PIN_VDIN0		WMT_PIN(4, 0) +#define WMT_PIN_VDIN1		WMT_PIN(4, 1) +#define WMT_PIN_VDIN2		WMT_PIN(4, 2) +#define WMT_PIN_VDIN3		WMT_PIN(4, 3) +#define WMT_PIN_VDIN4		WMT_PIN(4, 4) +#define WMT_PIN_VDIN5		WMT_PIN(4, 5) +#define WMT_PIN_VDIN6		WMT_PIN(4, 6) +#define WMT_PIN_VDIN7		WMT_PIN(4, 7) +#define WMT_PIN_VDOUT0		WMT_PIN(4, 8) +#define WMT_PIN_VDOUT1		WMT_PIN(4, 9) +#define WMT_PIN_VDOUT2		WMT_PIN(4, 10) +#define WMT_PIN_VDOUT3		WMT_PIN(4, 11) +#define WMT_PIN_VDOUT4		WMT_PIN(4, 12) +#define WMT_PIN_VDOUT5		WMT_PIN(4, 13) +#define WMT_PIN_NANDCLE0	WMT_PIN(4, 14) +#define WMT_PIN_NANDCLE1	WMT_PIN(4, 15) +#define WMT_PIN_VDOUT6_7	WMT_PIN(4, 16) +#define WMT_PIN_VHSYNC		WMT_PIN(4, 17) +#define WMT_PIN_VVSYNC		WMT_PIN(4, 18) +#define WMT_PIN_TSDIN0		WMT_PIN(5, 8) +#define WMT_PIN_TSDIN1		WMT_PIN(5, 9) +#define WMT_PIN_TSDIN2		WMT_PIN(5, 10) +#define WMT_PIN_TSDIN3		WMT_PIN(5, 11) +#define WMT_PIN_TSDIN4		WMT_PIN(5, 12) +#define WMT_PIN_TSDIN5		WMT_PIN(5, 13) +#define WMT_PIN_TSDIN6		WMT_PIN(5, 14) +#define WMT_PIN_TSDIN7		WMT_PIN(5, 15) +#define WMT_PIN_TSSYNC		WMT_PIN(5, 16) +#define WMT_PIN_TSVALID		WMT_PIN(5, 17) +#define WMT_PIN_TSCLK		WMT_PIN(5, 18) +#define WMT_PIN_LCDD0		WMT_PIN(6, 0) +#define WMT_PIN_LCDD1		WMT_PIN(6, 1) +#define WMT_PIN_LCDD2		WMT_PIN(6, 2) +#define WMT_PIN_LCDD3		WMT_PIN(6, 3) +#define WMT_PIN_LCDD4		WMT_PIN(6, 4) +#define WMT_PIN_LCDD5		WMT_PIN(6, 5) +#define WMT_PIN_LCDD6		WMT_PIN(6, 6) +#define WMT_PIN_LCDD7		WMT_PIN(6, 7) +#define WMT_PIN_LCDD8		WMT_PIN(6, 8) +#define WMT_PIN_LCDD9		WMT_PIN(6, 9) +#define WMT_PIN_LCDD10		WMT_PIN(6, 10) +#define WMT_PIN_LCDD11		WMT_PIN(6, 11) +#define WMT_PIN_LCDD12		WMT_PIN(6, 12) +#define WMT_PIN_LCDD13		WMT_PIN(6, 13) +#define WMT_PIN_LCDD14		WMT_PIN(6, 14) +#define WMT_PIN_LCDD15		WMT_PIN(6, 15) +#define WMT_PIN_LCDD16		WMT_PIN(6, 16) +#define WMT_PIN_LCDD17		WMT_PIN(6, 17) +#define WMT_PIN_LCDCLK		WMT_PIN(6, 18) +#define WMT_PIN_LCDDEN		WMT_PIN(6, 19) +#define WMT_PIN_LCDLINE		WMT_PIN(6, 20) +#define WMT_PIN_LCDFRM		WMT_PIN(6, 21) +#define WMT_PIN_LCDBIAS		WMT_PIN(6, 22) + +static const struct pinctrl_pin_desc vt8500_pins[] = { +	PINCTRL_PIN(WMT_PIN_EXTGPIO0, "extgpio0"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO1, "extgpio1"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO2, "extgpio2"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO3, "extgpio3"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO4, "extgpio4"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO5, "extgpio5"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO6, "extgpio6"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO7, "extgpio7"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO8, "extgpio8"), +	PINCTRL_PIN(WMT_PIN_UART0RTS, "uart0_rts"), +	PINCTRL_PIN(WMT_PIN_UART0TXD, "uart0_txd"), +	PINCTRL_PIN(WMT_PIN_UART0CTS, "uart0_cts"), +	PINCTRL_PIN(WMT_PIN_UART0RXD, "uart0_rxd"), +	PINCTRL_PIN(WMT_PIN_UART1RTS, "uart1_rts"), +	PINCTRL_PIN(WMT_PIN_UART1TXD, "uart1_txd"), +	PINCTRL_PIN(WMT_PIN_UART1CTS, "uart1_cts"), +	PINCTRL_PIN(WMT_PIN_UART1RXD, "uart1_rxd"), +	PINCTRL_PIN(WMT_PIN_SPI0CLK, "spi0_clk"), +	PINCTRL_PIN(WMT_PIN_SPI0SS, "spi0_ss"), +	PINCTRL_PIN(WMT_PIN_SPI0MISO, "spi0_miso"), +	PINCTRL_PIN(WMT_PIN_SPI0MOSI, "spi0_mosi"), +	PINCTRL_PIN(WMT_PIN_SPI1CLK, "spi1_clk"), +	PINCTRL_PIN(WMT_PIN_SPI1SS, "spi1_ss"), +	PINCTRL_PIN(WMT_PIN_SPI1MISO, "spi1_miso"), +	PINCTRL_PIN(WMT_PIN_SPI1MOSI, "spi1_mosi"), +	PINCTRL_PIN(WMT_PIN_SPI2CLK, "spi2_clk"), +	PINCTRL_PIN(WMT_PIN_SPI2SS, "spi2_ss"), +	PINCTRL_PIN(WMT_PIN_SPI2MISO, "spi2_miso"), +	PINCTRL_PIN(WMT_PIN_SPI2MOSI, "spi2_mosi"), +	PINCTRL_PIN(WMT_PIN_SDDATA0, "sd_data0"), +	PINCTRL_PIN(WMT_PIN_SDDATA1, "sd_data1"), +	PINCTRL_PIN(WMT_PIN_SDDATA2, "sd_data2"), +	PINCTRL_PIN(WMT_PIN_SDDATA3, "sd_data3"), +	PINCTRL_PIN(WMT_PIN_MMCDATA0, "mmc_data0"), +	PINCTRL_PIN(WMT_PIN_MMCDATA1, "mmc_data1"), +	PINCTRL_PIN(WMT_PIN_MMCDATA2, "mmc_data2"), +	PINCTRL_PIN(WMT_PIN_MMCDATA3, "mmc_data3"), +	PINCTRL_PIN(WMT_PIN_SDCLK, "sd_clk"), +	PINCTRL_PIN(WMT_PIN_SDWP, "sd_wp"), +	PINCTRL_PIN(WMT_PIN_SDCMD, "sd_cmd"), +	PINCTRL_PIN(WMT_PIN_MSDATA0, "ms_data0"), +	PINCTRL_PIN(WMT_PIN_MSDATA1, "ms_data1"), +	PINCTRL_PIN(WMT_PIN_MSDATA2, "ms_data2"), +	PINCTRL_PIN(WMT_PIN_MSDATA3, "ms_data3"), +	PINCTRL_PIN(WMT_PIN_MSCLK, "ms_clk"), +	PINCTRL_PIN(WMT_PIN_MSBS, "ms_bs"), +	PINCTRL_PIN(WMT_PIN_MSINS, "ms_ins"), +	PINCTRL_PIN(WMT_PIN_I2C0SCL, "i2c0_scl"), +	PINCTRL_PIN(WMT_PIN_I2C0SDA, "i2c0_sda"), +	PINCTRL_PIN(WMT_PIN_I2C1SCL, "i2c1_scl"), +	PINCTRL_PIN(WMT_PIN_I2C1SDA, "i2c1_sda"), +	PINCTRL_PIN(WMT_PIN_MII0RXD0, "mii0_rxd0"), +	PINCTRL_PIN(WMT_PIN_MII0RXD1, "mii0_rxd1"), +	PINCTRL_PIN(WMT_PIN_MII0RXD2, "mii0_rxd2"), +	PINCTRL_PIN(WMT_PIN_MII0RXD3, "mii0_rxd3"), +	PINCTRL_PIN(WMT_PIN_MII0RXCLK, "mii0_rxclk"), +	PINCTRL_PIN(WMT_PIN_MII0RXDV, "mii0_rxdv"), +	PINCTRL_PIN(WMT_PIN_MII0RXERR, "mii0_rxerr"), +	PINCTRL_PIN(WMT_PIN_MII0PHYRST, "mii0_phyrst"), +	PINCTRL_PIN(WMT_PIN_MII0TXD0, "mii0_txd0"), +	PINCTRL_PIN(WMT_PIN_MII0TXD1, "mii0_txd1"), +	PINCTRL_PIN(WMT_PIN_MII0TXD2, "mii0_txd2"), +	PINCTRL_PIN(WMT_PIN_MII0TXD3, "mii0_txd3"), +	PINCTRL_PIN(WMT_PIN_MII0TXCLK, "mii0_txclk"), +	PINCTRL_PIN(WMT_PIN_MII0TXEN, "mii0_txen"), +	PINCTRL_PIN(WMT_PIN_MII0TXERR, "mii0_txerr"), +	PINCTRL_PIN(WMT_PIN_MII0PHYPD, "mii0_phypd"), +	PINCTRL_PIN(WMT_PIN_MII0COL, "mii0_col"), +	PINCTRL_PIN(WMT_PIN_MII0CRS, "mii0_crs"), +	PINCTRL_PIN(WMT_PIN_MII0MDIO, "mii0_mdio"), +	PINCTRL_PIN(WMT_PIN_MII0MDC, "mii0_mdc"), +	PINCTRL_PIN(WMT_PIN_SEECS, "see_cs"), +	PINCTRL_PIN(WMT_PIN_SEECK, "see_ck"), +	PINCTRL_PIN(WMT_PIN_SEEDI, "see_di"), +	PINCTRL_PIN(WMT_PIN_SEEDO, "see_do"), +	PINCTRL_PIN(WMT_PIN_IDEDREQ0, "ide_dreq0"), +	PINCTRL_PIN(WMT_PIN_IDEDREQ1, "ide_dreq1"), +	PINCTRL_PIN(WMT_PIN_IDEIOW, "ide_iow"), +	PINCTRL_PIN(WMT_PIN_IDEIOR, "ide_ior"), +	PINCTRL_PIN(WMT_PIN_IDEDACK, "ide_dack"), +	PINCTRL_PIN(WMT_PIN_IDEIORDY, "ide_iordy"), +	PINCTRL_PIN(WMT_PIN_IDEINTRQ, "ide_intrq"), +	PINCTRL_PIN(WMT_PIN_VDIN0, "vdin0"), +	PINCTRL_PIN(WMT_PIN_VDIN1, "vdin1"), +	PINCTRL_PIN(WMT_PIN_VDIN2, "vdin2"), +	PINCTRL_PIN(WMT_PIN_VDIN3, "vdin3"), +	PINCTRL_PIN(WMT_PIN_VDIN4, "vdin4"), +	PINCTRL_PIN(WMT_PIN_VDIN5, "vdin5"), +	PINCTRL_PIN(WMT_PIN_VDIN6, "vdin6"), +	PINCTRL_PIN(WMT_PIN_VDIN7, "vdin7"), +	PINCTRL_PIN(WMT_PIN_VDOUT0, "vdout0"), +	PINCTRL_PIN(WMT_PIN_VDOUT1, "vdout1"), +	PINCTRL_PIN(WMT_PIN_VDOUT2, "vdout2"), +	PINCTRL_PIN(WMT_PIN_VDOUT3, "vdout3"), +	PINCTRL_PIN(WMT_PIN_VDOUT4, "vdout4"), +	PINCTRL_PIN(WMT_PIN_VDOUT5, "vdout5"), +	PINCTRL_PIN(WMT_PIN_NANDCLE0, "nand_cle0"), +	PINCTRL_PIN(WMT_PIN_NANDCLE1, "nand_cle1"), +	PINCTRL_PIN(WMT_PIN_VDOUT6_7, "vdout6_7"), +	PINCTRL_PIN(WMT_PIN_VHSYNC, "vhsync"), +	PINCTRL_PIN(WMT_PIN_VVSYNC, "vvsync"), +	PINCTRL_PIN(WMT_PIN_TSDIN0, "tsdin0"), +	PINCTRL_PIN(WMT_PIN_TSDIN1, "tsdin1"), +	PINCTRL_PIN(WMT_PIN_TSDIN2, "tsdin2"), +	PINCTRL_PIN(WMT_PIN_TSDIN3, "tsdin3"), +	PINCTRL_PIN(WMT_PIN_TSDIN4, "tsdin4"), +	PINCTRL_PIN(WMT_PIN_TSDIN5, "tsdin5"), +	PINCTRL_PIN(WMT_PIN_TSDIN6, "tsdin6"), +	PINCTRL_PIN(WMT_PIN_TSDIN7, "tsdin7"), +	PINCTRL_PIN(WMT_PIN_TSSYNC, "tssync"), +	PINCTRL_PIN(WMT_PIN_TSVALID, "tsvalid"), +	PINCTRL_PIN(WMT_PIN_TSCLK, "tsclk"), +	PINCTRL_PIN(WMT_PIN_LCDD0, "lcd_d0"), +	PINCTRL_PIN(WMT_PIN_LCDD1, "lcd_d1"), +	PINCTRL_PIN(WMT_PIN_LCDD2, "lcd_d2"), +	PINCTRL_PIN(WMT_PIN_LCDD3, "lcd_d3"), +	PINCTRL_PIN(WMT_PIN_LCDD4, "lcd_d4"), +	PINCTRL_PIN(WMT_PIN_LCDD5, "lcd_d5"), +	PINCTRL_PIN(WMT_PIN_LCDD6, "lcd_d6"), +	PINCTRL_PIN(WMT_PIN_LCDD7, "lcd_d7"), +	PINCTRL_PIN(WMT_PIN_LCDD8, "lcd_d8"), +	PINCTRL_PIN(WMT_PIN_LCDD9, "lcd_d9"), +	PINCTRL_PIN(WMT_PIN_LCDD10, "lcd_d10"), +	PINCTRL_PIN(WMT_PIN_LCDD11, "lcd_d11"), +	PINCTRL_PIN(WMT_PIN_LCDD12, "lcd_d12"), +	PINCTRL_PIN(WMT_PIN_LCDD13, "lcd_d13"), +	PINCTRL_PIN(WMT_PIN_LCDD14, "lcd_d14"), +	PINCTRL_PIN(WMT_PIN_LCDD15, "lcd_d15"), +	PINCTRL_PIN(WMT_PIN_LCDD16, "lcd_d16"), +	PINCTRL_PIN(WMT_PIN_LCDD17, "lcd_d17"), +	PINCTRL_PIN(WMT_PIN_LCDCLK, "lcd_clk"), +	PINCTRL_PIN(WMT_PIN_LCDDEN, "lcd_den"), +	PINCTRL_PIN(WMT_PIN_LCDLINE, "lcd_line"), +	PINCTRL_PIN(WMT_PIN_LCDFRM, "lcd_frm"), +	PINCTRL_PIN(WMT_PIN_LCDBIAS, "lcd_bias"), +}; + +/* Order of these names must match the above list */ +static const char * const vt8500_groups[] = { +	"extgpio0", +	"extgpio1", +	"extgpio2", +	"extgpio3", +	"extgpio4", +	"extgpio5", +	"extgpio6", +	"extgpio7", +	"extgpio8", +	"uart0_rts", +	"uart0_txd", +	"uart0_cts", +	"uart0_rxd", +	"uart1_rts", +	"uart1_txd", +	"uart1_cts", +	"uart1_rxd", +	"spi0_clk", +	"spi0_ss", +	"spi0_miso", +	"spi0_mosi", +	"spi1_clk", +	"spi1_ss", +	"spi1_miso", +	"spi1_mosi", +	"spi2_clk", +	"spi2_ss", +	"spi2_miso", +	"spi2_mosi", +	"sd_data0", +	"sd_data1", +	"sd_data2", +	"sd_data3", +	"mmc_data0", +	"mmc_data1", +	"mmc_data2", +	"mmc_data3", +	"sd_clk", +	"sd_wp", +	"sd_cmd", +	"ms_data0", +	"ms_data1", +	"ms_data2", +	"ms_data3", +	"ms_clk", +	"ms_bs", +	"ms_ins", +	"i2c0_scl", +	"i2c0_sda", +	"i2c1_scl", +	"i2c1_sda", +	"mii0_rxd0", +	"mii0_rxd1", +	"mii0_rxd2", +	"mii0_rxd3", +	"mii0_rxclk", +	"mii0_rxdv", +	"mii0_rxerr", +	"mii0_phyrst", +	"mii0_txd0", +	"mii0_txd1", +	"mii0_txd2", +	"mii0_txd3", +	"mii0_txclk", +	"mii0_txen", +	"mii0_txerr", +	"mii0_phypd", +	"mii0_col", +	"mii0_crs", +	"mii0_mdio", +	"mii0_mdc", +	"see_cs", +	"see_ck", +	"see_di", +	"see_do", +	"ide_dreq0", +	"ide_dreq1", +	"ide_iow", +	"ide_ior", +	"ide_dack", +	"ide_iordy", +	"ide_intrq", +	"vdin0", +	"vdin1", +	"vdin2", +	"vdin3", +	"vdin4", +	"vdin5", +	"vdin6", +	"vdin7", +	"vdout0", +	"vdout1", +	"vdout2", +	"vdout3", +	"vdout4", +	"vdout5", +	"nand_cle0", +	"nand_cle1", +	"vdout6_7", +	"vhsync", +	"vvsync", +	"tsdin0", +	"tsdin1", +	"tsdin2", +	"tsdin3", +	"tsdin4", +	"tsdin5", +	"tsdin6", +	"tsdin7", +	"tssync", +	"tsvalid", +	"tsclk", +	"lcd_d0", +	"lcd_d1", +	"lcd_d2", +	"lcd_d3", +	"lcd_d4", +	"lcd_d5", +	"lcd_d6", +	"lcd_d7", +	"lcd_d8", +	"lcd_d9", +	"lcd_d10", +	"lcd_d11", +	"lcd_d12", +	"lcd_d13", +	"lcd_d14", +	"lcd_d15", +	"lcd_d16", +	"lcd_d17", +	"lcd_clk", +	"lcd_den", +	"lcd_line", +	"lcd_frm", +	"lcd_bias", +}; + +static int vt8500_pinctrl_probe(struct platform_device *pdev) +{ +	struct wmt_pinctrl_data *data; + +	data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); +	if (!data) { +		dev_err(&pdev->dev, "failed to allocate data\n"); +		return -ENOMEM; +	} + +	data->banks = vt8500_banks; +	data->nbanks = ARRAY_SIZE(vt8500_banks); +	data->pins = vt8500_pins; +	data->npins = ARRAY_SIZE(vt8500_pins); +	data->groups = vt8500_groups; +	data->ngroups = ARRAY_SIZE(vt8500_groups); + +	return wmt_pinctrl_probe(pdev, data); +} + +static int vt8500_pinctrl_remove(struct platform_device *pdev) +{ +	return wmt_pinctrl_remove(pdev); +} + +static struct of_device_id wmt_pinctrl_of_match[] = { +	{ .compatible = "via,vt8500-pinctrl" }, +	{ /* sentinel */ }, +}; + +static struct platform_driver wmt_pinctrl_driver = { +	.probe	= vt8500_pinctrl_probe, +	.remove	= vt8500_pinctrl_remove, +	.driver = { +		.name	= "pinctrl-vt8500", +		.owner	= THIS_MODULE, +		.of_match_table	= wmt_pinctrl_of_match, +	}, +}; + +module_platform_driver(wmt_pinctrl_driver); + +MODULE_AUTHOR("Tony Prisk <linux@prisktech.co.nz>"); +MODULE_DESCRIPTION("VIA VT8500 Pincontrol driver"); +MODULE_LICENSE("GPL v2"); +MODULE_DEVICE_TABLE(of, wmt_pinctrl_of_match); diff --git a/drivers/pinctrl/vt8500/pinctrl-wm8505.c b/drivers/pinctrl/vt8500/pinctrl-wm8505.c new file mode 100644 index 00000000000..483ba732694 --- /dev/null +++ b/drivers/pinctrl/vt8500/pinctrl-wm8505.c @@ -0,0 +1,532 @@ +/* + * Pinctrl data for Wondermedia WM8505 SoC + * + * Copyright (c) 2013 Tony Prisk <linux@prisktech.co.nz> + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for + * more details. + */ + +#include <linux/io.h> +#include <linux/module.h> +#include <linux/pinctrl/pinctrl.h> +#include <linux/platform_device.h> +#include <linux/slab.h> + +#include "pinctrl-wmt.h" + +/* + * Describe the register offsets within the GPIO memory space + * The dedicated external GPIO's should always be listed in bank 0 + * so they are exported in the 0..31 range which is what users + * expect. + * + * Do not reorder these banks as it will change the pin numbering + */ +static const struct wmt_pinctrl_bank_registers wm8505_banks[] = { +	WMT_PINCTRL_BANK(0x64, 0x8C, 0xB4, 0xDC, NO_REG, NO_REG),	/* 0 */ +	WMT_PINCTRL_BANK(0x40, 0x68, 0x90, 0xB8, NO_REG, NO_REG),	/* 1 */ +	WMT_PINCTRL_BANK(0x44, 0x6C, 0x94, 0xBC, NO_REG, NO_REG),	/* 2 */ +	WMT_PINCTRL_BANK(0x48, 0x70, 0x98, 0xC0, NO_REG, NO_REG),	/* 3 */ +	WMT_PINCTRL_BANK(0x4C, 0x74, 0x9C, 0xC4, NO_REG, NO_REG),	/* 4 */ +	WMT_PINCTRL_BANK(0x50, 0x78, 0xA0, 0xC8, NO_REG, NO_REG),	/* 5 */ +	WMT_PINCTRL_BANK(0x54, 0x7C, 0xA4, 0xD0, NO_REG, NO_REG),	/* 6 */ +	WMT_PINCTRL_BANK(0x58, 0x80, 0xA8, 0xD4, NO_REG, NO_REG),	/* 7 */ +	WMT_PINCTRL_BANK(0x5C, 0x84, 0xAC, 0xD8, NO_REG, NO_REG),	/* 8 */ +	WMT_PINCTRL_BANK(0x60, 0x88, 0xB0, 0xDC, NO_REG, NO_REG),	/* 9 */ +	WMT_PINCTRL_BANK(0x500, 0x504, 0x508, 0x50C, NO_REG, NO_REG),	/* 10 */ +}; + +/* Please keep sorted by bank/bit */ +#define WMT_PIN_EXTGPIO0	WMT_PIN(0, 0) +#define WMT_PIN_EXTGPIO1	WMT_PIN(0, 1) +#define WMT_PIN_EXTGPIO2	WMT_PIN(0, 2) +#define WMT_PIN_EXTGPIO3	WMT_PIN(0, 3) +#define WMT_PIN_EXTGPIO4	WMT_PIN(0, 4) +#define WMT_PIN_EXTGPIO5	WMT_PIN(0, 5) +#define WMT_PIN_EXTGPIO6	WMT_PIN(0, 6) +#define WMT_PIN_EXTGPIO7	WMT_PIN(0, 7) +#define WMT_PIN_WAKEUP0		WMT_PIN(0, 16) +#define WMT_PIN_WAKEUP1		WMT_PIN(0, 17) +#define WMT_PIN_WAKEUP2		WMT_PIN(0, 18) +#define WMT_PIN_WAKEUP3		WMT_PIN(0, 19) +#define WMT_PIN_SUSGPIO0	WMT_PIN(0, 21) +#define WMT_PIN_SDDATA0		WMT_PIN(1, 0) +#define WMT_PIN_SDDATA1		WMT_PIN(1, 1) +#define WMT_PIN_SDDATA2		WMT_PIN(1, 2) +#define WMT_PIN_SDDATA3		WMT_PIN(1, 3) +#define WMT_PIN_MMCDATA0	WMT_PIN(1, 4) +#define WMT_PIN_MMCDATA1	WMT_PIN(1, 5) +#define WMT_PIN_MMCDATA2	WMT_PIN(1, 6) +#define WMT_PIN_MMCDATA3	WMT_PIN(1, 7) +#define WMT_PIN_VDIN0		WMT_PIN(2, 0) +#define WMT_PIN_VDIN1		WMT_PIN(2, 1) +#define WMT_PIN_VDIN2		WMT_PIN(2, 2) +#define WMT_PIN_VDIN3		WMT_PIN(2, 3) +#define WMT_PIN_VDIN4		WMT_PIN(2, 4) +#define WMT_PIN_VDIN5		WMT_PIN(2, 5) +#define WMT_PIN_VDIN6		WMT_PIN(2, 6) +#define WMT_PIN_VDIN7		WMT_PIN(2, 7) +#define WMT_PIN_VDOUT0		WMT_PIN(2, 8) +#define WMT_PIN_VDOUT1		WMT_PIN(2, 9) +#define WMT_PIN_VDOUT2		WMT_PIN(2, 10) +#define WMT_PIN_VDOUT3		WMT_PIN(2, 11) +#define WMT_PIN_VDOUT4		WMT_PIN(2, 12) +#define WMT_PIN_VDOUT5		WMT_PIN(2, 13) +#define WMT_PIN_VDOUT6		WMT_PIN(2, 14) +#define WMT_PIN_VDOUT7		WMT_PIN(2, 15) +#define WMT_PIN_VDOUT8		WMT_PIN(2, 16) +#define WMT_PIN_VDOUT9		WMT_PIN(2, 17) +#define WMT_PIN_VDOUT10		WMT_PIN(2, 18) +#define WMT_PIN_VDOUT11		WMT_PIN(2, 19) +#define WMT_PIN_VDOUT12		WMT_PIN(2, 20) +#define WMT_PIN_VDOUT13		WMT_PIN(2, 21) +#define WMT_PIN_VDOUT14		WMT_PIN(2, 22) +#define WMT_PIN_VDOUT15		WMT_PIN(2, 23) +#define WMT_PIN_VDOUT16		WMT_PIN(2, 24) +#define WMT_PIN_VDOUT17		WMT_PIN(2, 25) +#define WMT_PIN_VDOUT18		WMT_PIN(2, 26) +#define WMT_PIN_VDOUT19		WMT_PIN(2, 27) +#define WMT_PIN_VDOUT20		WMT_PIN(2, 28) +#define WMT_PIN_VDOUT21		WMT_PIN(2, 29) +#define WMT_PIN_VDOUT22		WMT_PIN(2, 30) +#define WMT_PIN_VDOUT23		WMT_PIN(2, 31) +#define WMT_PIN_VHSYNC		WMT_PIN(3, 0) +#define WMT_PIN_VVSYNC		WMT_PIN(3, 1) +#define WMT_PIN_VGAHSYNC	WMT_PIN(3, 2) +#define WMT_PIN_VGAVSYNC	WMT_PIN(3, 3) +#define WMT_PIN_VDHSYNC		WMT_PIN(3, 4) +#define WMT_PIN_VDVSYNC		WMT_PIN(3, 5) +#define WMT_PIN_NORD0		WMT_PIN(4, 0) +#define WMT_PIN_NORD1		WMT_PIN(4, 1) +#define WMT_PIN_NORD2		WMT_PIN(4, 2) +#define WMT_PIN_NORD3		WMT_PIN(4, 3) +#define WMT_PIN_NORD4		WMT_PIN(4, 4) +#define WMT_PIN_NORD5		WMT_PIN(4, 5) +#define WMT_PIN_NORD6		WMT_PIN(4, 6) +#define WMT_PIN_NORD7		WMT_PIN(4, 7) +#define WMT_PIN_NORD8		WMT_PIN(4, 8) +#define WMT_PIN_NORD9		WMT_PIN(4, 9) +#define WMT_PIN_NORD10		WMT_PIN(4, 10) +#define WMT_PIN_NORD11		WMT_PIN(4, 11) +#define WMT_PIN_NORD12		WMT_PIN(4, 12) +#define WMT_PIN_NORD13		WMT_PIN(4, 13) +#define WMT_PIN_NORD14		WMT_PIN(4, 14) +#define WMT_PIN_NORD15		WMT_PIN(4, 15) +#define WMT_PIN_NORA0		WMT_PIN(5, 0) +#define WMT_PIN_NORA1		WMT_PIN(5, 1) +#define WMT_PIN_NORA2		WMT_PIN(5, 2) +#define WMT_PIN_NORA3		WMT_PIN(5, 3) +#define WMT_PIN_NORA4		WMT_PIN(5, 4) +#define WMT_PIN_NORA5		WMT_PIN(5, 5) +#define WMT_PIN_NORA6		WMT_PIN(5, 6) +#define WMT_PIN_NORA7		WMT_PIN(5, 7) +#define WMT_PIN_NORA8		WMT_PIN(5, 8) +#define WMT_PIN_NORA9		WMT_PIN(5, 9) +#define WMT_PIN_NORA10		WMT_PIN(5, 10) +#define WMT_PIN_NORA11		WMT_PIN(5, 11) +#define WMT_PIN_NORA12		WMT_PIN(5, 12) +#define WMT_PIN_NORA13		WMT_PIN(5, 13) +#define WMT_PIN_NORA14		WMT_PIN(5, 14) +#define WMT_PIN_NORA15		WMT_PIN(5, 15) +#define WMT_PIN_NORA16		WMT_PIN(5, 16) +#define WMT_PIN_NORA17		WMT_PIN(5, 17) +#define WMT_PIN_NORA18		WMT_PIN(5, 18) +#define WMT_PIN_NORA19		WMT_PIN(5, 19) +#define WMT_PIN_NORA20		WMT_PIN(5, 20) +#define WMT_PIN_NORA21		WMT_PIN(5, 21) +#define WMT_PIN_NORA22		WMT_PIN(5, 22) +#define WMT_PIN_NORA23		WMT_PIN(5, 23) +#define WMT_PIN_NORA24		WMT_PIN(5, 24) +#define WMT_PIN_AC97SDI		WMT_PIN(6, 0) +#define WMT_PIN_AC97SYNC	WMT_PIN(6, 1) +#define WMT_PIN_AC97SDO		WMT_PIN(6, 2) +#define WMT_PIN_AC97BCLK	WMT_PIN(6, 3) +#define WMT_PIN_AC97RST		WMT_PIN(6, 4) +#define WMT_PIN_SFDO		WMT_PIN(7, 0) +#define WMT_PIN_SFCS0		WMT_PIN(7, 1) +#define WMT_PIN_SFCS1		WMT_PIN(7, 2) +#define WMT_PIN_SFCLK		WMT_PIN(7, 3) +#define WMT_PIN_SFDI		WMT_PIN(7, 4) +#define WMT_PIN_SPI0CLK		WMT_PIN(8, 0) +#define WMT_PIN_SPI0MISO	WMT_PIN(8, 1) +#define WMT_PIN_SPI0MOSI	WMT_PIN(8, 2) +#define WMT_PIN_SPI0SS		WMT_PIN(8, 3) +#define WMT_PIN_SPI1CLK		WMT_PIN(8, 4) +#define WMT_PIN_SPI1MISO	WMT_PIN(8, 5) +#define WMT_PIN_SPI1MOSI	WMT_PIN(8, 6) +#define WMT_PIN_SPI1SS		WMT_PIN(8, 7) +#define WMT_PIN_SPI2CLK		WMT_PIN(8, 8) +#define WMT_PIN_SPI2MISO	WMT_PIN(8, 9) +#define WMT_PIN_SPI2MOSI	WMT_PIN(8, 10) +#define WMT_PIN_SPI2SS		WMT_PIN(8, 11) +#define WMT_PIN_UART0_RTS	WMT_PIN(9, 0) +#define WMT_PIN_UART0_TXD	WMT_PIN(9, 1) +#define WMT_PIN_UART0_CTS	WMT_PIN(9, 2) +#define WMT_PIN_UART0_RXD	WMT_PIN(9, 3) +#define WMT_PIN_UART1_RTS	WMT_PIN(9, 4) +#define WMT_PIN_UART1_TXD	WMT_PIN(9, 5) +#define WMT_PIN_UART1_CTS	WMT_PIN(9, 6) +#define WMT_PIN_UART1_RXD	WMT_PIN(9, 7) +#define WMT_PIN_UART2_RTS	WMT_PIN(9, 8) +#define WMT_PIN_UART2_TXD	WMT_PIN(9, 9) +#define WMT_PIN_UART2_CTS	WMT_PIN(9, 10) +#define WMT_PIN_UART2_RXD	WMT_PIN(9, 11) +#define WMT_PIN_UART3_RTS	WMT_PIN(9, 12) +#define WMT_PIN_UART3_TXD	WMT_PIN(9, 13) +#define WMT_PIN_UART3_CTS	WMT_PIN(9, 14) +#define WMT_PIN_UART3_RXD	WMT_PIN(9, 15) +#define WMT_PIN_I2C0SCL		WMT_PIN(10, 0) +#define WMT_PIN_I2C0SDA		WMT_PIN(10, 1) +#define WMT_PIN_I2C1SCL		WMT_PIN(10, 2) +#define WMT_PIN_I2C1SDA		WMT_PIN(10, 3) +#define WMT_PIN_I2C2SCL		WMT_PIN(10, 4) +#define WMT_PIN_I2C2SDA		WMT_PIN(10, 5) + +static const struct pinctrl_pin_desc wm8505_pins[] = { +	PINCTRL_PIN(WMT_PIN_EXTGPIO0, "extgpio0"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO1, "extgpio1"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO2, "extgpio2"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO3, "extgpio3"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO4, "extgpio4"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO5, "extgpio5"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO6, "extgpio6"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO7, "extgpio7"), +	PINCTRL_PIN(WMT_PIN_WAKEUP0, "wakeup0"), +	PINCTRL_PIN(WMT_PIN_WAKEUP1, "wakeup1"), +	PINCTRL_PIN(WMT_PIN_WAKEUP2, "wakeup2"), +	PINCTRL_PIN(WMT_PIN_WAKEUP3, "wakeup3"), +	PINCTRL_PIN(WMT_PIN_SUSGPIO0, "susgpio0"), +	PINCTRL_PIN(WMT_PIN_SDDATA0, "sd_data0"), +	PINCTRL_PIN(WMT_PIN_SDDATA1, "sd_data1"), +	PINCTRL_PIN(WMT_PIN_SDDATA2, "sd_data2"), +	PINCTRL_PIN(WMT_PIN_SDDATA3, "sd_data3"), +	PINCTRL_PIN(WMT_PIN_MMCDATA0, "mmc_data0"), +	PINCTRL_PIN(WMT_PIN_MMCDATA1, "mmc_data1"), +	PINCTRL_PIN(WMT_PIN_MMCDATA2, "mmc_data2"), +	PINCTRL_PIN(WMT_PIN_MMCDATA3, "mmc_data3"), +	PINCTRL_PIN(WMT_PIN_VDIN0, "vdin0"), +	PINCTRL_PIN(WMT_PIN_VDIN1, "vdin1"), +	PINCTRL_PIN(WMT_PIN_VDIN2, "vdin2"), +	PINCTRL_PIN(WMT_PIN_VDIN3, "vdin3"), +	PINCTRL_PIN(WMT_PIN_VDIN4, "vdin4"), +	PINCTRL_PIN(WMT_PIN_VDIN5, "vdin5"), +	PINCTRL_PIN(WMT_PIN_VDIN6, "vdin6"), +	PINCTRL_PIN(WMT_PIN_VDIN7, "vdin7"), +	PINCTRL_PIN(WMT_PIN_VDOUT0, "vdout0"), +	PINCTRL_PIN(WMT_PIN_VDOUT1, "vdout1"), +	PINCTRL_PIN(WMT_PIN_VDOUT2, "vdout2"), +	PINCTRL_PIN(WMT_PIN_VDOUT3, "vdout3"), +	PINCTRL_PIN(WMT_PIN_VDOUT4, "vdout4"), +	PINCTRL_PIN(WMT_PIN_VDOUT5, "vdout5"), +	PINCTRL_PIN(WMT_PIN_VDOUT6, "vdout6"), +	PINCTRL_PIN(WMT_PIN_VDOUT7, "vdout7"), +	PINCTRL_PIN(WMT_PIN_VDOUT8, "vdout8"), +	PINCTRL_PIN(WMT_PIN_VDOUT9, "vdout9"), +	PINCTRL_PIN(WMT_PIN_VDOUT10, "vdout10"), +	PINCTRL_PIN(WMT_PIN_VDOUT11, "vdout11"), +	PINCTRL_PIN(WMT_PIN_VDOUT12, "vdout12"), +	PINCTRL_PIN(WMT_PIN_VDOUT13, "vdout13"), +	PINCTRL_PIN(WMT_PIN_VDOUT14, "vdout14"), +	PINCTRL_PIN(WMT_PIN_VDOUT15, "vdout15"), +	PINCTRL_PIN(WMT_PIN_VDOUT16, "vdout16"), +	PINCTRL_PIN(WMT_PIN_VDOUT17, "vdout17"), +	PINCTRL_PIN(WMT_PIN_VDOUT18, "vdout18"), +	PINCTRL_PIN(WMT_PIN_VDOUT19, "vdout19"), +	PINCTRL_PIN(WMT_PIN_VDOUT20, "vdout20"), +	PINCTRL_PIN(WMT_PIN_VDOUT21, "vdout21"), +	PINCTRL_PIN(WMT_PIN_VDOUT22, "vdout22"), +	PINCTRL_PIN(WMT_PIN_VDOUT23, "vdout23"), +	PINCTRL_PIN(WMT_PIN_VHSYNC, "v_hsync"), +	PINCTRL_PIN(WMT_PIN_VVSYNC, "v_vsync"), +	PINCTRL_PIN(WMT_PIN_VGAHSYNC, "vga_hsync"), +	PINCTRL_PIN(WMT_PIN_VGAVSYNC, "vga_vsync"), +	PINCTRL_PIN(WMT_PIN_VDHSYNC, "vd_hsync"), +	PINCTRL_PIN(WMT_PIN_VDVSYNC, "vd_vsync"), +	PINCTRL_PIN(WMT_PIN_NORD0, "nor_d0"), +	PINCTRL_PIN(WMT_PIN_NORD1, "nor_d1"), +	PINCTRL_PIN(WMT_PIN_NORD2, "nor_d2"), +	PINCTRL_PIN(WMT_PIN_NORD3, "nor_d3"), +	PINCTRL_PIN(WMT_PIN_NORD4, "nor_d4"), +	PINCTRL_PIN(WMT_PIN_NORD5, "nor_d5"), +	PINCTRL_PIN(WMT_PIN_NORD6, "nor_d6"), +	PINCTRL_PIN(WMT_PIN_NORD7, "nor_d7"), +	PINCTRL_PIN(WMT_PIN_NORD8, "nor_d8"), +	PINCTRL_PIN(WMT_PIN_NORD9, "nor_d9"), +	PINCTRL_PIN(WMT_PIN_NORD10, "nor_d10"), +	PINCTRL_PIN(WMT_PIN_NORD11, "nor_d11"), +	PINCTRL_PIN(WMT_PIN_NORD12, "nor_d12"), +	PINCTRL_PIN(WMT_PIN_NORD13, "nor_d13"), +	PINCTRL_PIN(WMT_PIN_NORD14, "nor_d14"), +	PINCTRL_PIN(WMT_PIN_NORD15, "nor_d15"), +	PINCTRL_PIN(WMT_PIN_NORA0, "nor_a0"), +	PINCTRL_PIN(WMT_PIN_NORA1, "nor_a1"), +	PINCTRL_PIN(WMT_PIN_NORA2, "nor_a2"), +	PINCTRL_PIN(WMT_PIN_NORA3, "nor_a3"), +	PINCTRL_PIN(WMT_PIN_NORA4, "nor_a4"), +	PINCTRL_PIN(WMT_PIN_NORA5, "nor_a5"), +	PINCTRL_PIN(WMT_PIN_NORA6, "nor_a6"), +	PINCTRL_PIN(WMT_PIN_NORA7, "nor_a7"), +	PINCTRL_PIN(WMT_PIN_NORA8, "nor_a8"), +	PINCTRL_PIN(WMT_PIN_NORA9, "nor_a9"), +	PINCTRL_PIN(WMT_PIN_NORA10, "nor_a10"), +	PINCTRL_PIN(WMT_PIN_NORA11, "nor_a11"), +	PINCTRL_PIN(WMT_PIN_NORA12, "nor_a12"), +	PINCTRL_PIN(WMT_PIN_NORA13, "nor_a13"), +	PINCTRL_PIN(WMT_PIN_NORA14, "nor_a14"), +	PINCTRL_PIN(WMT_PIN_NORA15, "nor_a15"), +	PINCTRL_PIN(WMT_PIN_NORA16, "nor_a16"), +	PINCTRL_PIN(WMT_PIN_NORA17, "nor_a17"), +	PINCTRL_PIN(WMT_PIN_NORA18, "nor_a18"), +	PINCTRL_PIN(WMT_PIN_NORA19, "nor_a19"), +	PINCTRL_PIN(WMT_PIN_NORA20, "nor_a20"), +	PINCTRL_PIN(WMT_PIN_NORA21, "nor_a21"), +	PINCTRL_PIN(WMT_PIN_NORA22, "nor_a22"), +	PINCTRL_PIN(WMT_PIN_NORA23, "nor_a23"), +	PINCTRL_PIN(WMT_PIN_NORA24, "nor_a24"), +	PINCTRL_PIN(WMT_PIN_AC97SDI, "ac97_sdi"), +	PINCTRL_PIN(WMT_PIN_AC97SYNC, "ac97_sync"), +	PINCTRL_PIN(WMT_PIN_AC97SDO, "ac97_sdo"), +	PINCTRL_PIN(WMT_PIN_AC97BCLK, "ac97_bclk"), +	PINCTRL_PIN(WMT_PIN_AC97RST, "ac97_rst"), +	PINCTRL_PIN(WMT_PIN_SFDO, "sf_do"), +	PINCTRL_PIN(WMT_PIN_SFCS0, "sf_cs0"), +	PINCTRL_PIN(WMT_PIN_SFCS1, "sf_cs1"), +	PINCTRL_PIN(WMT_PIN_SFCLK, "sf_clk"), +	PINCTRL_PIN(WMT_PIN_SFDI, "sf_di"), +	PINCTRL_PIN(WMT_PIN_SPI0CLK, "spi0_clk"), +	PINCTRL_PIN(WMT_PIN_SPI0MISO, "spi0_miso"), +	PINCTRL_PIN(WMT_PIN_SPI0MOSI, "spi0_mosi"), +	PINCTRL_PIN(WMT_PIN_SPI0SS, "spi0_ss"), +	PINCTRL_PIN(WMT_PIN_SPI1CLK, "spi1_clk"), +	PINCTRL_PIN(WMT_PIN_SPI1MISO, "spi1_miso"), +	PINCTRL_PIN(WMT_PIN_SPI1MOSI, "spi1_mosi"), +	PINCTRL_PIN(WMT_PIN_SPI1SS, "spi1_ss"), +	PINCTRL_PIN(WMT_PIN_SPI2CLK, "spi2_clk"), +	PINCTRL_PIN(WMT_PIN_SPI2MISO, "spi2_miso"), +	PINCTRL_PIN(WMT_PIN_SPI2MOSI, "spi2_mosi"), +	PINCTRL_PIN(WMT_PIN_SPI2SS, "spi2_ss"), +	PINCTRL_PIN(WMT_PIN_UART0_RTS, "uart0_rts"), +	PINCTRL_PIN(WMT_PIN_UART0_TXD, "uart0_txd"), +	PINCTRL_PIN(WMT_PIN_UART0_CTS, "uart0_cts"), +	PINCTRL_PIN(WMT_PIN_UART0_RXD, "uart0_rxd"), +	PINCTRL_PIN(WMT_PIN_UART1_RTS, "uart1_rts"), +	PINCTRL_PIN(WMT_PIN_UART1_TXD, "uart1_txd"), +	PINCTRL_PIN(WMT_PIN_UART1_CTS, "uart1_cts"), +	PINCTRL_PIN(WMT_PIN_UART1_RXD, "uart1_rxd"), +	PINCTRL_PIN(WMT_PIN_UART2_RTS, "uart2_rts"), +	PINCTRL_PIN(WMT_PIN_UART2_TXD, "uart2_txd"), +	PINCTRL_PIN(WMT_PIN_UART2_CTS, "uart2_cts"), +	PINCTRL_PIN(WMT_PIN_UART2_RXD, "uart2_rxd"), +	PINCTRL_PIN(WMT_PIN_UART3_RTS, "uart3_rts"), +	PINCTRL_PIN(WMT_PIN_UART3_TXD, "uart3_txd"), +	PINCTRL_PIN(WMT_PIN_UART3_CTS, "uart3_cts"), +	PINCTRL_PIN(WMT_PIN_UART3_RXD, "uart3_rxd"), +	PINCTRL_PIN(WMT_PIN_I2C0SCL, "i2c0_scl"), +	PINCTRL_PIN(WMT_PIN_I2C0SDA, "i2c0_sda"), +	PINCTRL_PIN(WMT_PIN_I2C1SCL, "i2c1_scl"), +	PINCTRL_PIN(WMT_PIN_I2C1SDA, "i2c1_sda"), +	PINCTRL_PIN(WMT_PIN_I2C2SCL, "i2c2_scl"), +	PINCTRL_PIN(WMT_PIN_I2C2SDA, "i2c2_sda"), +}; + +/* Order of these names must match the above list */ +static const char * const wm8505_groups[] = { +	"extgpio0", +	"extgpio1", +	"extgpio2", +	"extgpio3", +	"extgpio4", +	"extgpio5", +	"extgpio6", +	"extgpio7", +	"wakeup0", +	"wakeup1", +	"wakeup2", +	"wakeup3", +	"susgpio0", +	"sd_data0", +	"sd_data1", +	"sd_data2", +	"sd_data3", +	"mmc_data0", +	"mmc_data1", +	"mmc_data2", +	"mmc_data3", +	"vdin0", +	"vdin1", +	"vdin2", +	"vdin3", +	"vdin4", +	"vdin5", +	"vdin6", +	"vdin7", +	"vdout0", +	"vdout1", +	"vdout2", +	"vdout3", +	"vdout4", +	"vdout5", +	"vdout6", +	"vdout7", +	"vdout8", +	"vdout9", +	"vdout10", +	"vdout11", +	"vdout12", +	"vdout13", +	"vdout14", +	"vdout15", +	"vdout16", +	"vdout17", +	"vdout18", +	"vdout19", +	"vdout20", +	"vdout21", +	"vdout22", +	"vdout23", +	"v_hsync", +	"v_vsync", +	"vga_hsync", +	"vga_vsync", +	"vd_hsync", +	"vd_vsync", +	"nor_d0", +	"nor_d1", +	"nor_d2", +	"nor_d3", +	"nor_d4", +	"nor_d5", +	"nor_d6", +	"nor_d7", +	"nor_d8", +	"nor_d9", +	"nor_d10", +	"nor_d11", +	"nor_d12", +	"nor_d13", +	"nor_d14", +	"nor_d15", +	"nor_a0", +	"nor_a1", +	"nor_a2", +	"nor_a3", +	"nor_a4", +	"nor_a5", +	"nor_a6", +	"nor_a7", +	"nor_a8", +	"nor_a9", +	"nor_a10", +	"nor_a11", +	"nor_a12", +	"nor_a13", +	"nor_a14", +	"nor_a15", +	"nor_a16", +	"nor_a17", +	"nor_a18", +	"nor_a19", +	"nor_a20", +	"nor_a21", +	"nor_a22", +	"nor_a23", +	"nor_a24", +	"ac97_sdi", +	"ac97_sync", +	"ac97_sdo", +	"ac97_bclk", +	"ac97_rst", +	"sf_do", +	"sf_cs0", +	"sf_cs1", +	"sf_clk", +	"sf_di", +	"spi0_clk", +	"spi0_miso", +	"spi0_mosi", +	"spi0_ss", +	"spi1_clk", +	"spi1_miso", +	"spi1_mosi", +	"spi1_ss", +	"spi2_clk", +	"spi2_miso", +	"spi2_mosi", +	"spi2_ss", +	"uart0_rts", +	"uart0_txd", +	"uart0_cts", +	"uart0_rxd", +	"uart1_rts", +	"uart1_txd", +	"uart1_cts", +	"uart1_rxd", +	"uart2_rts", +	"uart2_txd", +	"uart2_cts", +	"uart2_rxd", +	"uart3_rts", +	"uart3_txd", +	"uart3_cts", +	"uart3_rxd", +	"i2c0_scl", +	"i2c0_sda", +	"i2c1_scl", +	"i2c1_sda", +	"i2c2_scl", +	"i2c2_sda", +}; + +static int wm8505_pinctrl_probe(struct platform_device *pdev) +{ +	struct wmt_pinctrl_data *data; + +	data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); +	if (!data) { +		dev_err(&pdev->dev, "failed to allocate data\n"); +		return -ENOMEM; +	} + +	data->banks = wm8505_banks; +	data->nbanks = ARRAY_SIZE(wm8505_banks); +	data->pins = wm8505_pins; +	data->npins = ARRAY_SIZE(wm8505_pins); +	data->groups = wm8505_groups; +	data->ngroups = ARRAY_SIZE(wm8505_groups); + +	return wmt_pinctrl_probe(pdev, data); +} + +static int wm8505_pinctrl_remove(struct platform_device *pdev) +{ +	return wmt_pinctrl_remove(pdev); +} + +static struct of_device_id wmt_pinctrl_of_match[] = { +	{ .compatible = "wm,wm8505-pinctrl" }, +	{ /* sentinel */ }, +}; + +static struct platform_driver wmt_pinctrl_driver = { +	.probe	= wm8505_pinctrl_probe, +	.remove	= wm8505_pinctrl_remove, +	.driver = { +		.name	= "pinctrl-wm8505", +		.owner	= THIS_MODULE, +		.of_match_table	= wmt_pinctrl_of_match, +	}, +}; + +module_platform_driver(wmt_pinctrl_driver); + +MODULE_AUTHOR("Tony Prisk <linux@prisktech.co.nz>"); +MODULE_DESCRIPTION("Wondermedia WM8505 Pincontrol driver"); +MODULE_LICENSE("GPL v2"); +MODULE_DEVICE_TABLE(of, wmt_pinctrl_of_match); diff --git a/drivers/pinctrl/vt8500/pinctrl-wm8650.c b/drivers/pinctrl/vt8500/pinctrl-wm8650.c new file mode 100644 index 00000000000..7de57f06315 --- /dev/null +++ b/drivers/pinctrl/vt8500/pinctrl-wm8650.c @@ -0,0 +1,370 @@ +/* + * Pinctrl data for Wondermedia WM8650 SoC + * + * Copyright (c) 2013 Tony Prisk <linux@prisktech.co.nz> + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for + * more details. + */ + +#include <linux/io.h> +#include <linux/module.h> +#include <linux/pinctrl/pinctrl.h> +#include <linux/platform_device.h> +#include <linux/slab.h> + +#include "pinctrl-wmt.h" + +/* + * Describe the register offsets within the GPIO memory space + * The dedicated external GPIO's should always be listed in bank 0 + * so they are exported in the 0..31 range which is what users + * expect. + * + * Do not reorder these banks as it will change the pin numbering + */ +static const struct wmt_pinctrl_bank_registers wm8650_banks[] = { +	WMT_PINCTRL_BANK(0x40, 0x80, 0xC0, 0x00, 0x480, 0x4C0),		/* 0 */ +	WMT_PINCTRL_BANK(0x44, 0x84, 0xC4, 0x04, 0x484, 0x4C4),		/* 1 */ +	WMT_PINCTRL_BANK(0x48, 0x88, 0xC8, 0x08, 0x488, 0x4C8),		/* 2 */ +	WMT_PINCTRL_BANK(0x4C, 0x8C, 0xCC, 0x0C, 0x48C, 0x4CC),		/* 3 */ +	WMT_PINCTRL_BANK(0x50, 0x90, 0xD0, 0x10, 0x490, 0x4D0),		/* 4 */ +	WMT_PINCTRL_BANK(0x54, 0x94, 0xD4, 0x14, 0x494, 0x4D4),		/* 5 */ +	WMT_PINCTRL_BANK(0x58, 0x98, 0xD8, 0x18, 0x498, 0x4D8),		/* 6 */ +	WMT_PINCTRL_BANK(0x5C, 0x9C, 0xDC, 0x1C, 0x49C, 0x4DC),		/* 7 */ +}; + +/* Please keep sorted by bank/bit */ +#define WMT_PIN_EXTGPIO0	WMT_PIN(0, 0) +#define WMT_PIN_EXTGPIO1	WMT_PIN(0, 1) +#define WMT_PIN_EXTGPIO2	WMT_PIN(0, 2) +#define WMT_PIN_EXTGPIO3	WMT_PIN(0, 3) +#define WMT_PIN_EXTGPIO4	WMT_PIN(0, 4) +#define WMT_PIN_EXTGPIO5	WMT_PIN(0, 5) +#define WMT_PIN_EXTGPIO6	WMT_PIN(0, 6) +#define WMT_PIN_EXTGPIO7	WMT_PIN(0, 7) +#define WMT_PIN_WAKEUP0		WMT_PIN(0, 16) +#define WMT_PIN_WAKEUP1		WMT_PIN(0, 17) +#define WMT_PIN_SUSGPIO0	WMT_PIN(0, 21) +#define WMT_PIN_SD0CD		WMT_PIN(0, 28) +#define WMT_PIN_SD1CD		WMT_PIN(0, 29) +#define WMT_PIN_VDOUT0		WMT_PIN(1, 0) +#define WMT_PIN_VDOUT1		WMT_PIN(1, 1) +#define WMT_PIN_VDOUT2		WMT_PIN(1, 2) +#define WMT_PIN_VDOUT3		WMT_PIN(1, 3) +#define WMT_PIN_VDOUT4		WMT_PIN(1, 4) +#define WMT_PIN_VDOUT5		WMT_PIN(1, 5) +#define WMT_PIN_VDOUT6		WMT_PIN(1, 6) +#define WMT_PIN_VDOUT7		WMT_PIN(1, 7) +#define WMT_PIN_VDOUT8		WMT_PIN(1, 8) +#define WMT_PIN_VDOUT9		WMT_PIN(1, 9) +#define WMT_PIN_VDOUT10		WMT_PIN(1, 10) +#define WMT_PIN_VDOUT11		WMT_PIN(1, 11) +#define WMT_PIN_VDOUT12		WMT_PIN(1, 12) +#define WMT_PIN_VDOUT13		WMT_PIN(1, 13) +#define WMT_PIN_VDOUT14		WMT_PIN(1, 14) +#define WMT_PIN_VDOUT15		WMT_PIN(1, 15) +#define WMT_PIN_VDOUT16		WMT_PIN(1, 16) +#define WMT_PIN_VDOUT17		WMT_PIN(1, 17) +#define WMT_PIN_VDOUT18		WMT_PIN(1, 18) +#define WMT_PIN_VDOUT19		WMT_PIN(1, 19) +#define WMT_PIN_VDOUT20		WMT_PIN(1, 20) +#define WMT_PIN_VDOUT21		WMT_PIN(1, 21) +#define WMT_PIN_VDOUT22		WMT_PIN(1, 22) +#define WMT_PIN_VDOUT23		WMT_PIN(1, 23) +#define WMT_PIN_VDIN0		WMT_PIN(2, 0) +#define WMT_PIN_VDIN1		WMT_PIN(2, 1) +#define WMT_PIN_VDIN2		WMT_PIN(2, 2) +#define WMT_PIN_VDIN3		WMT_PIN(2, 3) +#define WMT_PIN_VDIN4		WMT_PIN(2, 4) +#define WMT_PIN_VDIN5		WMT_PIN(2, 5) +#define WMT_PIN_VDIN6		WMT_PIN(2, 6) +#define WMT_PIN_VDIN7		WMT_PIN(2, 7) +#define WMT_PIN_I2C1SCL		WMT_PIN(2, 12) +#define WMT_PIN_I2C1SDA		WMT_PIN(2, 13) +#define WMT_PIN_SPI0MOSI	WMT_PIN(2, 24) +#define WMT_PIN_SPI0MISO	WMT_PIN(2, 25) +#define WMT_PIN_SPI0SS0		WMT_PIN(2, 26) +#define WMT_PIN_SPI0CLK		WMT_PIN(2, 27) +#define WMT_PIN_SD0DATA0	WMT_PIN(3, 8) +#define WMT_PIN_SD0DATA1	WMT_PIN(3, 9) +#define WMT_PIN_SD0DATA2	WMT_PIN(3, 10) +#define WMT_PIN_SD0DATA3	WMT_PIN(3, 11) +#define WMT_PIN_SD0CLK		WMT_PIN(3, 12) +#define WMT_PIN_SD0WP		WMT_PIN(3, 13) +#define WMT_PIN_SD0CMD		WMT_PIN(3, 14) +#define WMT_PIN_SD1DATA0	WMT_PIN(3, 24) +#define WMT_PIN_SD1DATA1	WMT_PIN(3, 25) +#define WMT_PIN_SD1DATA2	WMT_PIN(3, 26) +#define WMT_PIN_SD1DATA3	WMT_PIN(3, 27) +#define WMT_PIN_SD1DATA4	WMT_PIN(3, 28) +#define WMT_PIN_SD1DATA5	WMT_PIN(3, 29) +#define WMT_PIN_SD1DATA6	WMT_PIN(3, 30) +#define WMT_PIN_SD1DATA7	WMT_PIN(3, 31) +#define WMT_PIN_I2C0SCL		WMT_PIN(5, 8) +#define WMT_PIN_I2C0SDA		WMT_PIN(5, 9) +#define WMT_PIN_UART0RTS	WMT_PIN(5, 16) +#define WMT_PIN_UART0TXD	WMT_PIN(5, 17) +#define WMT_PIN_UART0CTS	WMT_PIN(5, 18) +#define WMT_PIN_UART0RXD	WMT_PIN(5, 19) +#define WMT_PIN_UART1RTS	WMT_PIN(5, 20) +#define WMT_PIN_UART1TXD	WMT_PIN(5, 21) +#define WMT_PIN_UART1CTS	WMT_PIN(5, 22) +#define WMT_PIN_UART1RXD	WMT_PIN(5, 23) +#define WMT_PIN_UART2RTS	WMT_PIN(5, 24) +#define WMT_PIN_UART2TXD	WMT_PIN(5, 25) +#define WMT_PIN_UART2CTS	WMT_PIN(5, 26) +#define WMT_PIN_UART2RXD	WMT_PIN(5, 27) +#define WMT_PIN_UART3RTS	WMT_PIN(5, 28) +#define WMT_PIN_UART3TXD	WMT_PIN(5, 29) +#define WMT_PIN_UART3CTS	WMT_PIN(5, 30) +#define WMT_PIN_UART3RXD	WMT_PIN(5, 31) +#define WMT_PIN_KPADROW0	WMT_PIN(6, 16) +#define WMT_PIN_KPADROW1	WMT_PIN(6, 17) +#define WMT_PIN_KPADCOL0	WMT_PIN(6, 18) +#define WMT_PIN_KPADCOL1	WMT_PIN(6, 19) +#define WMT_PIN_SD1CLK		WMT_PIN(7, 0) +#define WMT_PIN_SD1CMD		WMT_PIN(7, 1) +#define WMT_PIN_SD1WP		WMT_PIN(7, 13) + +static const struct pinctrl_pin_desc wm8650_pins[] = { +	PINCTRL_PIN(WMT_PIN_EXTGPIO0, "extgpio0"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO1, "extgpio1"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO2, "extgpio2"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO3, "extgpio3"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO4, "extgpio4"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO5, "extgpio5"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO6, "extgpio6"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO7, "extgpio7"), +	PINCTRL_PIN(WMT_PIN_WAKEUP0, "wakeup0"), +	PINCTRL_PIN(WMT_PIN_WAKEUP1, "wakeup1"), +	PINCTRL_PIN(WMT_PIN_SUSGPIO0, "susgpio0"), +	PINCTRL_PIN(WMT_PIN_SD0CD, "sd0_cd"), +	PINCTRL_PIN(WMT_PIN_SD1CD, "sd1_cd"), +	PINCTRL_PIN(WMT_PIN_VDOUT0, "vdout0"), +	PINCTRL_PIN(WMT_PIN_VDOUT1, "vdout1"), +	PINCTRL_PIN(WMT_PIN_VDOUT2, "vdout2"), +	PINCTRL_PIN(WMT_PIN_VDOUT3, "vdout3"), +	PINCTRL_PIN(WMT_PIN_VDOUT4, "vdout4"), +	PINCTRL_PIN(WMT_PIN_VDOUT5, "vdout5"), +	PINCTRL_PIN(WMT_PIN_VDOUT6, "vdout6"), +	PINCTRL_PIN(WMT_PIN_VDOUT7, "vdout7"), +	PINCTRL_PIN(WMT_PIN_VDOUT8, "vdout8"), +	PINCTRL_PIN(WMT_PIN_VDOUT9, "vdout9"), +	PINCTRL_PIN(WMT_PIN_VDOUT10, "vdout10"), +	PINCTRL_PIN(WMT_PIN_VDOUT11, "vdout11"), +	PINCTRL_PIN(WMT_PIN_VDOUT12, "vdout12"), +	PINCTRL_PIN(WMT_PIN_VDOUT13, "vdout13"), +	PINCTRL_PIN(WMT_PIN_VDOUT14, "vdout14"), +	PINCTRL_PIN(WMT_PIN_VDOUT15, "vdout15"), +	PINCTRL_PIN(WMT_PIN_VDOUT16, "vdout16"), +	PINCTRL_PIN(WMT_PIN_VDOUT17, "vdout17"), +	PINCTRL_PIN(WMT_PIN_VDOUT18, "vdout18"), +	PINCTRL_PIN(WMT_PIN_VDOUT19, "vdout19"), +	PINCTRL_PIN(WMT_PIN_VDOUT20, "vdout20"), +	PINCTRL_PIN(WMT_PIN_VDOUT21, "vdout21"), +	PINCTRL_PIN(WMT_PIN_VDOUT22, "vdout22"), +	PINCTRL_PIN(WMT_PIN_VDOUT23, "vdout23"), +	PINCTRL_PIN(WMT_PIN_VDIN0, "vdin0"), +	PINCTRL_PIN(WMT_PIN_VDIN1, "vdin1"), +	PINCTRL_PIN(WMT_PIN_VDIN2, "vdin2"), +	PINCTRL_PIN(WMT_PIN_VDIN3, "vdin3"), +	PINCTRL_PIN(WMT_PIN_VDIN4, "vdin4"), +	PINCTRL_PIN(WMT_PIN_VDIN5, "vdin5"), +	PINCTRL_PIN(WMT_PIN_VDIN6, "vdin6"), +	PINCTRL_PIN(WMT_PIN_VDIN7, "vdin7"), +	PINCTRL_PIN(WMT_PIN_I2C1SCL, "i2c1_scl"), +	PINCTRL_PIN(WMT_PIN_I2C1SDA, "i2c1_sda"), +	PINCTRL_PIN(WMT_PIN_SPI0MOSI, "spi0_mosi"), +	PINCTRL_PIN(WMT_PIN_SPI0MISO, "spi0_miso"), +	PINCTRL_PIN(WMT_PIN_SPI0SS0, "spi0_ss0"), +	PINCTRL_PIN(WMT_PIN_SPI0CLK, "spi0_clk"), +	PINCTRL_PIN(WMT_PIN_SD0DATA0, "sd0_data0"), +	PINCTRL_PIN(WMT_PIN_SD0DATA1, "sd0_data1"), +	PINCTRL_PIN(WMT_PIN_SD0DATA2, "sd0_data2"), +	PINCTRL_PIN(WMT_PIN_SD0DATA3, "sd0_data3"), +	PINCTRL_PIN(WMT_PIN_SD0CLK, "sd0_clk"), +	PINCTRL_PIN(WMT_PIN_SD0WP, "sd0_wp"), +	PINCTRL_PIN(WMT_PIN_SD0CMD, "sd0_cmd"), +	PINCTRL_PIN(WMT_PIN_SD1DATA0, "sd1_data0"), +	PINCTRL_PIN(WMT_PIN_SD1DATA1, "sd1_data1"), +	PINCTRL_PIN(WMT_PIN_SD1DATA2, "sd1_data2"), +	PINCTRL_PIN(WMT_PIN_SD1DATA3, "sd1_data3"), +	PINCTRL_PIN(WMT_PIN_SD1DATA4, "sd1_data4"), +	PINCTRL_PIN(WMT_PIN_SD1DATA5, "sd1_data5"), +	PINCTRL_PIN(WMT_PIN_SD1DATA6, "sd1_data6"), +	PINCTRL_PIN(WMT_PIN_SD1DATA7, "sd1_data7"), +	PINCTRL_PIN(WMT_PIN_I2C0SCL, "i2c0_scl"), +	PINCTRL_PIN(WMT_PIN_I2C0SDA, "i2c0_sda"), +	PINCTRL_PIN(WMT_PIN_UART0RTS, "uart0_rts"), +	PINCTRL_PIN(WMT_PIN_UART0TXD, "uart0_txd"), +	PINCTRL_PIN(WMT_PIN_UART0CTS, "uart0_cts"), +	PINCTRL_PIN(WMT_PIN_UART0RXD, "uart0_rxd"), +	PINCTRL_PIN(WMT_PIN_UART1RTS, "uart1_rts"), +	PINCTRL_PIN(WMT_PIN_UART1TXD, "uart1_txd"), +	PINCTRL_PIN(WMT_PIN_UART1CTS, "uart1_cts"), +	PINCTRL_PIN(WMT_PIN_UART1RXD, "uart1_rxd"), +	PINCTRL_PIN(WMT_PIN_UART2RTS, "uart2_rts"), +	PINCTRL_PIN(WMT_PIN_UART2TXD, "uart2_txd"), +	PINCTRL_PIN(WMT_PIN_UART2CTS, "uart2_cts"), +	PINCTRL_PIN(WMT_PIN_UART2RXD, "uart2_rxd"), +	PINCTRL_PIN(WMT_PIN_UART3RTS, "uart3_rts"), +	PINCTRL_PIN(WMT_PIN_UART3TXD, "uart3_txd"), +	PINCTRL_PIN(WMT_PIN_UART3CTS, "uart3_cts"), +	PINCTRL_PIN(WMT_PIN_UART3RXD, "uart3_rxd"), +	PINCTRL_PIN(WMT_PIN_KPADROW0, "kpadrow0"), +	PINCTRL_PIN(WMT_PIN_KPADROW1, "kpadrow1"), +	PINCTRL_PIN(WMT_PIN_KPADCOL0, "kpadcol0"), +	PINCTRL_PIN(WMT_PIN_KPADCOL1, "kpadcol1"), +	PINCTRL_PIN(WMT_PIN_SD1CLK, "sd1_clk"), +	PINCTRL_PIN(WMT_PIN_SD1CMD, "sd1_cmd"), +	PINCTRL_PIN(WMT_PIN_SD1WP, "sd1_wp"), +}; + +/* Order of these names must match the above list */ +static const char * const wm8650_groups[] = { +	"extgpio0", +	"extgpio1", +	"extgpio2", +	"extgpio3", +	"extgpio4", +	"extgpio5", +	"extgpio6", +	"extgpio7", +	"wakeup0", +	"wakeup1", +	"susgpio0", +	"sd0_cd", +	"sd1_cd", +	"vdout0", +	"vdout1", +	"vdout2", +	"vdout3", +	"vdout4", +	"vdout5", +	"vdout6", +	"vdout7", +	"vdout8", +	"vdout9", +	"vdout10", +	"vdout11", +	"vdout12", +	"vdout13", +	"vdout14", +	"vdout15", +	"vdout16", +	"vdout17", +	"vdout18", +	"vdout19", +	"vdout20", +	"vdout21", +	"vdout22", +	"vdout23", +	"vdin0", +	"vdin1", +	"vdin2", +	"vdin3", +	"vdin4", +	"vdin5", +	"vdin6", +	"vdin7", +	"i2c1_scl", +	"i2c1_sda", +	"spi0_mosi", +	"spi0_miso", +	"spi0_ss0", +	"spi0_clk", +	"sd0_data0", +	"sd0_data1", +	"sd0_data2", +	"sd0_data3", +	"sd0_clk", +	"sd0_wp", +	"sd0_cmd", +	"sd1_data0", +	"sd1_data1", +	"sd1_data2", +	"sd1_data3", +	"sd1_data4", +	"sd1_data5", +	"sd1_data6", +	"sd1_data7", +	"i2c0_scl", +	"i2c0_sda", +	"uart0_rts", +	"uart0_txd", +	"uart0_cts", +	"uart0_rxd", +	"uart1_rts", +	"uart1_txd", +	"uart1_cts", +	"uart1_rxd", +	"uart2_rts", +	"uart2_txd", +	"uart2_cts", +	"uart2_rxd", +	"uart3_rts", +	"uart3_txd", +	"uart3_cts", +	"uart3_rxd", +	"kpadrow0", +	"kpadrow1", +	"kpadcol0", +	"kpadcol1", +	"sd1_clk", +	"sd1_cmd", +	"sd1_wp", +}; + +static int wm8650_pinctrl_probe(struct platform_device *pdev) +{ +	struct wmt_pinctrl_data *data; + +	data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); +	if (!data) { +		dev_err(&pdev->dev, "failed to allocate data\n"); +		return -ENOMEM; +	} + +	data->banks = wm8650_banks; +	data->nbanks = ARRAY_SIZE(wm8650_banks); +	data->pins = wm8650_pins; +	data->npins = ARRAY_SIZE(wm8650_pins); +	data->groups = wm8650_groups; +	data->ngroups = ARRAY_SIZE(wm8650_groups); + +	return wmt_pinctrl_probe(pdev, data); +} + +static int wm8650_pinctrl_remove(struct platform_device *pdev) +{ +	return wmt_pinctrl_remove(pdev); +} + +static struct of_device_id wmt_pinctrl_of_match[] = { +	{ .compatible = "wm,wm8650-pinctrl" }, +	{ /* sentinel */ }, +}; + +static struct platform_driver wmt_pinctrl_driver = { +	.probe	= wm8650_pinctrl_probe, +	.remove	= wm8650_pinctrl_remove, +	.driver = { +		.name	= "pinctrl-wm8650", +		.owner	= THIS_MODULE, +		.of_match_table	= wmt_pinctrl_of_match, +	}, +}; + +module_platform_driver(wmt_pinctrl_driver); + +MODULE_AUTHOR("Tony Prisk <linux@prisktech.co.nz>"); +MODULE_DESCRIPTION("Wondermedia WM8650 Pincontrol driver"); +MODULE_LICENSE("GPL v2"); +MODULE_DEVICE_TABLE(of, wmt_pinctrl_of_match); diff --git a/drivers/pinctrl/vt8500/pinctrl-wm8750.c b/drivers/pinctrl/vt8500/pinctrl-wm8750.c new file mode 100644 index 00000000000..b964cc55056 --- /dev/null +++ b/drivers/pinctrl/vt8500/pinctrl-wm8750.c @@ -0,0 +1,409 @@ +/* + * Pinctrl data for Wondermedia WM8750 SoC + * + * Copyright (c) 2013 Tony Prisk <linux@prisktech.co.nz> + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for + * more details. + */ + +#include <linux/io.h> +#include <linux/module.h> +#include <linux/pinctrl/pinctrl.h> +#include <linux/platform_device.h> +#include <linux/slab.h> + +#include "pinctrl-wmt.h" + +/* + * Describe the register offsets within the GPIO memory space + * The dedicated external GPIO's should always be listed in bank 0 + * so they are exported in the 0..31 range which is what users + * expect. + * + * Do not reorder these banks as it will change the pin numbering + */ +static const struct wmt_pinctrl_bank_registers wm8750_banks[] = { +	WMT_PINCTRL_BANK(0x40, 0x80, 0xC0, 0x00, 0x480, 0x4C0),	/* 0 */ +	WMT_PINCTRL_BANK(0x44, 0x84, 0xC4, 0x04, 0x484, 0x4C4),	/* 1 */ +	WMT_PINCTRL_BANK(0x48, 0x88, 0xC8, 0x08, 0x488, 0x4C8),	/* 2 */ +	WMT_PINCTRL_BANK(0x4C, 0x8C, 0xCC, 0x0C, 0x48C, 0x4CC),	/* 3 */ +	WMT_PINCTRL_BANK(0x50, 0x90, 0xD0, 0x10, 0x490, 0x4D0),	/* 4 */ +	WMT_PINCTRL_BANK(0x54, 0x94, 0xD4, 0x14, 0x494, 0x4D4),	/* 5 */ +	WMT_PINCTRL_BANK(0x58, 0x98, 0xD8, 0x18, 0x498, 0x4D8),	/* 6 */ +	WMT_PINCTRL_BANK(0x5C, 0x9C, 0xDC, 0x1C, 0x49C, 0x4DC),	/* 7 */ +	WMT_PINCTRL_BANK(0x60, 0xA0, 0xE0, 0x20, 0x4A0, 0x4E0),	/* 8 */ +	WMT_PINCTRL_BANK(0x70, 0xB0, 0xF0, 0x30, 0x4B0, 0x4F0),	/* 9 */ +	WMT_PINCTRL_BANK(0x7C, 0xBC, 0xDC, 0x3C, 0x4BC, 0x4FC),	/* 10 */ +}; + +/* Please keep sorted by bank/bit */ +#define WMT_PIN_EXTGPIO0	WMT_PIN(0, 0) +#define WMT_PIN_EXTGPIO1	WMT_PIN(0, 1) +#define WMT_PIN_EXTGPIO2	WMT_PIN(0, 2) +#define WMT_PIN_EXTGPIO3	WMT_PIN(0, 3) +#define WMT_PIN_EXTGPIO4	WMT_PIN(0, 4) +#define WMT_PIN_EXTGPIO5	WMT_PIN(0, 5) +#define WMT_PIN_EXTGPIO6	WMT_PIN(0, 6) +#define WMT_PIN_EXTGPIO7	WMT_PIN(0, 7) +#define WMT_PIN_WAKEUP0		WMT_PIN(0, 16) +#define WMT_PIN_WAKEUP1		WMT_PIN(0, 16) +#define WMT_PIN_SD0CD		WMT_PIN(0, 28) +#define WMT_PIN_VDOUT0		WMT_PIN(1, 0) +#define WMT_PIN_VDOUT1		WMT_PIN(1, 1) +#define WMT_PIN_VDOUT2		WMT_PIN(1, 2) +#define WMT_PIN_VDOUT3		WMT_PIN(1, 3) +#define WMT_PIN_VDOUT4		WMT_PIN(1, 4) +#define WMT_PIN_VDOUT5		WMT_PIN(1, 5) +#define WMT_PIN_VDOUT6		WMT_PIN(1, 6) +#define WMT_PIN_VDOUT7		WMT_PIN(1, 7) +#define WMT_PIN_VDOUT8		WMT_PIN(1, 8) +#define WMT_PIN_VDOUT9		WMT_PIN(1, 9) +#define WMT_PIN_VDOUT10		WMT_PIN(1, 10) +#define WMT_PIN_VDOUT11		WMT_PIN(1, 11) +#define WMT_PIN_VDOUT12		WMT_PIN(1, 12) +#define WMT_PIN_VDOUT13		WMT_PIN(1, 13) +#define WMT_PIN_VDOUT14		WMT_PIN(1, 14) +#define WMT_PIN_VDOUT15		WMT_PIN(1, 15) +#define WMT_PIN_VDOUT16		WMT_PIN(1, 16) +#define WMT_PIN_VDOUT17		WMT_PIN(1, 17) +#define WMT_PIN_VDOUT18		WMT_PIN(1, 18) +#define WMT_PIN_VDOUT19		WMT_PIN(1, 19) +#define WMT_PIN_VDOUT20		WMT_PIN(1, 20) +#define WMT_PIN_VDOUT21		WMT_PIN(1, 21) +#define WMT_PIN_VDOUT22		WMT_PIN(1, 22) +#define WMT_PIN_VDOUT23		WMT_PIN(1, 23) +#define WMT_PIN_VDIN0		WMT_PIN(2, 0) +#define WMT_PIN_VDIN1		WMT_PIN(2, 1) +#define WMT_PIN_VDIN2		WMT_PIN(2, 2) +#define WMT_PIN_VDIN3		WMT_PIN(2, 3) +#define WMT_PIN_VDIN4		WMT_PIN(2, 4) +#define WMT_PIN_VDIN5		WMT_PIN(2, 5) +#define WMT_PIN_VDIN6		WMT_PIN(2, 6) +#define WMT_PIN_VDIN7		WMT_PIN(2, 7) +#define WMT_PIN_SPI0_MOSI	WMT_PIN(2, 24) +#define WMT_PIN_SPI0_MISO	WMT_PIN(2, 25) +#define WMT_PIN_SPI0_SS		WMT_PIN(2, 26) +#define WMT_PIN_SPI0_CLK	WMT_PIN(2, 27) +#define WMT_PIN_SPI0_SSB	WMT_PIN(2, 28) +#define WMT_PIN_SD0CLK		WMT_PIN(3, 17) +#define WMT_PIN_SD0CMD		WMT_PIN(3, 18) +#define WMT_PIN_SD0WP		WMT_PIN(3, 19) +#define WMT_PIN_SD0DATA0	WMT_PIN(3, 20) +#define WMT_PIN_SD0DATA1	WMT_PIN(3, 21) +#define WMT_PIN_SD0DATA2	WMT_PIN(3, 22) +#define WMT_PIN_SD0DATA3	WMT_PIN(3, 23) +#define WMT_PIN_SD1DATA0	WMT_PIN(3, 24) +#define WMT_PIN_SD1DATA1	WMT_PIN(3, 25) +#define WMT_PIN_SD1DATA2	WMT_PIN(3, 26) +#define WMT_PIN_SD1DATA3	WMT_PIN(3, 27) +#define WMT_PIN_SD1DATA4	WMT_PIN(3, 28) +#define WMT_PIN_SD1DATA5	WMT_PIN(3, 29) +#define WMT_PIN_SD1DATA6	WMT_PIN(3, 30) +#define WMT_PIN_SD1DATA7	WMT_PIN(3, 31) +#define WMT_PIN_I2C0_SCL	WMT_PIN(5, 8) +#define WMT_PIN_I2C0_SDA	WMT_PIN(5, 9) +#define WMT_PIN_I2C1_SCL	WMT_PIN(5, 10) +#define WMT_PIN_I2C1_SDA	WMT_PIN(5, 11) +#define WMT_PIN_I2C2_SCL	WMT_PIN(5, 12) +#define WMT_PIN_I2C2_SDA	WMT_PIN(5, 13) +#define WMT_PIN_UART0_RTS	WMT_PIN(5, 16) +#define WMT_PIN_UART0_TXD	WMT_PIN(5, 17) +#define WMT_PIN_UART0_CTS	WMT_PIN(5, 18) +#define WMT_PIN_UART0_RXD	WMT_PIN(5, 19) +#define WMT_PIN_UART1_RTS	WMT_PIN(5, 20) +#define WMT_PIN_UART1_TXD	WMT_PIN(5, 21) +#define WMT_PIN_UART1_CTS	WMT_PIN(5, 22) +#define WMT_PIN_UART1_RXD	WMT_PIN(5, 23) +#define WMT_PIN_UART2_RTS	WMT_PIN(5, 24) +#define WMT_PIN_UART2_TXD	WMT_PIN(5, 25) +#define WMT_PIN_UART2_CTS	WMT_PIN(5, 26) +#define WMT_PIN_UART2_RXD	WMT_PIN(5, 27) +#define WMT_PIN_UART3_RTS	WMT_PIN(5, 28) +#define WMT_PIN_UART3_TXD	WMT_PIN(5, 29) +#define WMT_PIN_UART3_CTS	WMT_PIN(5, 30) +#define WMT_PIN_UART3_RXD	WMT_PIN(5, 31) +#define WMT_PIN_SD2CD		WMT_PIN(6, 0) +#define WMT_PIN_SD2DATA3	WMT_PIN(6, 1) +#define WMT_PIN_SD2DATA0	WMT_PIN(6, 2) +#define WMT_PIN_SD2WP		WMT_PIN(6, 3) +#define WMT_PIN_SD2DATA1	WMT_PIN(6, 4) +#define WMT_PIN_SD2DATA2	WMT_PIN(6, 5) +#define WMT_PIN_SD2CMD		WMT_PIN(6, 6) +#define WMT_PIN_SD2CLK		WMT_PIN(6, 7) +#define WMT_PIN_SD2PWR		WMT_PIN(6, 9) +#define WMT_PIN_SD1CLK		WMT_PIN(7, 0) +#define WMT_PIN_SD1CMD		WMT_PIN(7, 1) +#define WMT_PIN_SD1PWR		WMT_PIN(7, 10) +#define WMT_PIN_SD1WP		WMT_PIN(7, 11) +#define WMT_PIN_SD1CD		WMT_PIN(7, 12) +#define WMT_PIN_SPI0SS3		WMT_PIN(7, 24) +#define WMT_PIN_SPI0SS2		WMT_PIN(7, 25) +#define WMT_PIN_PWMOUT1		WMT_PIN(7, 26) +#define WMT_PIN_PWMOUT0		WMT_PIN(7, 27) + +static const struct pinctrl_pin_desc wm8750_pins[] = { +	PINCTRL_PIN(WMT_PIN_EXTGPIO0, "extgpio0"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO1, "extgpio1"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO2, "extgpio2"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO3, "extgpio3"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO4, "extgpio4"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO5, "extgpio5"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO6, "extgpio6"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO7, "extgpio7"), +	PINCTRL_PIN(WMT_PIN_WAKEUP0, "wakeup0"), +	PINCTRL_PIN(WMT_PIN_WAKEUP1, "wakeup1"), +	PINCTRL_PIN(WMT_PIN_SD0CD, "sd0_cd"), +	PINCTRL_PIN(WMT_PIN_VDOUT0, "vdout0"), +	PINCTRL_PIN(WMT_PIN_VDOUT1, "vdout1"), +	PINCTRL_PIN(WMT_PIN_VDOUT2, "vdout2"), +	PINCTRL_PIN(WMT_PIN_VDOUT3, "vdout3"), +	PINCTRL_PIN(WMT_PIN_VDOUT4, "vdout4"), +	PINCTRL_PIN(WMT_PIN_VDOUT5, "vdout5"), +	PINCTRL_PIN(WMT_PIN_VDOUT6, "vdout6"), +	PINCTRL_PIN(WMT_PIN_VDOUT7, "vdout7"), +	PINCTRL_PIN(WMT_PIN_VDOUT8, "vdout8"), +	PINCTRL_PIN(WMT_PIN_VDOUT9, "vdout9"), +	PINCTRL_PIN(WMT_PIN_VDOUT10, "vdout10"), +	PINCTRL_PIN(WMT_PIN_VDOUT11, "vdout11"), +	PINCTRL_PIN(WMT_PIN_VDOUT12, "vdout12"), +	PINCTRL_PIN(WMT_PIN_VDOUT13, "vdout13"), +	PINCTRL_PIN(WMT_PIN_VDOUT14, "vdout14"), +	PINCTRL_PIN(WMT_PIN_VDOUT15, "vdout15"), +	PINCTRL_PIN(WMT_PIN_VDOUT16, "vdout16"), +	PINCTRL_PIN(WMT_PIN_VDOUT17, "vdout17"), +	PINCTRL_PIN(WMT_PIN_VDOUT18, "vdout18"), +	PINCTRL_PIN(WMT_PIN_VDOUT19, "vdout19"), +	PINCTRL_PIN(WMT_PIN_VDOUT20, "vdout20"), +	PINCTRL_PIN(WMT_PIN_VDOUT21, "vdout21"), +	PINCTRL_PIN(WMT_PIN_VDOUT22, "vdout22"), +	PINCTRL_PIN(WMT_PIN_VDOUT23, "vdout23"), +	PINCTRL_PIN(WMT_PIN_VDIN0, "vdin0"), +	PINCTRL_PIN(WMT_PIN_VDIN1, "vdin1"), +	PINCTRL_PIN(WMT_PIN_VDIN2, "vdin2"), +	PINCTRL_PIN(WMT_PIN_VDIN3, "vdin3"), +	PINCTRL_PIN(WMT_PIN_VDIN4, "vdin4"), +	PINCTRL_PIN(WMT_PIN_VDIN5, "vdin5"), +	PINCTRL_PIN(WMT_PIN_VDIN6, "vdin6"), +	PINCTRL_PIN(WMT_PIN_VDIN7, "vdin7"), +	PINCTRL_PIN(WMT_PIN_SPI0_MOSI, "spi0_mosi"), +	PINCTRL_PIN(WMT_PIN_SPI0_MISO, "spi0_miso"), +	PINCTRL_PIN(WMT_PIN_SPI0_SS, "spi0_ss"), +	PINCTRL_PIN(WMT_PIN_SPI0_CLK, "spi0_clk"), +	PINCTRL_PIN(WMT_PIN_SPI0_SSB, "spi0_ssb"), +	PINCTRL_PIN(WMT_PIN_SD0CLK, "sd0_clk"), +	PINCTRL_PIN(WMT_PIN_SD0CMD, "sd0_cmd"), +	PINCTRL_PIN(WMT_PIN_SD0WP, "sd0_wp"), +	PINCTRL_PIN(WMT_PIN_SD0DATA0, "sd0_data0"), +	PINCTRL_PIN(WMT_PIN_SD0DATA1, "sd0_data1"), +	PINCTRL_PIN(WMT_PIN_SD0DATA2, "sd0_data2"), +	PINCTRL_PIN(WMT_PIN_SD0DATA3, "sd0_data3"), +	PINCTRL_PIN(WMT_PIN_SD1DATA0, "sd1_data0"), +	PINCTRL_PIN(WMT_PIN_SD1DATA1, "sd1_data1"), +	PINCTRL_PIN(WMT_PIN_SD1DATA2, "sd1_data2"), +	PINCTRL_PIN(WMT_PIN_SD1DATA3, "sd1_data3"), +	PINCTRL_PIN(WMT_PIN_SD1DATA4, "sd1_data4"), +	PINCTRL_PIN(WMT_PIN_SD1DATA5, "sd1_data5"), +	PINCTRL_PIN(WMT_PIN_SD1DATA6, "sd1_data6"), +	PINCTRL_PIN(WMT_PIN_SD1DATA7, "sd1_data7"), +	PINCTRL_PIN(WMT_PIN_I2C0_SCL, "i2c0_scl"), +	PINCTRL_PIN(WMT_PIN_I2C0_SDA, "i2c0_sda"), +	PINCTRL_PIN(WMT_PIN_I2C1_SCL, "i2c1_scl"), +	PINCTRL_PIN(WMT_PIN_I2C1_SDA, "i2c1_sda"), +	PINCTRL_PIN(WMT_PIN_I2C2_SCL, "i2c2_scl"), +	PINCTRL_PIN(WMT_PIN_I2C2_SDA, "i2c2_sda"), +	PINCTRL_PIN(WMT_PIN_UART0_RTS, "uart0_rts"), +	PINCTRL_PIN(WMT_PIN_UART0_TXD, "uart0_txd"), +	PINCTRL_PIN(WMT_PIN_UART0_CTS, "uart0_cts"), +	PINCTRL_PIN(WMT_PIN_UART0_RXD, "uart0_rxd"), +	PINCTRL_PIN(WMT_PIN_UART1_RTS, "uart1_rts"), +	PINCTRL_PIN(WMT_PIN_UART1_TXD, "uart1_txd"), +	PINCTRL_PIN(WMT_PIN_UART1_CTS, "uart1_cts"), +	PINCTRL_PIN(WMT_PIN_UART1_RXD, "uart1_rxd"), +	PINCTRL_PIN(WMT_PIN_UART2_RTS, "uart2_rts"), +	PINCTRL_PIN(WMT_PIN_UART2_TXD, "uart2_txd"), +	PINCTRL_PIN(WMT_PIN_UART2_CTS, "uart2_cts"), +	PINCTRL_PIN(WMT_PIN_UART2_RXD, "uart2_rxd"), +	PINCTRL_PIN(WMT_PIN_UART3_RTS, "uart3_rts"), +	PINCTRL_PIN(WMT_PIN_UART3_TXD, "uart3_txd"), +	PINCTRL_PIN(WMT_PIN_UART3_CTS, "uart3_cts"), +	PINCTRL_PIN(WMT_PIN_UART3_RXD, "uart3_rxd"), +	PINCTRL_PIN(WMT_PIN_SD2CD, "sd2_cd"), +	PINCTRL_PIN(WMT_PIN_SD2DATA3, "sd2_data3"), +	PINCTRL_PIN(WMT_PIN_SD2DATA0, "sd2_data0"), +	PINCTRL_PIN(WMT_PIN_SD2WP, "sd2_wp"), +	PINCTRL_PIN(WMT_PIN_SD2DATA1, "sd2_data1"), +	PINCTRL_PIN(WMT_PIN_SD2DATA2, "sd2_data2"), +	PINCTRL_PIN(WMT_PIN_SD2CMD, "sd2_cmd"), +	PINCTRL_PIN(WMT_PIN_SD2CLK, "sd2_clk"), +	PINCTRL_PIN(WMT_PIN_SD2PWR, "sd2_pwr"), +	PINCTRL_PIN(WMT_PIN_SD1CLK, "sd1_clk"), +	PINCTRL_PIN(WMT_PIN_SD1CMD, "sd1_cmd"), +	PINCTRL_PIN(WMT_PIN_SD1PWR, "sd1_pwr"), +	PINCTRL_PIN(WMT_PIN_SD1WP, "sd1_wp"), +	PINCTRL_PIN(WMT_PIN_SD1CD, "sd1_cd"), +	PINCTRL_PIN(WMT_PIN_SPI0SS3, "spi0_ss3"), +	PINCTRL_PIN(WMT_PIN_SPI0SS2, "spi0_ss2"), +	PINCTRL_PIN(WMT_PIN_PWMOUT1, "pwmout1"), +	PINCTRL_PIN(WMT_PIN_PWMOUT0, "pwmout0"), +}; + +/* Order of these names must match the above list */ +static const char * const wm8750_groups[] = { +	"extgpio0", +	"extgpio1", +	"extgpio2", +	"extgpio3", +	"extgpio4", +	"extgpio5", +	"extgpio6", +	"extgpio7", +	"wakeup0", +	"wakeup1", +	"sd0_cd", +	"vdout0", +	"vdout1", +	"vdout2", +	"vdout3", +	"vdout4", +	"vdout5", +	"vdout6", +	"vdout7", +	"vdout8", +	"vdout9", +	"vdout10", +	"vdout11", +	"vdout12", +	"vdout13", +	"vdout14", +	"vdout15", +	"vdout16", +	"vdout17", +	"vdout18", +	"vdout19", +	"vdout20", +	"vdout21", +	"vdout22", +	"vdout23", +	"vdin0", +	"vdin1", +	"vdin2", +	"vdin3", +	"vdin4", +	"vdin5", +	"vdin6", +	"vdin7", +	"spi0_mosi", +	"spi0_miso", +	"spi0_ss", +	"spi0_clk", +	"spi0_ssb", +	"sd0_clk", +	"sd0_cmd", +	"sd0_wp", +	"sd0_data0", +	"sd0_data1", +	"sd0_data2", +	"sd0_data3", +	"sd1_data0", +	"sd1_data1", +	"sd1_data2", +	"sd1_data3", +	"sd1_data4", +	"sd1_data5", +	"sd1_data6", +	"sd1_data7", +	"i2c0_scl", +	"i2c0_sda", +	"i2c1_scl", +	"i2c1_sda", +	"i2c2_scl", +	"i2c2_sda", +	"uart0_rts", +	"uart0_txd", +	"uart0_cts", +	"uart0_rxd", +	"uart1_rts", +	"uart1_txd", +	"uart1_cts", +	"uart1_rxd", +	"uart2_rts", +	"uart2_txd", +	"uart2_cts", +	"uart2_rxd", +	"uart3_rts", +	"uart3_txd", +	"uart3_cts", +	"uart3_rxd", +	"sd2_cd", +	"sd2_data3", +	"sd2_data0", +	"sd2_wp", +	"sd2_data1", +	"sd2_data2", +	"sd2_cmd", +	"sd2_clk", +	"sd2_pwr", +	"sd1_clk", +	"sd1_cmd", +	"sd1_pwr", +	"sd1_wp", +	"sd1_cd", +	"spi0_ss3", +	"spi0_ss2", +	"pwmout1", +	"pwmout0", +}; + +static int wm8750_pinctrl_probe(struct platform_device *pdev) +{ +	struct wmt_pinctrl_data *data; + +	data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); +	if (!data) { +		dev_err(&pdev->dev, "failed to allocate data\n"); +		return -ENOMEM; +	} + +	data->banks = wm8750_banks; +	data->nbanks = ARRAY_SIZE(wm8750_banks); +	data->pins = wm8750_pins; +	data->npins = ARRAY_SIZE(wm8750_pins); +	data->groups = wm8750_groups; +	data->ngroups = ARRAY_SIZE(wm8750_groups); + +	return wmt_pinctrl_probe(pdev, data); +} + +static int wm8750_pinctrl_remove(struct platform_device *pdev) +{ +	return wmt_pinctrl_remove(pdev); +} + +static struct of_device_id wmt_pinctrl_of_match[] = { +	{ .compatible = "wm,wm8750-pinctrl" }, +	{ /* sentinel */ }, +}; + +static struct platform_driver wmt_pinctrl_driver = { +	.probe	= wm8750_pinctrl_probe, +	.remove	= wm8750_pinctrl_remove, +	.driver = { +		.name	= "pinctrl-wm8750", +		.owner	= THIS_MODULE, +		.of_match_table	= wmt_pinctrl_of_match, +	}, +}; + +module_platform_driver(wmt_pinctrl_driver); + +MODULE_AUTHOR("Tony Prisk <linux@prisktech.co.nz>"); +MODULE_DESCRIPTION("Wondermedia WM8750 Pincontrol driver"); +MODULE_LICENSE("GPL v2"); +MODULE_DEVICE_TABLE(of, wmt_pinctrl_of_match); diff --git a/drivers/pinctrl/vt8500/pinctrl-wm8850.c b/drivers/pinctrl/vt8500/pinctrl-wm8850.c new file mode 100644 index 00000000000..ecadce9c91d --- /dev/null +++ b/drivers/pinctrl/vt8500/pinctrl-wm8850.c @@ -0,0 +1,388 @@ +/* + * Pinctrl data for Wondermedia WM8850 SoC + * + * Copyright (c) 2013 Tony Prisk <linux@prisktech.co.nz> + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for + * more details. + */ + +#include <linux/io.h> +#include <linux/module.h> +#include <linux/pinctrl/pinctrl.h> +#include <linux/platform_device.h> +#include <linux/slab.h> + +#include "pinctrl-wmt.h" + +/* + * Describe the register offsets within the GPIO memory space + * The dedicated external GPIO's should always be listed in bank 0 + * so they are exported in the 0..31 range which is what users + * expect. + * + * Do not reorder these banks as it will change the pin numbering + */ +static const struct wmt_pinctrl_bank_registers wm8850_banks[] = { +	WMT_PINCTRL_BANK(0x40, 0x80, 0xC0, 0x00, 0x480, 0x4C0),		/* 0 */ +	WMT_PINCTRL_BANK(0x44, 0x84, 0xC4, 0x04, 0x484, 0x4C4),		/* 1 */ +	WMT_PINCTRL_BANK(0x48, 0x88, 0xC8, 0x08, 0x488, 0x4C8),		/* 2 */ +	WMT_PINCTRL_BANK(0x4C, 0x8C, 0xCC, 0x0C, 0x48C, 0x4CC),		/* 3 */ +	WMT_PINCTRL_BANK(0x50, 0x90, 0xD0, 0x10, 0x490, 0x4D0),		/* 4 */ +	WMT_PINCTRL_BANK(0x54, 0x94, 0xD4, 0x14, 0x494, 0x4D4),		/* 5 */ +	WMT_PINCTRL_BANK(0x58, 0x98, 0xD8, 0x18, 0x498, 0x4D8),		/* 6 */ +	WMT_PINCTRL_BANK(0x5C, 0x9C, 0xDC, 0x1C, 0x49C, 0x4DC),		/* 7 */ +	WMT_PINCTRL_BANK(0x60, 0xA0, 0xE0, 0x20, 0x4A0, 0x4E0),		/* 8 */ +	WMT_PINCTRL_BANK(0x70, 0xB0, 0xF0, 0x30, 0x4B0, 0x4F0),		/* 9 */ +	WMT_PINCTRL_BANK(0x7C, 0xBC, 0xDC, 0x3C, 0x4BC, 0x4FC),		/* 10 */ +}; + +/* Please keep sorted by bank/bit */ +#define WMT_PIN_EXTGPIO0	WMT_PIN(0, 0) +#define WMT_PIN_EXTGPIO1	WMT_PIN(0, 1) +#define WMT_PIN_EXTGPIO2	WMT_PIN(0, 2) +#define WMT_PIN_EXTGPIO3	WMT_PIN(0, 3) +#define WMT_PIN_EXTGPIO4	WMT_PIN(0, 4) +#define WMT_PIN_EXTGPIO5	WMT_PIN(0, 5) +#define WMT_PIN_EXTGPIO6	WMT_PIN(0, 6) +#define WMT_PIN_EXTGPIO7	WMT_PIN(0, 7) +#define WMT_PIN_WAKEUP0		WMT_PIN(0, 16) +#define WMT_PIN_WAKEUP1		WMT_PIN(0, 17) +#define WMT_PIN_WAKEUP2		WMT_PIN(0, 18) +#define WMT_PIN_WAKEUP3		WMT_PIN(0, 19) +#define WMT_PIN_SUSGPIO0	WMT_PIN(0, 21) +#define WMT_PIN_SUSGPIO1	WMT_PIN(0, 22) +#define WMT_PIN_SD0CD		WMT_PIN(0, 28) +#define WMT_PIN_VDOUT0		WMT_PIN(1, 0) +#define WMT_PIN_VDOUT1		WMT_PIN(1, 1) +#define WMT_PIN_VDOUT2		WMT_PIN(1, 2) +#define WMT_PIN_VDOUT3		WMT_PIN(1, 3) +#define WMT_PIN_VDOUT4		WMT_PIN(1, 4) +#define WMT_PIN_VDOUT5		WMT_PIN(1, 5) +#define WMT_PIN_VDOUT6		WMT_PIN(1, 6) +#define WMT_PIN_VDOUT7		WMT_PIN(1, 7) +#define WMT_PIN_VDOUT8		WMT_PIN(1, 8) +#define WMT_PIN_VDOUT9		WMT_PIN(1, 9) +#define WMT_PIN_VDOUT10		WMT_PIN(1, 10) +#define WMT_PIN_VDOUT11		WMT_PIN(1, 11) +#define WMT_PIN_VDOUT12		WMT_PIN(1, 12) +#define WMT_PIN_VDOUT13		WMT_PIN(1, 13) +#define WMT_PIN_VDOUT14		WMT_PIN(1, 14) +#define WMT_PIN_VDOUT15		WMT_PIN(1, 15) +#define WMT_PIN_VDOUT16		WMT_PIN(1, 16) +#define WMT_PIN_VDOUT17		WMT_PIN(1, 17) +#define WMT_PIN_VDOUT18		WMT_PIN(1, 18) +#define WMT_PIN_VDOUT19		WMT_PIN(1, 19) +#define WMT_PIN_VDOUT20		WMT_PIN(1, 20) +#define WMT_PIN_VDOUT21		WMT_PIN(1, 21) +#define WMT_PIN_VDOUT22		WMT_PIN(1, 22) +#define WMT_PIN_VDOUT23		WMT_PIN(1, 23) +#define WMT_PIN_VDIN0		WMT_PIN(2, 0) +#define WMT_PIN_VDIN1		WMT_PIN(2, 1) +#define WMT_PIN_VDIN2		WMT_PIN(2, 2) +#define WMT_PIN_VDIN3		WMT_PIN(2, 3) +#define WMT_PIN_VDIN4		WMT_PIN(2, 4) +#define WMT_PIN_VDIN5		WMT_PIN(2, 5) +#define WMT_PIN_VDIN6		WMT_PIN(2, 6) +#define WMT_PIN_VDIN7		WMT_PIN(2, 7) +#define WMT_PIN_SPI0_MOSI	WMT_PIN(2, 24) +#define WMT_PIN_SPI0_MISO	WMT_PIN(2, 25) +#define WMT_PIN_SPI0_SS		WMT_PIN(2, 26) +#define WMT_PIN_SPI0_CLK	WMT_PIN(2, 27) +#define WMT_PIN_SPI0_SSB	WMT_PIN(2, 28) +#define WMT_PIN_SD0CLK		WMT_PIN(3, 17) +#define WMT_PIN_SD0CMD		WMT_PIN(3, 18) +#define WMT_PIN_SD0WP		WMT_PIN(3, 19) +#define WMT_PIN_SD0DATA0	WMT_PIN(3, 20) +#define WMT_PIN_SD0DATA1	WMT_PIN(3, 21) +#define WMT_PIN_SD0DATA2	WMT_PIN(3, 22) +#define WMT_PIN_SD0DATA3	WMT_PIN(3, 23) +#define WMT_PIN_SD1DATA0	WMT_PIN(3, 24) +#define WMT_PIN_SD1DATA1	WMT_PIN(3, 25) +#define WMT_PIN_SD1DATA2	WMT_PIN(3, 26) +#define WMT_PIN_SD1DATA3	WMT_PIN(3, 27) +#define WMT_PIN_SD1DATA4	WMT_PIN(3, 28) +#define WMT_PIN_SD1DATA5	WMT_PIN(3, 29) +#define WMT_PIN_SD1DATA6	WMT_PIN(3, 30) +#define WMT_PIN_SD1DATA7	WMT_PIN(3, 31) +#define WMT_PIN_I2C0_SCL	WMT_PIN(5, 8) +#define WMT_PIN_I2C0_SDA	WMT_PIN(5, 9) +#define WMT_PIN_I2C1_SCL	WMT_PIN(5, 10) +#define WMT_PIN_I2C1_SDA	WMT_PIN(5, 11) +#define WMT_PIN_I2C2_SCL	WMT_PIN(5, 12) +#define WMT_PIN_I2C2_SDA	WMT_PIN(5, 13) +#define WMT_PIN_UART0_RTS	WMT_PIN(5, 16) +#define WMT_PIN_UART0_TXD	WMT_PIN(5, 17) +#define WMT_PIN_UART0_CTS	WMT_PIN(5, 18) +#define WMT_PIN_UART0_RXD	WMT_PIN(5, 19) +#define WMT_PIN_UART1_RTS	WMT_PIN(5, 20) +#define WMT_PIN_UART1_TXD	WMT_PIN(5, 21) +#define WMT_PIN_UART1_CTS	WMT_PIN(5, 22) +#define WMT_PIN_UART1_RXD	WMT_PIN(5, 23) +#define WMT_PIN_UART2_RTS	WMT_PIN(5, 24) +#define WMT_PIN_UART2_TXD	WMT_PIN(5, 25) +#define WMT_PIN_UART2_CTS	WMT_PIN(5, 26) +#define WMT_PIN_UART2_RXD	WMT_PIN(5, 27) +#define WMT_PIN_SD2WP		WMT_PIN(6, 3) +#define WMT_PIN_SD2CMD		WMT_PIN(6, 6) +#define WMT_PIN_SD2CLK		WMT_PIN(6, 7) +#define WMT_PIN_SD2PWR		WMT_PIN(6, 9) +#define WMT_PIN_SD1CLK		WMT_PIN(7, 0) +#define WMT_PIN_SD1CMD		WMT_PIN(7, 1) +#define WMT_PIN_SD1PWR		WMT_PIN(7, 10) +#define WMT_PIN_SD1WP		WMT_PIN(7, 11) +#define WMT_PIN_SD1CD		WMT_PIN(7, 12) +#define WMT_PIN_PWMOUT1		WMT_PIN(7, 26) +#define WMT_PIN_PWMOUT0		WMT_PIN(7, 27) + +static const struct pinctrl_pin_desc wm8850_pins[] = { +	PINCTRL_PIN(WMT_PIN_EXTGPIO0, "extgpio0"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO1, "extgpio1"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO2, "extgpio2"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO3, "extgpio3"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO4, "extgpio4"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO5, "extgpio5"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO6, "extgpio6"), +	PINCTRL_PIN(WMT_PIN_EXTGPIO7, "extgpio7"), +	PINCTRL_PIN(WMT_PIN_WAKEUP0, "wakeup0"), +	PINCTRL_PIN(WMT_PIN_WAKEUP1, "wakeup1"), +	PINCTRL_PIN(WMT_PIN_WAKEUP2, "wakeup2"), +	PINCTRL_PIN(WMT_PIN_WAKEUP3, "wakeup3"), +	PINCTRL_PIN(WMT_PIN_SUSGPIO0, "susgpio0"), +	PINCTRL_PIN(WMT_PIN_SUSGPIO1, "susgpio1"), +	PINCTRL_PIN(WMT_PIN_SD0CD, "sd0_cd"), +	PINCTRL_PIN(WMT_PIN_VDOUT0, "vdout0"), +	PINCTRL_PIN(WMT_PIN_VDOUT1, "vdout1"), +	PINCTRL_PIN(WMT_PIN_VDOUT2, "vdout2"), +	PINCTRL_PIN(WMT_PIN_VDOUT3, "vdout3"), +	PINCTRL_PIN(WMT_PIN_VDOUT4, "vdout4"), +	PINCTRL_PIN(WMT_PIN_VDOUT5, "vdout5"), +	PINCTRL_PIN(WMT_PIN_VDOUT6, "vdout6"), +	PINCTRL_PIN(WMT_PIN_VDOUT7, "vdout7"), +	PINCTRL_PIN(WMT_PIN_VDOUT8, "vdout8"), +	PINCTRL_PIN(WMT_PIN_VDOUT9, "vdout9"), +	PINCTRL_PIN(WMT_PIN_VDOUT10, "vdout10"), +	PINCTRL_PIN(WMT_PIN_VDOUT11, "vdout11"), +	PINCTRL_PIN(WMT_PIN_VDOUT12, "vdout12"), +	PINCTRL_PIN(WMT_PIN_VDOUT13, "vdout13"), +	PINCTRL_PIN(WMT_PIN_VDOUT14, "vdout14"), +	PINCTRL_PIN(WMT_PIN_VDOUT15, "vdout15"), +	PINCTRL_PIN(WMT_PIN_VDOUT16, "vdout16"), +	PINCTRL_PIN(WMT_PIN_VDOUT17, "vdout17"), +	PINCTRL_PIN(WMT_PIN_VDOUT18, "vdout18"), +	PINCTRL_PIN(WMT_PIN_VDOUT19, "vdout19"), +	PINCTRL_PIN(WMT_PIN_VDOUT20, "vdout20"), +	PINCTRL_PIN(WMT_PIN_VDOUT21, "vdout21"), +	PINCTRL_PIN(WMT_PIN_VDOUT22, "vdout22"), +	PINCTRL_PIN(WMT_PIN_VDOUT23, "vdout23"), +	PINCTRL_PIN(WMT_PIN_VDIN0, "vdin0"), +	PINCTRL_PIN(WMT_PIN_VDIN1, "vdin1"), +	PINCTRL_PIN(WMT_PIN_VDIN2, "vdin2"), +	PINCTRL_PIN(WMT_PIN_VDIN3, "vdin3"), +	PINCTRL_PIN(WMT_PIN_VDIN4, "vdin4"), +	PINCTRL_PIN(WMT_PIN_VDIN5, "vdin5"), +	PINCTRL_PIN(WMT_PIN_VDIN6, "vdin6"), +	PINCTRL_PIN(WMT_PIN_VDIN7, "vdin7"), +	PINCTRL_PIN(WMT_PIN_SPI0_MOSI, "spi0_mosi"), +	PINCTRL_PIN(WMT_PIN_SPI0_MISO, "spi0_miso"), +	PINCTRL_PIN(WMT_PIN_SPI0_SS, "spi0_ss"), +	PINCTRL_PIN(WMT_PIN_SPI0_CLK, "spi0_clk"), +	PINCTRL_PIN(WMT_PIN_SPI0_SSB, "spi0_ssb"), +	PINCTRL_PIN(WMT_PIN_SD0CLK, "sd0_clk"), +	PINCTRL_PIN(WMT_PIN_SD0CMD, "sd0_cmd"), +	PINCTRL_PIN(WMT_PIN_SD0WP, "sd0_wp"), +	PINCTRL_PIN(WMT_PIN_SD0DATA0, "sd0_data0"), +	PINCTRL_PIN(WMT_PIN_SD0DATA1, "sd0_data1"), +	PINCTRL_PIN(WMT_PIN_SD0DATA2, "sd0_data2"), +	PINCTRL_PIN(WMT_PIN_SD0DATA3, "sd0_data3"), +	PINCTRL_PIN(WMT_PIN_SD1DATA0, "sd1_data0"), +	PINCTRL_PIN(WMT_PIN_SD1DATA1, "sd1_data1"), +	PINCTRL_PIN(WMT_PIN_SD1DATA2, "sd1_data2"), +	PINCTRL_PIN(WMT_PIN_SD1DATA3, "sd1_data3"), +	PINCTRL_PIN(WMT_PIN_SD1DATA4, "sd1_data4"), +	PINCTRL_PIN(WMT_PIN_SD1DATA5, "sd1_data5"), +	PINCTRL_PIN(WMT_PIN_SD1DATA6, "sd1_data6"), +	PINCTRL_PIN(WMT_PIN_SD1DATA7, "sd1_data7"), +	PINCTRL_PIN(WMT_PIN_I2C0_SCL, "i2c0_scl"), +	PINCTRL_PIN(WMT_PIN_I2C0_SDA, "i2c0_sda"), +	PINCTRL_PIN(WMT_PIN_I2C1_SCL, "i2c1_scl"), +	PINCTRL_PIN(WMT_PIN_I2C1_SDA, "i2c1_sda"), +	PINCTRL_PIN(WMT_PIN_I2C2_SCL, "i2c2_scl"), +	PINCTRL_PIN(WMT_PIN_I2C2_SDA, "i2c2_sda"), +	PINCTRL_PIN(WMT_PIN_UART0_RTS, "uart0_rts"), +	PINCTRL_PIN(WMT_PIN_UART0_TXD, "uart0_txd"), +	PINCTRL_PIN(WMT_PIN_UART0_CTS, "uart0_cts"), +	PINCTRL_PIN(WMT_PIN_UART0_RXD, "uart0_rxd"), +	PINCTRL_PIN(WMT_PIN_UART1_RTS, "uart1_rts"), +	PINCTRL_PIN(WMT_PIN_UART1_TXD, "uart1_txd"), +	PINCTRL_PIN(WMT_PIN_UART1_CTS, "uart1_cts"), +	PINCTRL_PIN(WMT_PIN_UART1_RXD, "uart1_rxd"), +	PINCTRL_PIN(WMT_PIN_UART2_RTS, "uart2_rts"), +	PINCTRL_PIN(WMT_PIN_UART2_TXD, "uart2_txd"), +	PINCTRL_PIN(WMT_PIN_UART2_CTS, "uart2_cts"), +	PINCTRL_PIN(WMT_PIN_UART2_RXD, "uart2_rxd"), +	PINCTRL_PIN(WMT_PIN_SD2WP, "sd2_wp"), +	PINCTRL_PIN(WMT_PIN_SD2CMD, "sd2_cmd"), +	PINCTRL_PIN(WMT_PIN_SD2CLK, "sd2_clk"), +	PINCTRL_PIN(WMT_PIN_SD2PWR, "sd2_pwr"), +	PINCTRL_PIN(WMT_PIN_SD1CLK, "sd1_clk"), +	PINCTRL_PIN(WMT_PIN_SD1CMD, "sd1_cmd"), +	PINCTRL_PIN(WMT_PIN_SD1PWR, "sd1_pwr"), +	PINCTRL_PIN(WMT_PIN_SD1WP, "sd1_wp"), +	PINCTRL_PIN(WMT_PIN_SD1CD, "sd1_cd"), +	PINCTRL_PIN(WMT_PIN_PWMOUT1, "pwmout1"), +	PINCTRL_PIN(WMT_PIN_PWMOUT0, "pwmout0"), +}; + +/* Order of these names must match the above list */ +static const char * const wm8850_groups[] = { +	"extgpio0", +	"extgpio1", +	"extgpio2", +	"extgpio3", +	"extgpio4", +	"extgpio5", +	"extgpio6", +	"extgpio7", +	"wakeup0", +	"wakeup1", +	"wakeup2", +	"wakeup3", +	"susgpio0", +	"susgpio1", +	"sd0_cd", +	"vdout0", +	"vdout1", +	"vdout2", +	"vdout3", +	"vdout4", +	"vdout5", +	"vdout6", +	"vdout7", +	"vdout8", +	"vdout9", +	"vdout10", +	"vdout11", +	"vdout12", +	"vdout13", +	"vdout14", +	"vdout15", +	"vdout16", +	"vdout17", +	"vdout18", +	"vdout19", +	"vdout20", +	"vdout21", +	"vdout22", +	"vdout23", +	"vdin0", +	"vdin1", +	"vdin2", +	"vdin3", +	"vdin4", +	"vdin5", +	"vdin6", +	"vdin7", +	"spi0_mosi", +	"spi0_miso", +	"spi0_ss", +	"spi0_clk", +	"spi0_ssb", +	"sd0_clk", +	"sd0_cmd", +	"sd0_wp", +	"sd0_data0", +	"sd0_data1", +	"sd0_data2", +	"sd0_data3", +	"sd1_data0", +	"sd1_data1", +	"sd1_data2", +	"sd1_data3", +	"sd1_data4", +	"sd1_data5", +	"sd1_data6", +	"sd1_data7", +	"i2c0_scl", +	"i2c0_sda", +	"i2c1_scl", +	"i2c1_sda", +	"i2c2_scl", +	"i2c2_sda", +	"uart0_rts", +	"uart0_txd", +	"uart0_cts", +	"uart0_rxd", +	"uart1_rts", +	"uart1_txd", +	"uart1_cts", +	"uart1_rxd", +	"uart2_rts", +	"uart2_txd", +	"uart2_cts", +	"uart2_rxd", +	"sd2_wp", +	"sd2_cmd", +	"sd2_clk", +	"sd2_pwr", +	"sd1_clk", +	"sd1_cmd", +	"sd1_pwr", +	"sd1_wp", +	"sd1_cd", +	"pwmout1", +	"pwmout0", +}; + +static int wm8850_pinctrl_probe(struct platform_device *pdev) +{ +	struct wmt_pinctrl_data *data; + +	data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL); +	if (!data) { +		dev_err(&pdev->dev, "failed to allocate data\n"); +		return -ENOMEM; +	} + +	data->banks = wm8850_banks; +	data->nbanks = ARRAY_SIZE(wm8850_banks); +	data->pins = wm8850_pins; +	data->npins = ARRAY_SIZE(wm8850_pins); +	data->groups = wm8850_groups; +	data->ngroups = ARRAY_SIZE(wm8850_groups); + +	return wmt_pinctrl_probe(pdev, data); +} + +static int wm8850_pinctrl_remove(struct platform_device *pdev) +{ +	return wmt_pinctrl_remove(pdev); +} + +static struct of_device_id wmt_pinctrl_of_match[] = { +	{ .compatible = "wm,wm8850-pinctrl" }, +	{ /* sentinel */ }, +}; + +static struct platform_driver wmt_pinctrl_driver = { +	.probe	= wm8850_pinctrl_probe, +	.remove	= wm8850_pinctrl_remove, +	.driver = { +		.name	= "pinctrl-wm8850", +		.owner	= THIS_MODULE, +		.of_match_table	= wmt_pinctrl_of_match, +	}, +}; + +module_platform_driver(wmt_pinctrl_driver); + +MODULE_AUTHOR("Tony Prisk <linux@prisktech.co.nz>"); +MODULE_DESCRIPTION("Wondermedia WM8850 Pincontrol driver"); +MODULE_LICENSE("GPL v2"); +MODULE_DEVICE_TABLE(of, wmt_pinctrl_of_match); diff --git a/drivers/pinctrl/vt8500/pinctrl-wmt.c b/drivers/pinctrl/vt8500/pinctrl-wmt.c new file mode 100644 index 00000000000..14400a7974b --- /dev/null +++ b/drivers/pinctrl/vt8500/pinctrl-wmt.c @@ -0,0 +1,632 @@ +/* + * Pinctrl driver for the Wondermedia SoC's + * + * Copyright (c) 2013 Tony Prisk <linux@prisktech.co.nz> + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for + * more details. + */ + +#include <linux/err.h> +#include <linux/gpio.h> +#include <linux/interrupt.h> +#include <linux/io.h> +#include <linux/irq.h> +#include <linux/module.h> +#include <linux/of.h> +#include <linux/of_irq.h> +#include <linux/pinctrl/consumer.h> +#include <linux/pinctrl/machine.h> +#include <linux/pinctrl/pinconf.h> +#include <linux/pinctrl/pinconf-generic.h> +#include <linux/pinctrl/pinctrl.h> +#include <linux/pinctrl/pinmux.h> +#include <linux/platform_device.h> +#include <linux/slab.h> + +#include "pinctrl-wmt.h" + +static inline void wmt_setbits(struct wmt_pinctrl_data *data, u32 reg, +				 u32 mask) +{ +	u32 val; + +	val = readl_relaxed(data->base + reg); +	val |= mask; +	writel_relaxed(val, data->base + reg); +} + +static inline void wmt_clearbits(struct wmt_pinctrl_data *data, u32 reg, +				   u32 mask) +{ +	u32 val; + +	val = readl_relaxed(data->base + reg); +	val &= ~mask; +	writel_relaxed(val, data->base + reg); +} + +enum wmt_func_sel { +	WMT_FSEL_GPIO_IN = 0, +	WMT_FSEL_GPIO_OUT = 1, +	WMT_FSEL_ALT = 2, +	WMT_FSEL_COUNT = 3, +}; + +static const char * const wmt_functions[WMT_FSEL_COUNT] = { +	[WMT_FSEL_GPIO_IN] = "gpio_in", +	[WMT_FSEL_GPIO_OUT] = "gpio_out", +	[WMT_FSEL_ALT] = "alt", +}; + +static int wmt_pmx_get_functions_count(struct pinctrl_dev *pctldev) +{ +	return WMT_FSEL_COUNT; +} + +static const char *wmt_pmx_get_function_name(struct pinctrl_dev *pctldev, +					     unsigned selector) +{ +	return wmt_functions[selector]; +} + +static int wmt_pmx_get_function_groups(struct pinctrl_dev *pctldev, +				       unsigned selector, +				       const char * const **groups, +				       unsigned * const num_groups) +{ +	struct wmt_pinctrl_data *data = pinctrl_dev_get_drvdata(pctldev); + +	/* every pin does every function */ +	*groups = data->groups; +	*num_groups = data->ngroups; + +	return 0; +} + +static int wmt_set_pinmux(struct wmt_pinctrl_data *data, unsigned func, +			  unsigned pin) +{ +	u32 bank = WMT_BANK_FROM_PIN(pin); +	u32 bit = WMT_BIT_FROM_PIN(pin); +	u32 reg_en = data->banks[bank].reg_en; +	u32 reg_dir = data->banks[bank].reg_dir; + +	if (reg_dir == NO_REG) { +		dev_err(data->dev, "pin:%d no direction register defined\n", +			pin); +		return -EINVAL; +	} + +	/* +	 * If reg_en == NO_REG, we assume it is a dedicated GPIO and cannot be +	 * disabled (as on VT8500) and that no alternate function is available. +	 */ +	switch (func) { +	case WMT_FSEL_GPIO_IN: +		if (reg_en != NO_REG) +			wmt_setbits(data, reg_en, BIT(bit)); +		wmt_clearbits(data, reg_dir, BIT(bit)); +		break; +	case WMT_FSEL_GPIO_OUT: +		if (reg_en != NO_REG) +			wmt_setbits(data, reg_en, BIT(bit)); +		wmt_setbits(data, reg_dir, BIT(bit)); +		break; +	case WMT_FSEL_ALT: +		if (reg_en == NO_REG) { +			dev_err(data->dev, "pin:%d no alt function available\n", +				pin); +			return -EINVAL; +		} +		wmt_clearbits(data, reg_en, BIT(bit)); +	} + +	return 0; +} + +static int wmt_pmx_enable(struct pinctrl_dev *pctldev, +			  unsigned func_selector, +			  unsigned group_selector) +{ +	struct wmt_pinctrl_data *data = pinctrl_dev_get_drvdata(pctldev); +	u32 pinnum = data->pins[group_selector].number; + +	return wmt_set_pinmux(data, func_selector, pinnum); +} + +static void wmt_pmx_disable(struct pinctrl_dev *pctldev, +			    unsigned func_selector, +			    unsigned group_selector) +{ +	struct wmt_pinctrl_data *data = pinctrl_dev_get_drvdata(pctldev); +	u32 pinnum = data->pins[group_selector].number; + +	/* disable by setting GPIO_IN */ +	wmt_set_pinmux(data, WMT_FSEL_GPIO_IN, pinnum); +} + +static void wmt_pmx_gpio_disable_free(struct pinctrl_dev *pctldev, +				      struct pinctrl_gpio_range *range, +				      unsigned offset) +{ +	struct wmt_pinctrl_data *data = pinctrl_dev_get_drvdata(pctldev); + +	/* disable by setting GPIO_IN */ +	wmt_set_pinmux(data, WMT_FSEL_GPIO_IN, offset); +} + +static int wmt_pmx_gpio_set_direction(struct pinctrl_dev *pctldev, +				      struct pinctrl_gpio_range *range, +				      unsigned offset, +				      bool input) +{ +	struct wmt_pinctrl_data *data = pinctrl_dev_get_drvdata(pctldev); + +	wmt_set_pinmux(data, (input ? WMT_FSEL_GPIO_IN : WMT_FSEL_GPIO_OUT), +		       offset); + +	return 0; +} + +static struct pinmux_ops wmt_pinmux_ops = { +	.get_functions_count = wmt_pmx_get_functions_count, +	.get_function_name = wmt_pmx_get_function_name, +	.get_function_groups = wmt_pmx_get_function_groups, +	.enable = wmt_pmx_enable, +	.disable = wmt_pmx_disable, +	.gpio_disable_free = wmt_pmx_gpio_disable_free, +	.gpio_set_direction = wmt_pmx_gpio_set_direction, +}; + +static int wmt_get_groups_count(struct pinctrl_dev *pctldev) +{ +	struct wmt_pinctrl_data *data = pinctrl_dev_get_drvdata(pctldev); + +	return data->ngroups; +} + +static const char *wmt_get_group_name(struct pinctrl_dev *pctldev, +				      unsigned selector) +{ +	struct wmt_pinctrl_data *data = pinctrl_dev_get_drvdata(pctldev); + +	return data->groups[selector]; +} + +static int wmt_get_group_pins(struct pinctrl_dev *pctldev, +			      unsigned selector, +			      const unsigned **pins, +			      unsigned *num_pins) +{ +	struct wmt_pinctrl_data *data = pinctrl_dev_get_drvdata(pctldev); + +	*pins = &data->pins[selector].number; +	*num_pins = 1; + +	return 0; +} + +static int wmt_pctl_find_group_by_pin(struct wmt_pinctrl_data *data, u32 pin) +{ +	int i; + +	for (i = 0; i < data->npins; i++) { +		if (data->pins[i].number == pin) +			return i; +	} + +	return -EINVAL; +} + +static int wmt_pctl_dt_node_to_map_func(struct wmt_pinctrl_data *data, +					struct device_node *np, +					u32 pin, u32 fnum, +					struct pinctrl_map **maps) +{ +	int group; +	struct pinctrl_map *map = *maps; + +	if (fnum >= ARRAY_SIZE(wmt_functions)) { +		dev_err(data->dev, "invalid wm,function %d\n", fnum); +		return -EINVAL; +	} + +	group = wmt_pctl_find_group_by_pin(data, pin); +	if (group < 0) { +		dev_err(data->dev, "unable to match pin %d to group\n", pin); +		return group; +	} + +	map->type = PIN_MAP_TYPE_MUX_GROUP; +	map->data.mux.group = data->groups[group]; +	map->data.mux.function = wmt_functions[fnum]; +	(*maps)++; + +	return 0; +} + +static int wmt_pctl_dt_node_to_map_pull(struct wmt_pinctrl_data *data, +					struct device_node *np, +					u32 pin, u32 pull, +					struct pinctrl_map **maps) +{ +	int group; +	unsigned long *configs; +	struct pinctrl_map *map = *maps; + +	if (pull > 2) { +		dev_err(data->dev, "invalid wm,pull %d\n", pull); +		return -EINVAL; +	} + +	group = wmt_pctl_find_group_by_pin(data, pin); +	if (group < 0) { +		dev_err(data->dev, "unable to match pin %d to group\n", pin); +		return group; +	} + +	configs = kzalloc(sizeof(*configs), GFP_KERNEL); +	if (!configs) +		return -ENOMEM; + +	configs[0] = pull; + +	map->type = PIN_MAP_TYPE_CONFIGS_PIN; +	map->data.configs.group_or_pin = data->groups[group]; +	map->data.configs.configs = configs; +	map->data.configs.num_configs = 1; +	(*maps)++; + +	return 0; +} + +static void wmt_pctl_dt_free_map(struct pinctrl_dev *pctldev, +				 struct pinctrl_map *maps, +				 unsigned num_maps) +{ +	int i; + +	for (i = 0; i < num_maps; i++) +		if (maps[i].type == PIN_MAP_TYPE_CONFIGS_PIN) +			kfree(maps[i].data.configs.configs); + +	kfree(maps); +} + +static int wmt_pctl_dt_node_to_map(struct pinctrl_dev *pctldev, +				   struct device_node *np, +				   struct pinctrl_map **map, +				   unsigned *num_maps) +{ +	struct pinctrl_map *maps, *cur_map; +	struct property *pins, *funcs, *pulls; +	u32 pin, func, pull; +	int num_pins, num_funcs, num_pulls, maps_per_pin; +	int i, err; +	struct wmt_pinctrl_data *data = pinctrl_dev_get_drvdata(pctldev); + +	pins = of_find_property(np, "wm,pins", NULL); +	if (!pins) { +		dev_err(data->dev, "missing wmt,pins property\n"); +		return -EINVAL; +	} + +	funcs = of_find_property(np, "wm,function", NULL); +	pulls = of_find_property(np, "wm,pull", NULL); + +	if (!funcs && !pulls) { +		dev_err(data->dev, "neither wm,function nor wm,pull specified\n"); +		return -EINVAL; +	} + +	/* +	 * The following lines calculate how many values are defined for each +	 * of the properties. +	 */ +	num_pins = pins->length / sizeof(u32); +	num_funcs = funcs ? (funcs->length / sizeof(u32)) : 0; +	num_pulls = pulls ? (pulls->length / sizeof(u32)) : 0; + +	if (num_funcs > 1 && num_funcs != num_pins) { +		dev_err(data->dev, "wm,function must have 1 or %d entries\n", +			num_pins); +		return -EINVAL; +	} + +	if (num_pulls > 1 && num_pulls != num_pins) { +		dev_err(data->dev, "wm,pull must have 1 or %d entries\n", +			num_pins); +		return -EINVAL; +	} + +	maps_per_pin = 0; +	if (num_funcs) +		maps_per_pin++; +	if (num_pulls) +		maps_per_pin++; + +	cur_map = maps = kzalloc(num_pins * maps_per_pin * sizeof(*maps), +				 GFP_KERNEL); +	if (!maps) +		return -ENOMEM; + +	for (i = 0; i < num_pins; i++) { +		err = of_property_read_u32_index(np, "wm,pins", i, &pin); +		if (err) +			goto fail; + +		if (pin >= (data->nbanks * 32)) { +			dev_err(data->dev, "invalid wm,pins value\n"); +			err = -EINVAL; +			goto fail; +		} + +		if (num_funcs) { +			err = of_property_read_u32_index(np, "wm,function", +						(num_funcs > 1 ? i : 0), &func); +			if (err) +				goto fail; + +			err = wmt_pctl_dt_node_to_map_func(data, np, pin, func, +							   &cur_map); +			if (err) +				goto fail; +		} + +		if (num_pulls) { +			err = of_property_read_u32_index(np, "wm,pull", +						(num_pulls > 1 ? i : 0), &pull); +			if (err) +				goto fail; + +			err = wmt_pctl_dt_node_to_map_pull(data, np, pin, pull, +							   &cur_map); +			if (err) +				goto fail; +		} +	} +	*map = maps; +	*num_maps = num_pins * maps_per_pin; +	return 0; + +/* + * The fail path removes any maps that have been allocated. The fail path is + * only called from code after maps has been kzalloc'd. It is also safe to + * pass 'num_pins * maps_per_pin' as the map count even though we probably + * failed before all the mappings were read as all maps are allocated at once, + * and configs are only allocated for .type = PIN_MAP_TYPE_CONFIGS_PIN - there + * is no failpath where a config can be allocated without .type being set. + */ +fail: +	wmt_pctl_dt_free_map(pctldev, maps, num_pins * maps_per_pin); +	return err; +} + +static struct pinctrl_ops wmt_pctl_ops = { +	.get_groups_count = wmt_get_groups_count, +	.get_group_name	= wmt_get_group_name, +	.get_group_pins	= wmt_get_group_pins, +	.dt_node_to_map = wmt_pctl_dt_node_to_map, +	.dt_free_map = wmt_pctl_dt_free_map, +}; + +static int wmt_pinconf_get(struct pinctrl_dev *pctldev, unsigned pin, +			   unsigned long *config) +{ +	return -ENOTSUPP; +} + +static int wmt_pinconf_set(struct pinctrl_dev *pctldev, unsigned pin, +			   unsigned long config) +{ +	struct wmt_pinctrl_data *data = pinctrl_dev_get_drvdata(pctldev); +	enum pin_config_param param = pinconf_to_config_param(config); +	u16 arg = pinconf_to_config_argument(config); +	u32 bank = WMT_BANK_FROM_PIN(pin); +	u32 bit = WMT_BIT_FROM_PIN(pin); +	u32 reg_pull_en = data->banks[bank].reg_pull_en; +	u32 reg_pull_cfg = data->banks[bank].reg_pull_cfg; + +	if ((reg_pull_en == NO_REG) || (reg_pull_cfg == NO_REG)) { +		dev_err(data->dev, "bias functions not supported on pin %d\n", +			pin); +		return -EINVAL; +	} + +	if ((param == PIN_CONFIG_BIAS_PULL_DOWN) || +	    (param == PIN_CONFIG_BIAS_PULL_UP)) { +		if (arg == 0) +			param = PIN_CONFIG_BIAS_DISABLE; +	} + +	switch (param) { +	case PIN_CONFIG_BIAS_DISABLE: +		wmt_clearbits(data, reg_pull_en, BIT(bit)); +		break; +	case PIN_CONFIG_BIAS_PULL_DOWN: +		wmt_clearbits(data, reg_pull_cfg, BIT(bit)); +		wmt_setbits(data, reg_pull_en, BIT(bit)); +		break; +	case PIN_CONFIG_BIAS_PULL_UP: +		wmt_setbits(data, reg_pull_cfg, BIT(bit)); +		wmt_setbits(data, reg_pull_en, BIT(bit)); +		break; +	default: +		dev_err(data->dev, "unknown pinconf param\n"); +		return -EINVAL; +	} + +	return 0; +} + +static struct pinconf_ops wmt_pinconf_ops = { +	.pin_config_get = wmt_pinconf_get, +	.pin_config_set = wmt_pinconf_set, +}; + +static struct pinctrl_desc wmt_desc = { +	.owner = THIS_MODULE, +	.name = "pinctrl-wmt", +	.pctlops = &wmt_pctl_ops, +	.pmxops = &wmt_pinmux_ops, +	.confops = &wmt_pinconf_ops, +}; + +static int wmt_gpio_request(struct gpio_chip *chip, unsigned offset) +{ +	return pinctrl_request_gpio(chip->base + offset); +} + +static void wmt_gpio_free(struct gpio_chip *chip, unsigned offset) +{ +	pinctrl_free_gpio(chip->base + offset); +} + +static int wmt_gpio_get_direction(struct gpio_chip *chip, unsigned offset) +{ +	struct wmt_pinctrl_data *data = dev_get_drvdata(chip->dev); +	u32 bank = WMT_BANK_FROM_PIN(offset); +	u32 bit = WMT_BIT_FROM_PIN(offset); +	u32 reg_dir = data->banks[bank].reg_dir; +	u32 val; + +	val = readl_relaxed(data->base + reg_dir); +	if (val & BIT(bit)) +		return GPIOF_DIR_OUT; +	else +		return GPIOF_DIR_IN; +} + +static int wmt_gpio_direction_input(struct gpio_chip *chip, unsigned offset) +{ +	return pinctrl_gpio_direction_input(chip->base + offset); +} + +static int wmt_gpio_direction_output(struct gpio_chip *chip, unsigned offset, +				     int value) +{ +	return pinctrl_gpio_direction_output(chip->base + offset); +} + +static int wmt_gpio_get_value(struct gpio_chip *chip, unsigned offset) +{ +	struct wmt_pinctrl_data *data = dev_get_drvdata(chip->dev); +	u32 bank = WMT_BANK_FROM_PIN(offset); +	u32 bit = WMT_BIT_FROM_PIN(offset); +	u32 reg_data_in = data->banks[bank].reg_data_in; + +	if (reg_data_in == NO_REG) { +		dev_err(data->dev, "no data in register defined\n"); +		return -EINVAL; +	} + +	return !!(readl_relaxed(data->base + reg_data_in) & BIT(bit)); +} + +static void wmt_gpio_set_value(struct gpio_chip *chip, unsigned offset, +			       int val) +{ +	struct wmt_pinctrl_data *data = dev_get_drvdata(chip->dev); +	u32 bank = WMT_BANK_FROM_PIN(offset); +	u32 bit = WMT_BIT_FROM_PIN(offset); +	u32 reg_data_out = data->banks[bank].reg_data_out; + +	if (reg_data_out == NO_REG) { +		dev_err(data->dev, "no data out register defined\n"); +		return; +	} + +	if (val) +		wmt_setbits(data, reg_data_out, BIT(bit)); +	else +		wmt_clearbits(data, reg_data_out, BIT(bit)); +} + +static struct gpio_chip wmt_gpio_chip = { +	.label = "gpio-wmt", +	.owner = THIS_MODULE, +	.request = wmt_gpio_request, +	.free = wmt_gpio_free, +	.get_direction = wmt_gpio_get_direction, +	.direction_input = wmt_gpio_direction_input, +	.direction_output = wmt_gpio_direction_output, +	.get = wmt_gpio_get_value, +	.set = wmt_gpio_set_value, +	.can_sleep = 0, +}; + +int wmt_pinctrl_probe(struct platform_device *pdev, +		      struct wmt_pinctrl_data *data) +{ +	int err; +	struct resource *res; + +	res = platform_get_resource(pdev, IORESOURCE_MEM, 0); +	data->base = devm_request_and_ioremap(&pdev->dev, res); +	if (!data->base) { +		dev_err(&pdev->dev, "failed to map memory resource\n"); +		return -EBUSY; +	} + +	wmt_desc.pins = data->pins; +	wmt_desc.npins = data->npins; + +	data->gpio_chip = wmt_gpio_chip; +	data->gpio_chip.dev = &pdev->dev; +	data->gpio_chip.of_node = pdev->dev.of_node; +	data->gpio_chip.ngpio = data->nbanks * 32; + +	platform_set_drvdata(pdev, data); + +	data->dev = &pdev->dev; + +	data->pctl_dev = pinctrl_register(&wmt_desc, &pdev->dev, data); +	if (IS_ERR(data->pctl_dev)) { +		dev_err(&pdev->dev, "Failed to register pinctrl\n"); +		return -EINVAL; +	} + +	err = gpiochip_add(&data->gpio_chip); +	if (err) { +		dev_err(&pdev->dev, "could not add GPIO chip\n"); +		goto fail_gpio; +	} + +	err = gpiochip_add_pin_range(&data->gpio_chip, dev_name(data->dev), +				     0, 0, data->nbanks * 32); +	if (err) +		goto fail_range; + +	dev_info(&pdev->dev, "Pin controller initialized\n"); + +	return 0; + +fail_range: +	err = gpiochip_remove(&data->gpio_chip); +	if (err) +		dev_err(&pdev->dev, "failed to remove gpio chip\n"); +fail_gpio: +	pinctrl_unregister(data->pctl_dev); +	return err; +} + +int wmt_pinctrl_remove(struct platform_device *pdev) +{ +	struct wmt_pinctrl_data *data = platform_get_drvdata(pdev); +	int err; + +	err = gpiochip_remove(&data->gpio_chip); +	if (err) +		dev_err(&pdev->dev, "failed to remove gpio chip\n"); + +	pinctrl_unregister(data->pctl_dev); + +	return 0; +} diff --git a/drivers/pinctrl/vt8500/pinctrl-wmt.h b/drivers/pinctrl/vt8500/pinctrl-wmt.h new file mode 100644 index 00000000000..41f5f2deb5d --- /dev/null +++ b/drivers/pinctrl/vt8500/pinctrl-wmt.h @@ -0,0 +1,79 @@ +/* + * Pinctrl driver for the Wondermedia SoC's + * + * Copyright (c) 2013 Tony Prisk <linux@prisktech.co.nz> + * + * This program is free software; you can redistribute it and/or modify it + * under the terms and conditions of the GNU General Public License, + * version 2, as published by the Free Software Foundation. + * + * This program is distributed in the hope it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for + * more details. + */ + +#include <linux/gpio.h> + +/* VT8500 has no enable register in the extgpio bank. */ +#define NO_REG	0xFFFF + +#define WMT_PINCTRL_BANK(__en, __dir, __dout, __din, __pen, __pcfg)	\ +{									\ +	.reg_en		= __en,						\ +	.reg_dir	= __dir,					\ +	.reg_data_out	= __dout,					\ +	.reg_data_in	= __din,					\ +	.reg_pull_en	= __pen,					\ +	.reg_pull_cfg	= __pcfg,					\ +} + +/* Encode/decode the bank/bit pairs into a pin value */ +#define WMT_PIN(__bank, __offset)	((__bank << 5) | __offset) +#define WMT_BANK_FROM_PIN(__pin)	(__pin >> 5) +#define WMT_BIT_FROM_PIN(__pin)		(__pin & 0x1f) + +#define WMT_GROUP(__name, __data)		\ +{						\ +	.name = __name,				\ +	.pins = __data,				\ +	.npins = ARRAY_SIZE(__data),		\ +} + +struct wmt_pinctrl_bank_registers { +	u32	reg_en; +	u32	reg_dir; +	u32	reg_data_out; +	u32	reg_data_in; + +	u32	reg_pull_en; +	u32	reg_pull_cfg; +}; + +struct wmt_pinctrl_group { +	const char *name; +	const unsigned int *pins; +	const unsigned npins; +}; + +struct wmt_pinctrl_data { +	struct device *dev; +	struct pinctrl_dev *pctl_dev; + +	/* must be initialized before calling wmt_pinctrl_probe */ +	void __iomem *base; +	const struct wmt_pinctrl_bank_registers *banks; +	const struct pinctrl_pin_desc *pins; +	const char * const *groups; + +	u32 nbanks; +	u32 npins; +	u32 ngroups; + +	struct gpio_chip gpio_chip; +	struct pinctrl_gpio_range gpio_range; +}; + +int wmt_pinctrl_probe(struct platform_device *pdev, +		      struct wmt_pinctrl_data *data); +int wmt_pinctrl_remove(struct platform_device *pdev); diff --git a/drivers/rtc/rtc-at91rm9200.c b/drivers/rtc/rtc-at91rm9200.c index 434ebc3a99d..0a9f27e094e 100644 --- a/drivers/rtc/rtc-at91rm9200.c +++ b/drivers/rtc/rtc-at91rm9200.c @@ -44,6 +44,7 @@ static DECLARE_COMPLETION(at91_rtc_updated);  static unsigned int at91_alarm_year = AT91_RTC_EPOCH;  static void __iomem *at91_rtc_regs;  static int irq; +static u32 at91_rtc_imr;  /*   * Decode time/date into rtc_time structure @@ -108,9 +109,11 @@ static int at91_rtc_settime(struct device *dev, struct rtc_time *tm)  	cr = at91_rtc_read(AT91_RTC_CR);  	at91_rtc_write(AT91_RTC_CR, cr | AT91_RTC_UPDCAL | AT91_RTC_UPDTIM); +	at91_rtc_imr |= AT91_RTC_ACKUPD;  	at91_rtc_write(AT91_RTC_IER, AT91_RTC_ACKUPD);  	wait_for_completion(&at91_rtc_updated);	/* wait for ACKUPD interrupt */  	at91_rtc_write(AT91_RTC_IDR, AT91_RTC_ACKUPD); +	at91_rtc_imr &= ~AT91_RTC_ACKUPD;  	at91_rtc_write(AT91_RTC_TIMR,  			  bin2bcd(tm->tm_sec) << 0 @@ -142,7 +145,7 @@ static int at91_rtc_readalarm(struct device *dev, struct rtc_wkalrm *alrm)  	tm->tm_yday = rtc_year_days(tm->tm_mday, tm->tm_mon, tm->tm_year);  	tm->tm_year = at91_alarm_year - 1900; -	alrm->enabled = (at91_rtc_read(AT91_RTC_IMR) & AT91_RTC_ALARM) +	alrm->enabled = (at91_rtc_imr & AT91_RTC_ALARM)  			? 1 : 0;  	dev_dbg(dev, "%s(): %4d-%02d-%02d %02d:%02d:%02d\n", __func__, @@ -168,6 +171,7 @@ static int at91_rtc_setalarm(struct device *dev, struct rtc_wkalrm *alrm)  	tm.tm_sec = alrm->time.tm_sec;  	at91_rtc_write(AT91_RTC_IDR, AT91_RTC_ALARM); +	at91_rtc_imr &= ~AT91_RTC_ALARM;  	at91_rtc_write(AT91_RTC_TIMALR,  		  bin2bcd(tm.tm_sec) << 0  		| bin2bcd(tm.tm_min) << 8 @@ -180,6 +184,7 @@ static int at91_rtc_setalarm(struct device *dev, struct rtc_wkalrm *alrm)  	if (alrm->enabled) {  		at91_rtc_write(AT91_RTC_SCCR, AT91_RTC_ALARM); +		at91_rtc_imr |= AT91_RTC_ALARM;  		at91_rtc_write(AT91_RTC_IER, AT91_RTC_ALARM);  	} @@ -196,9 +201,12 @@ static int at91_rtc_alarm_irq_enable(struct device *dev, unsigned int enabled)  	if (enabled) {  		at91_rtc_write(AT91_RTC_SCCR, AT91_RTC_ALARM); +		at91_rtc_imr |= AT91_RTC_ALARM;  		at91_rtc_write(AT91_RTC_IER, AT91_RTC_ALARM); -	} else +	} else {  		at91_rtc_write(AT91_RTC_IDR, AT91_RTC_ALARM); +		at91_rtc_imr &= ~AT91_RTC_ALARM; +	}  	return 0;  } @@ -207,12 +215,10 @@ static int at91_rtc_alarm_irq_enable(struct device *dev, unsigned int enabled)   */  static int at91_rtc_proc(struct device *dev, struct seq_file *seq)  { -	unsigned long imr = at91_rtc_read(AT91_RTC_IMR); -  	seq_printf(seq, "update_IRQ\t: %s\n", -			(imr & AT91_RTC_ACKUPD) ? "yes" : "no"); +			(at91_rtc_imr & AT91_RTC_ACKUPD) ? "yes" : "no");  	seq_printf(seq, "periodic_IRQ\t: %s\n", -			(imr & AT91_RTC_SECEV) ? "yes" : "no"); +			(at91_rtc_imr & AT91_RTC_SECEV) ? "yes" : "no");  	return 0;  } @@ -227,7 +233,7 @@ static irqreturn_t at91_rtc_interrupt(int irq, void *dev_id)  	unsigned int rtsr;  	unsigned long events = 0; -	rtsr = at91_rtc_read(AT91_RTC_SR) & at91_rtc_read(AT91_RTC_IMR); +	rtsr = at91_rtc_read(AT91_RTC_SR) & at91_rtc_imr;  	if (rtsr) {		/* this interrupt is shared!  Is it ours? */  		if (rtsr & AT91_RTC_ALARM)  			events |= (RTC_AF | RTC_IRQF); @@ -291,6 +297,7 @@ static int __init at91_rtc_probe(struct platform_device *pdev)  	at91_rtc_write(AT91_RTC_IDR, AT91_RTC_ACKUPD | AT91_RTC_ALARM |  					AT91_RTC_SECEV | AT91_RTC_TIMEV |  					AT91_RTC_CALEV); +	at91_rtc_imr = 0;  	ret = request_irq(irq, at91_rtc_interrupt,  				IRQF_SHARED, @@ -329,6 +336,7 @@ static int __exit at91_rtc_remove(struct platform_device *pdev)  	at91_rtc_write(AT91_RTC_IDR, AT91_RTC_ACKUPD | AT91_RTC_ALARM |  					AT91_RTC_SECEV | AT91_RTC_TIMEV |  					AT91_RTC_CALEV); +	at91_rtc_imr = 0;  	free_irq(irq, pdev);  	rtc_device_unregister(rtc); @@ -341,31 +349,35 @@ static int __exit at91_rtc_remove(struct platform_device *pdev)  /* AT91RM9200 RTC Power management control */ -static u32 at91_rtc_imr; +static u32 at91_rtc_bkpimr; +  static int at91_rtc_suspend(struct device *dev)  {  	/* this IRQ is shared with DBGU and other hardware which isn't  	 * necessarily doing PM like we are...  	 */ -	at91_rtc_imr = at91_rtc_read(AT91_RTC_IMR) -			& (AT91_RTC_ALARM|AT91_RTC_SECEV); -	if (at91_rtc_imr) { -		if (device_may_wakeup(dev)) +	at91_rtc_bkpimr = at91_rtc_imr & (AT91_RTC_ALARM|AT91_RTC_SECEV); +	if (at91_rtc_bkpimr) { +		if (device_may_wakeup(dev)) {  			enable_irq_wake(irq); -		else -			at91_rtc_write(AT91_RTC_IDR, at91_rtc_imr); -	} +		} else { +			at91_rtc_write(AT91_RTC_IDR, at91_rtc_bkpimr); +			at91_rtc_imr &= ~at91_rtc_bkpimr; +		} +}  	return 0;  }  static int at91_rtc_resume(struct device *dev)  { -	if (at91_rtc_imr) { -		if (device_may_wakeup(dev)) +	if (at91_rtc_bkpimr) { +		if (device_may_wakeup(dev)) {  			disable_irq_wake(irq); -		else -			at91_rtc_write(AT91_RTC_IER, at91_rtc_imr); +		} else { +			at91_rtc_imr |= at91_rtc_bkpimr; +			at91_rtc_write(AT91_RTC_IER, at91_rtc_bkpimr); +		}  	}  	return 0;  } diff --git a/drivers/rtc/rtc-at91rm9200.h b/drivers/rtc/rtc-at91rm9200.h index da1945e5f71..5f940b6844c 100644 --- a/drivers/rtc/rtc-at91rm9200.h +++ b/drivers/rtc/rtc-at91rm9200.h @@ -64,7 +64,6 @@  #define	AT91_RTC_SCCR		0x1c			/* Status Clear Command Register */  #define	AT91_RTC_IER		0x20			/* Interrupt Enable Register */  #define	AT91_RTC_IDR		0x24			/* Interrupt Disable Register */ -#define	AT91_RTC_IMR		0x28			/* Interrupt Mask Register */  #define	AT91_RTC_VER		0x2c			/* Valid Entry Register */  #define		AT91_RTC_NVTIM		(1 <<  0)		/* Non valid Time */ diff --git a/drivers/rtc/rtc-da9052.c b/drivers/rtc/rtc-da9052.c index 0dde688ca09..969abbad7fe 100644 --- a/drivers/rtc/rtc-da9052.c +++ b/drivers/rtc/rtc-da9052.c @@ -239,11 +239,9 @@ static int da9052_rtc_probe(struct platform_device *pdev)  	rtc->da9052 = dev_get_drvdata(pdev->dev.parent);  	platform_set_drvdata(pdev, rtc); -	rtc->irq = platform_get_irq_byname(pdev, "ALM"); -	ret = devm_request_threaded_irq(&pdev->dev, rtc->irq, NULL, -				da9052_rtc_irq, -				IRQF_TRIGGER_LOW | IRQF_ONESHOT, -				"ALM", rtc); +	rtc->irq =  DA9052_IRQ_ALARM; +	ret = da9052_request_irq(rtc->da9052, rtc->irq, "ALM", +				da9052_rtc_irq, rtc);  	if (ret != 0) {  		rtc_err(rtc->da9052, "irq registration failed: %d\n", ret);  		return ret; diff --git a/drivers/rtc/rtc-mv.c b/drivers/rtc/rtc-mv.c index 57233c88599..8f87fec27ce 100644 --- a/drivers/rtc/rtc-mv.c +++ b/drivers/rtc/rtc-mv.c @@ -14,6 +14,7 @@  #include <linux/platform_device.h>  #include <linux/of.h>  #include <linux/delay.h> +#include <linux/clk.h>  #include <linux/gfp.h>  #include <linux/module.h> @@ -41,6 +42,7 @@ struct rtc_plat_data {  	struct rtc_device *rtc;  	void __iomem *ioaddr;  	int		irq; +	struct clk	*clk;  };  static int mv_rtc_set_time(struct device *dev, struct rtc_time *tm) @@ -221,6 +223,7 @@ static int mv_rtc_probe(struct platform_device *pdev)  	struct rtc_plat_data *pdata;  	resource_size_t size;  	u32 rtc_time; +	int ret = 0;  	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);  	if (!res) @@ -239,11 +242,17 @@ static int mv_rtc_probe(struct platform_device *pdev)  	if (!pdata->ioaddr)  		return -ENOMEM; +	pdata->clk = devm_clk_get(&pdev->dev, NULL); +	/* Not all SoCs require a clock.*/ +	if (!IS_ERR(pdata->clk)) +		clk_prepare_enable(pdata->clk); +  	/* make sure the 24 hours mode is enabled */  	rtc_time = readl(pdata->ioaddr + RTC_TIME_REG_OFFS);  	if (rtc_time & RTC_HOURS_12H_MODE) {  		dev_err(&pdev->dev, "24 Hours mode not supported.\n"); -		return -EINVAL; +		ret = -EINVAL; +		goto out;  	}  	/* make sure it is actually functional */ @@ -252,7 +261,8 @@ static int mv_rtc_probe(struct platform_device *pdev)  		rtc_time = readl(pdata->ioaddr + RTC_TIME_REG_OFFS);  		if (rtc_time == 0x01000000) {  			dev_err(&pdev->dev, "internal RTC not ticking\n"); -			return -ENODEV; +			ret = -ENODEV; +			goto out;  		}  	} @@ -268,8 +278,10 @@ static int mv_rtc_probe(struct platform_device *pdev)  	} else  		pdata->rtc = rtc_device_register(pdev->name, &pdev->dev,  						 &mv_rtc_ops, THIS_MODULE); -	if (IS_ERR(pdata->rtc)) -		return PTR_ERR(pdata->rtc); +	if (IS_ERR(pdata->rtc)) { +		ret = PTR_ERR(pdata->rtc); +		goto out; +	}  	if (pdata->irq >= 0) {  		writel(0, pdata->ioaddr + RTC_ALARM_INTERRUPT_MASK_REG_OFFS); @@ -282,6 +294,11 @@ static int mv_rtc_probe(struct platform_device *pdev)  	}  	return 0; +out: +	if (!IS_ERR(pdata->clk)) +		clk_disable_unprepare(pdata->clk); + +	return ret;  }  static int __exit mv_rtc_remove(struct platform_device *pdev) @@ -292,6 +309,9 @@ static int __exit mv_rtc_remove(struct platform_device *pdev)  		device_init_wakeup(&pdev->dev, 0);  	rtc_device_unregister(pdata->rtc); +	if (!IS_ERR(pdata->clk)) +		clk_disable_unprepare(pdata->clk); +  	return 0;  } diff --git a/drivers/s390/block/scm_blk.c b/drivers/s390/block/scm_blk.c index 9978ad4433c..5ac9c935c15 100644 --- a/drivers/s390/block/scm_blk.c +++ b/drivers/s390/block/scm_blk.c @@ -135,6 +135,11 @@ static const struct block_device_operations scm_blk_devops = {  	.release = scm_release,  }; +static bool scm_permit_request(struct scm_blk_dev *bdev, struct request *req) +{ +	return rq_data_dir(req) != WRITE || bdev->state != SCM_WR_PROHIBIT; +} +  static void scm_request_prepare(struct scm_request *scmrq)  {  	struct scm_blk_dev *bdev = scmrq->bdev; @@ -195,14 +200,18 @@ void scm_request_requeue(struct scm_request *scmrq)  	scm_release_cluster(scmrq);  	blk_requeue_request(bdev->rq, scmrq->request); +	atomic_dec(&bdev->queued_reqs);  	scm_request_done(scmrq);  	scm_ensure_queue_restart(bdev);  }  void scm_request_finish(struct scm_request *scmrq)  { +	struct scm_blk_dev *bdev = scmrq->bdev; +  	scm_release_cluster(scmrq);  	blk_end_request_all(scmrq->request, scmrq->error); +	atomic_dec(&bdev->queued_reqs);  	scm_request_done(scmrq);  } @@ -218,6 +227,10 @@ static void scm_blk_request(struct request_queue *rq)  		if (req->cmd_type != REQ_TYPE_FS)  			continue; +		if (!scm_permit_request(bdev, req)) { +			scm_ensure_queue_restart(bdev); +			return; +		}  		scmrq = scm_request_fetch();  		if (!scmrq) {  			SCM_LOG(5, "no request"); @@ -231,11 +244,13 @@ static void scm_blk_request(struct request_queue *rq)  			return;  		}  		if (scm_need_cluster_request(scmrq)) { +			atomic_inc(&bdev->queued_reqs);  			blk_start_request(req);  			scm_initiate_cluster_request(scmrq);  			return;  		}  		scm_request_prepare(scmrq); +		atomic_inc(&bdev->queued_reqs);  		blk_start_request(req);  		ret = scm_start_aob(scmrq->aob); @@ -244,7 +259,6 @@ static void scm_blk_request(struct request_queue *rq)  			scm_request_requeue(scmrq);  			return;  		} -		atomic_inc(&bdev->queued_reqs);  	}  } @@ -280,6 +294,38 @@ void scm_blk_irq(struct scm_device *scmdev, void *data, int error)  	tasklet_hi_schedule(&bdev->tasklet);  } +static void scm_blk_handle_error(struct scm_request *scmrq) +{ +	struct scm_blk_dev *bdev = scmrq->bdev; +	unsigned long flags; + +	if (scmrq->error != -EIO) +		goto restart; + +	/* For -EIO the response block is valid. */ +	switch (scmrq->aob->response.eqc) { +	case EQC_WR_PROHIBIT: +		spin_lock_irqsave(&bdev->lock, flags); +		if (bdev->state != SCM_WR_PROHIBIT) +			pr_info("%lu: Write access to the SCM increment is suspended\n", +				(unsigned long) bdev->scmdev->address); +		bdev->state = SCM_WR_PROHIBIT; +		spin_unlock_irqrestore(&bdev->lock, flags); +		goto requeue; +	default: +		break; +	} + +restart: +	if (!scm_start_aob(scmrq->aob)) +		return; + +requeue: +	spin_lock_irqsave(&bdev->rq_lock, flags); +	scm_request_requeue(scmrq); +	spin_unlock_irqrestore(&bdev->rq_lock, flags); +} +  static void scm_blk_tasklet(struct scm_blk_dev *bdev)  {  	struct scm_request *scmrq; @@ -293,11 +339,8 @@ static void scm_blk_tasklet(struct scm_blk_dev *bdev)  		spin_unlock_irqrestore(&bdev->lock, flags);  		if (scmrq->error && scmrq->retries-- > 0) { -			if (scm_start_aob(scmrq->aob)) { -				spin_lock_irqsave(&bdev->rq_lock, flags); -				scm_request_requeue(scmrq); -				spin_unlock_irqrestore(&bdev->rq_lock, flags); -			} +			scm_blk_handle_error(scmrq); +  			/* Request restarted or requeued, handle next. */  			spin_lock_irqsave(&bdev->lock, flags);  			continue; @@ -310,7 +353,6 @@ static void scm_blk_tasklet(struct scm_blk_dev *bdev)  		}  		scm_request_finish(scmrq); -		atomic_dec(&bdev->queued_reqs);  		spin_lock_irqsave(&bdev->lock, flags);  	}  	spin_unlock_irqrestore(&bdev->lock, flags); @@ -332,6 +374,7 @@ int scm_blk_dev_setup(struct scm_blk_dev *bdev, struct scm_device *scmdev)  	}  	bdev->scmdev = scmdev; +	bdev->state = SCM_OPER;  	spin_lock_init(&bdev->rq_lock);  	spin_lock_init(&bdev->lock);  	INIT_LIST_HEAD(&bdev->finished_requests); @@ -396,6 +439,18 @@ void scm_blk_dev_cleanup(struct scm_blk_dev *bdev)  	put_disk(bdev->gendisk);  } +void scm_blk_set_available(struct scm_blk_dev *bdev) +{ +	unsigned long flags; + +	spin_lock_irqsave(&bdev->lock, flags); +	if (bdev->state == SCM_WR_PROHIBIT) +		pr_info("%lu: Write access to the SCM increment is restored\n", +			(unsigned long) bdev->scmdev->address); +	bdev->state = SCM_OPER; +	spin_unlock_irqrestore(&bdev->lock, flags); +} +  static int __init scm_blk_init(void)  {  	int ret = -EINVAL; diff --git a/drivers/s390/block/scm_blk.h b/drivers/s390/block/scm_blk.h index 3c1ccf49464..8b387b32fd6 100644 --- a/drivers/s390/block/scm_blk.h +++ b/drivers/s390/block/scm_blk.h @@ -21,6 +21,7 @@ struct scm_blk_dev {  	spinlock_t rq_lock;	/* guard the request queue */  	spinlock_t lock;	/* guard the rest of the blockdev */  	atomic_t queued_reqs; +	enum {SCM_OPER, SCM_WR_PROHIBIT} state;  	struct list_head finished_requests;  #ifdef CONFIG_SCM_BLOCK_CLUSTER_WRITE  	struct list_head cluster_list; @@ -48,6 +49,7 @@ struct scm_request {  int scm_blk_dev_setup(struct scm_blk_dev *, struct scm_device *);  void scm_blk_dev_cleanup(struct scm_blk_dev *); +void scm_blk_set_available(struct scm_blk_dev *);  void scm_blk_irq(struct scm_device *, void *, int);  void scm_request_finish(struct scm_request *); diff --git a/drivers/s390/block/scm_drv.c b/drivers/s390/block/scm_drv.c index 9fa0a908607..5f6180d6ff0 100644 --- a/drivers/s390/block/scm_drv.c +++ b/drivers/s390/block/scm_drv.c @@ -13,12 +13,23 @@  #include <asm/eadm.h>  #include "scm_blk.h" -static void notify(struct scm_device *scmdev) +static void scm_notify(struct scm_device *scmdev, enum scm_event event)  { -	pr_info("%lu: The capabilities of the SCM increment changed\n", -		(unsigned long) scmdev->address); -	SCM_LOG(2, "State changed"); -	SCM_LOG_STATE(2, scmdev); +	struct scm_blk_dev *bdev = dev_get_drvdata(&scmdev->dev); + +	switch (event) { +	case SCM_CHANGE: +		pr_info("%lu: The capabilities of the SCM increment changed\n", +			(unsigned long) scmdev->address); +		SCM_LOG(2, "State changed"); +		SCM_LOG_STATE(2, scmdev); +		break; +	case SCM_AVAIL: +		SCM_LOG(2, "Increment available"); +		SCM_LOG_STATE(2, scmdev); +		scm_blk_set_available(bdev); +		break; +	}  }  static int scm_probe(struct scm_device *scmdev) @@ -64,7 +75,7 @@ static struct scm_driver scm_drv = {  		.name = "scm_block",  		.owner = THIS_MODULE,  	}, -	.notify = notify, +	.notify = scm_notify,  	.probe = scm_probe,  	.remove = scm_remove,  	.handler = scm_blk_irq, diff --git a/drivers/s390/char/sclp_cmd.c b/drivers/s390/char/sclp_cmd.c index 30a2255389e..cd798386b62 100644 --- a/drivers/s390/char/sclp_cmd.c +++ b/drivers/s390/char/sclp_cmd.c @@ -627,6 +627,8 @@ static int __init sclp_detect_standby_memory(void)  	struct read_storage_sccb *sccb;  	int i, id, assigned, rc; +	if (OLDMEM_BASE) /* No standby memory in kdump mode */ +		return 0;  	if (!early_read_info_sccb_valid)  		return 0;  	if ((sclp_facilities & 0xe00000000000ULL) != 0xe00000000000ULL) diff --git a/drivers/s390/cio/chsc.c b/drivers/s390/cio/chsc.c index 31ceef1beb8..e16c553f655 100644 --- a/drivers/s390/cio/chsc.c +++ b/drivers/s390/cio/chsc.c @@ -433,6 +433,20 @@ static void chsc_process_sei_scm_change(struct chsc_sei_nt0_area *sei_area)  			      " failed (rc=%d).\n", ret);  } +static void chsc_process_sei_scm_avail(struct chsc_sei_nt0_area *sei_area) +{ +	int ret; + +	CIO_CRW_EVENT(4, "chsc: scm available information\n"); +	if (sei_area->rs != 7) +		return; + +	ret = scm_process_availability_information(); +	if (ret) +		CIO_CRW_EVENT(0, "chsc: process availability information" +			      " failed (rc=%d).\n", ret); +} +  static void chsc_process_sei_nt2(struct chsc_sei_nt2_area *sei_area)  {  	switch (sei_area->cc) { @@ -468,6 +482,9 @@ static void chsc_process_sei_nt0(struct chsc_sei_nt0_area *sei_area)  	case 12: /* scm change notification */  		chsc_process_sei_scm_change(sei_area);  		break; +	case 14: /* scm available notification */ +		chsc_process_sei_scm_avail(sei_area); +		break;  	default: /* other stuff */  		CIO_CRW_EVENT(2, "chsc: sei nt0 unhandled cc=%d\n",  			      sei_area->cc); diff --git a/drivers/s390/cio/chsc.h b/drivers/s390/cio/chsc.h index 227e05f674b..349d5fc4719 100644 --- a/drivers/s390/cio/chsc.h +++ b/drivers/s390/cio/chsc.h @@ -156,8 +156,10 @@ int chsc_scm_info(struct chsc_scm_info *scm_area, u64 token);  #ifdef CONFIG_SCM_BUS  int scm_update_information(void); +int scm_process_availability_information(void);  #else /* CONFIG_SCM_BUS */  static inline int scm_update_information(void) { return 0; } +static inline int scm_process_availability_information(void) { return 0; }  #endif /* CONFIG_SCM_BUS */ diff --git a/drivers/s390/cio/scm.c b/drivers/s390/cio/scm.c index bcf20f3aa51..46ec25632e8 100644 --- a/drivers/s390/cio/scm.c +++ b/drivers/s390/cio/scm.c @@ -211,7 +211,7 @@ static void scmdev_update(struct scm_device *scmdev, struct sale *sale)  		goto out;  	scmdrv = to_scm_drv(scmdev->dev.driver);  	if (changed && scmdrv->notify) -		scmdrv->notify(scmdev); +		scmdrv->notify(scmdev, SCM_CHANGE);  out:  	device_unlock(&scmdev->dev);  	if (changed) @@ -297,6 +297,22 @@ int scm_update_information(void)  	return ret;  } +static int scm_dev_avail(struct device *dev, void *unused) +{ +	struct scm_driver *scmdrv = to_scm_drv(dev->driver); +	struct scm_device *scmdev = to_scm_dev(dev); + +	if (dev->driver && scmdrv->notify) +		scmdrv->notify(scmdev, SCM_AVAIL); + +	return 0; +} + +int scm_process_availability_information(void) +{ +	return bus_for_each_dev(&scm_bus_type, NULL, NULL, scm_dev_avail); +} +  static int __init scm_init(void)  {  	int ret; diff --git a/drivers/s390/net/qeth_core.h b/drivers/s390/net/qeth_core.h index d87961d4c0d..8c0622399fc 100644 --- a/drivers/s390/net/qeth_core.h +++ b/drivers/s390/net/qeth_core.h @@ -916,6 +916,7 @@ int qeth_send_control_data(struct qeth_card *, int, struct qeth_cmd_buffer *,  	void *reply_param);  int qeth_get_priority_queue(struct qeth_card *, struct sk_buff *, int, int);  int qeth_get_elements_no(struct qeth_card *, void *, struct sk_buff *, int); +int qeth_get_elements_for_frags(struct sk_buff *);  int qeth_do_send_packet_fast(struct qeth_card *, struct qeth_qdio_out_q *,  			struct sk_buff *, struct qeth_hdr *, int, int, int);  int qeth_do_send_packet(struct qeth_card *, struct qeth_qdio_out_q *, diff --git a/drivers/s390/net/qeth_core_main.c b/drivers/s390/net/qeth_core_main.c index 0d8cdff8181..0d73a999983 100644 --- a/drivers/s390/net/qeth_core_main.c +++ b/drivers/s390/net/qeth_core_main.c @@ -3679,6 +3679,25 @@ int qeth_get_priority_queue(struct qeth_card *card, struct sk_buff *skb,  }  EXPORT_SYMBOL_GPL(qeth_get_priority_queue); +int qeth_get_elements_for_frags(struct sk_buff *skb) +{ +	int cnt, length, e, elements = 0; +	struct skb_frag_struct *frag; +	char *data; + +	for (cnt = 0; cnt < skb_shinfo(skb)->nr_frags; cnt++) { +		frag = &skb_shinfo(skb)->frags[cnt]; +		data = (char *)page_to_phys(skb_frag_page(frag)) + +			frag->page_offset; +		length = frag->size; +		e = PFN_UP((unsigned long)data + length - 1) - +			PFN_DOWN((unsigned long)data); +		elements += e; +	} +	return elements; +} +EXPORT_SYMBOL_GPL(qeth_get_elements_for_frags); +  int qeth_get_elements_no(struct qeth_card *card, void *hdr,  		     struct sk_buff *skb, int elems)  { @@ -3686,7 +3705,8 @@ int qeth_get_elements_no(struct qeth_card *card, void *hdr,  	int elements_needed = PFN_UP((unsigned long)skb->data + dlen - 1) -  		PFN_DOWN((unsigned long)skb->data); -	elements_needed += skb_shinfo(skb)->nr_frags; +	elements_needed += qeth_get_elements_for_frags(skb); +  	if ((elements_needed + elems) > QETH_MAX_BUFFER_ELEMENTS(card)) {  		QETH_DBF_MESSAGE(2, "Invalid size of IP packet "  			"(Number=%d / Length=%d). Discarded.\n", @@ -3771,12 +3791,23 @@ static inline void __qeth_fill_buffer(struct sk_buff *skb,  	for (cnt = 0; cnt < skb_shinfo(skb)->nr_frags; cnt++) {  		frag = &skb_shinfo(skb)->frags[cnt]; -		buffer->element[element].addr = (char *) -			page_to_phys(skb_frag_page(frag)) -			+ frag->page_offset; -		buffer->element[element].length = frag->size; -		buffer->element[element].eflags = SBAL_EFLAGS_MIDDLE_FRAG; -		element++; +		data = (char *)page_to_phys(skb_frag_page(frag)) + +			frag->page_offset; +		length = frag->size; +		while (length > 0) { +			length_here = PAGE_SIZE - +				((unsigned long) data % PAGE_SIZE); +			if (length < length_here) +				length_here = length; + +			buffer->element[element].addr = data; +			buffer->element[element].length = length_here; +			buffer->element[element].eflags = +				SBAL_EFLAGS_MIDDLE_FRAG; +			length -= length_here; +			data += length_here; +			element++; +		}  	}  	if (buffer->element[element - 1].eflags) diff --git a/drivers/s390/net/qeth_l3_main.c b/drivers/s390/net/qeth_l3_main.c index 091ca0efa1c..8710337dab3 100644 --- a/drivers/s390/net/qeth_l3_main.c +++ b/drivers/s390/net/qeth_l3_main.c @@ -623,7 +623,7 @@ static int qeth_l3_send_setrouting(struct qeth_card *card,  	return rc;  } -static void qeth_l3_correct_routing_type(struct qeth_card *card, +static int qeth_l3_correct_routing_type(struct qeth_card *card,  		enum qeth_routing_types *type, enum qeth_prot_versions prot)  {  	if (card->info.type == QETH_CARD_TYPE_IQD) { @@ -632,7 +632,7 @@ static void qeth_l3_correct_routing_type(struct qeth_card *card,  		case PRIMARY_CONNECTOR:  		case SECONDARY_CONNECTOR:  		case MULTICAST_ROUTER: -			return; +			return 0;  		default:  			goto out_inval;  		} @@ -641,17 +641,18 @@ static void qeth_l3_correct_routing_type(struct qeth_card *card,  		case NO_ROUTER:  		case PRIMARY_ROUTER:  		case SECONDARY_ROUTER: -			return; +			return 0;  		case MULTICAST_ROUTER:  			if (qeth_is_ipafunc_supported(card, prot,  						      IPA_OSA_MC_ROUTER)) -				return; +				return 0;  		default:  			goto out_inval;  		}  	}  out_inval:  	*type = NO_ROUTER; +	return -EINVAL;  }  int qeth_l3_setrouting_v4(struct qeth_card *card) @@ -660,8 +661,10 @@ int qeth_l3_setrouting_v4(struct qeth_card *card)  	QETH_CARD_TEXT(card, 3, "setrtg4"); -	qeth_l3_correct_routing_type(card, &card->options.route4.type, +	rc = qeth_l3_correct_routing_type(card, &card->options.route4.type,  				  QETH_PROT_IPV4); +	if (rc) +		return rc;  	rc = qeth_l3_send_setrouting(card, card->options.route4.type,  				  QETH_PROT_IPV4); @@ -683,8 +686,10 @@ int qeth_l3_setrouting_v6(struct qeth_card *card)  	if (!qeth_is_supported(card, IPA_IPV6))  		return 0; -	qeth_l3_correct_routing_type(card, &card->options.route6.type, +	rc = qeth_l3_correct_routing_type(card, &card->options.route6.type,  				  QETH_PROT_IPV6); +	if (rc) +		return rc;  	rc = qeth_l3_send_setrouting(card, card->options.route6.type,  				  QETH_PROT_IPV6); @@ -2898,7 +2903,9 @@ static inline int qeth_l3_tso_elements(struct sk_buff *skb)  		tcp_hdr(skb)->doff * 4;  	int tcpd_len = skb->len - (tcpd - (unsigned long)skb->data);  	int elements = PFN_UP(tcpd + tcpd_len - 1) - PFN_DOWN(tcpd); -	elements += skb_shinfo(skb)->nr_frags; + +	elements += qeth_get_elements_for_frags(skb); +  	return elements;  } @@ -3348,7 +3355,6 @@ static int __qeth_l3_set_online(struct ccwgroup_device *gdev, int recovery_mode)  		rc = -ENODEV;  		goto out_remove;  	} -	qeth_trace_features(card);  	if (!card->dev && qeth_l3_setup_netdev(card)) {  		rc = -ENODEV; @@ -3425,6 +3431,7 @@ contin:  		qeth_l3_set_multicast_list(card->dev);  		rtnl_unlock();  	} +	qeth_trace_features(card);  	/* let user_space know that device is online */  	kobject_uevent(&gdev->dev.kobj, KOBJ_CHANGE);  	mutex_unlock(&card->conf_mutex); diff --git a/drivers/s390/net/qeth_l3_sys.c b/drivers/s390/net/qeth_l3_sys.c index ebc37948626..e70af2406ff 100644 --- a/drivers/s390/net/qeth_l3_sys.c +++ b/drivers/s390/net/qeth_l3_sys.c @@ -87,6 +87,8 @@ static ssize_t qeth_l3_dev_route_store(struct qeth_card *card,  			rc = qeth_l3_setrouting_v6(card);  	}  out: +	if (rc) +		route->type = old_route_type;  	mutex_unlock(&card->conf_mutex);  	return rc ? rc : count;  } diff --git a/drivers/staging/comedi/drivers/dt9812.c b/drivers/staging/comedi/drivers/dt9812.c index 192cf088f83..57b45190479 100644 --- a/drivers/staging/comedi/drivers/dt9812.c +++ b/drivers/staging/comedi/drivers/dt9812.c @@ -947,12 +947,13 @@ static int dt9812_di_rinsn(struct comedi_device *dev,  			   unsigned int *data)  {  	struct comedi_dt9812 *devpriv = dev->private; +	unsigned int channel = CR_CHAN(insn->chanspec);  	int n;  	u8 bits = 0;  	dt9812_digital_in(devpriv->slot, &bits);  	for (n = 0; n < insn->n; n++) -		data[n] = ((1 << insn->chanspec) & bits) != 0; +		data[n] = ((1 << channel) & bits) != 0;  	return n;  } @@ -961,12 +962,13 @@ static int dt9812_do_winsn(struct comedi_device *dev,  			   unsigned int *data)  {  	struct comedi_dt9812 *devpriv = dev->private; +	unsigned int channel = CR_CHAN(insn->chanspec);  	int n;  	u8 bits = 0;  	dt9812_digital_out_shadow(devpriv->slot, &bits);  	for (n = 0; n < insn->n; n++) { -		u8 mask = 1 << insn->chanspec; +		u8 mask = 1 << channel;  		bits &= ~mask;  		if (data[n]) @@ -981,13 +983,13 @@ static int dt9812_ai_rinsn(struct comedi_device *dev,  			   unsigned int *data)  {  	struct comedi_dt9812 *devpriv = dev->private; +	unsigned int channel = CR_CHAN(insn->chanspec);  	int n;  	for (n = 0; n < insn->n; n++) {  		u16 value = 0; -		dt9812_analog_in(devpriv->slot, insn->chanspec, &value, -				 DT9812_GAIN_1); +		dt9812_analog_in(devpriv->slot, channel, &value, DT9812_GAIN_1);  		data[n] = value;  	}  	return n; @@ -998,12 +1000,13 @@ static int dt9812_ao_rinsn(struct comedi_device *dev,  			   unsigned int *data)  {  	struct comedi_dt9812 *devpriv = dev->private; +	unsigned int channel = CR_CHAN(insn->chanspec);  	int n;  	u16 value;  	for (n = 0; n < insn->n; n++) {  		value = 0; -		dt9812_analog_out_shadow(devpriv->slot, insn->chanspec, &value); +		dt9812_analog_out_shadow(devpriv->slot, channel, &value);  		data[n] = value;  	}  	return n; @@ -1014,10 +1017,11 @@ static int dt9812_ao_winsn(struct comedi_device *dev,  			   unsigned int *data)  {  	struct comedi_dt9812 *devpriv = dev->private; +	unsigned int channel = CR_CHAN(insn->chanspec);  	int n;  	for (n = 0; n < insn->n; n++) -		dt9812_analog_out(devpriv->slot, insn->chanspec, data[n]); +		dt9812_analog_out(devpriv->slot, channel, data[n]);  	return n;  } diff --git a/drivers/staging/comedi/drivers/usbdux.c b/drivers/staging/comedi/drivers/usbdux.c index 1a0062a0445..6aac1f60bc4 100644 --- a/drivers/staging/comedi/drivers/usbdux.c +++ b/drivers/staging/comedi/drivers/usbdux.c @@ -730,10 +730,14 @@ static void usbduxsub_ao_IsocIrq(struct urb *urb)  static int usbduxsub_start(struct usbduxsub *usbduxsub)  {  	int errcode = 0; -	uint8_t local_transfer_buffer[16]; +	uint8_t *local_transfer_buffer; + +	local_transfer_buffer = kmalloc(1, GFP_KERNEL); +	if (!local_transfer_buffer) +		return -ENOMEM;  	/* 7f92 to zero */ -	local_transfer_buffer[0] = 0; +	*local_transfer_buffer = 0;  	errcode = usb_control_msg(usbduxsub->usbdev,  				  /* create a pipe for a control transfer */  				  usb_sndctrlpipe(usbduxsub->usbdev, 0), @@ -751,22 +755,25 @@ static int usbduxsub_start(struct usbduxsub *usbduxsub)  				  1,  				  /* Timeout */  				  BULK_TIMEOUT); -	if (errcode < 0) { +	if (errcode < 0)  		dev_err(&usbduxsub->interface->dev,  			"comedi_: control msg failed (start)\n"); -		return errcode; -	} -	return 0; + +	kfree(local_transfer_buffer); +	return errcode;  }  static int usbduxsub_stop(struct usbduxsub *usbduxsub)  {  	int errcode = 0; +	uint8_t *local_transfer_buffer; -	uint8_t local_transfer_buffer[16]; +	local_transfer_buffer = kmalloc(1, GFP_KERNEL); +	if (!local_transfer_buffer) +		return -ENOMEM;  	/* 7f92 to one */ -	local_transfer_buffer[0] = 1; +	*local_transfer_buffer = 1;  	errcode = usb_control_msg(usbduxsub->usbdev,  				  usb_sndctrlpipe(usbduxsub->usbdev, 0),  				  /* bRequest, "Firmware" */ @@ -781,12 +788,12 @@ static int usbduxsub_stop(struct usbduxsub *usbduxsub)  				  1,  				  /* Timeout */  				  BULK_TIMEOUT); -	if (errcode < 0) { +	if (errcode < 0)  		dev_err(&usbduxsub->interface->dev,  			"comedi_: control msg failed (stop)\n"); -		return errcode; -	} -	return 0; + +	kfree(local_transfer_buffer); +	return errcode;  }  static int usbduxsub_upload(struct usbduxsub *usbduxsub, diff --git a/drivers/staging/comedi/drivers/usbduxfast.c b/drivers/staging/comedi/drivers/usbduxfast.c index 4bf5dd094dc..1ba0e3df492 100644 --- a/drivers/staging/comedi/drivers/usbduxfast.c +++ b/drivers/staging/comedi/drivers/usbduxfast.c @@ -436,10 +436,14 @@ static void usbduxfastsub_ai_Irq(struct urb *urb)  static int usbduxfastsub_start(struct usbduxfastsub_s *udfs)  {  	int ret; -	unsigned char local_transfer_buffer[16]; +	unsigned char *local_transfer_buffer; + +	local_transfer_buffer = kmalloc(1, GFP_KERNEL); +	if (!local_transfer_buffer) +		return -ENOMEM;  	/* 7f92 to zero */ -	local_transfer_buffer[0] = 0; +	*local_transfer_buffer = 0;  	/* bRequest, "Firmware" */  	ret = usb_control_msg(udfs->usbdev, usb_sndctrlpipe(udfs->usbdev, 0),  			      USBDUXFASTSUB_FIRMWARE, @@ -450,22 +454,25 @@ static int usbduxfastsub_start(struct usbduxfastsub_s *udfs)  			      local_transfer_buffer,  			      1,      /* Length */  			      EZTIMEOUT);    /* Timeout */ -	if (ret < 0) { +	if (ret < 0)  		dev_err(&udfs->interface->dev,  			"control msg failed (start)\n"); -		return ret; -	} -	return 0; +	kfree(local_transfer_buffer); +	return ret;  }  static int usbduxfastsub_stop(struct usbduxfastsub_s *udfs)  {  	int ret; -	unsigned char local_transfer_buffer[16]; +	unsigned char *local_transfer_buffer; + +	local_transfer_buffer = kmalloc(1, GFP_KERNEL); +	if (!local_transfer_buffer) +		return -ENOMEM;  	/* 7f92 to one */ -	local_transfer_buffer[0] = 1; +	*local_transfer_buffer = 1;  	/* bRequest, "Firmware" */  	ret = usb_control_msg(udfs->usbdev, usb_sndctrlpipe(udfs->usbdev, 0),  			      USBDUXFASTSUB_FIRMWARE, @@ -474,13 +481,12 @@ static int usbduxfastsub_stop(struct usbduxfastsub_s *udfs)  			      0x0000,	/* Index */  			      local_transfer_buffer, 1,	/* Length */  			      EZTIMEOUT);	/* Timeout */ -	if (ret < 0) { +	if (ret < 0)  		dev_err(&udfs->interface->dev,  			"control msg failed (stop)\n"); -		return ret; -	} -	return 0; +	kfree(local_transfer_buffer); +	return ret;  }  static int usbduxfastsub_upload(struct usbduxfastsub_s *udfs, diff --git a/drivers/staging/comedi/drivers/usbduxsigma.c b/drivers/staging/comedi/drivers/usbduxsigma.c index d066351a71b..a728c8fc32a 100644 --- a/drivers/staging/comedi/drivers/usbduxsigma.c +++ b/drivers/staging/comedi/drivers/usbduxsigma.c @@ -681,7 +681,11 @@ static void usbduxsub_ao_IsocIrq(struct urb *urb)  static int usbduxsub_start(struct usbduxsub *usbduxsub)  {  	int errcode = 0; -	uint8_t local_transfer_buffer[16]; +	uint8_t *local_transfer_buffer; + +	local_transfer_buffer = kmalloc(16, GFP_KERNEL); +	if (!local_transfer_buffer) +		return -ENOMEM;  	/* 7f92 to zero */  	local_transfer_buffer[0] = 0; @@ -702,19 +706,22 @@ static int usbduxsub_start(struct usbduxsub *usbduxsub)  				  1,  				  /* Timeout */  				  BULK_TIMEOUT); -	if (errcode < 0) { +	if (errcode < 0)  		dev_err(&usbduxsub->interface->dev,  			"comedi_: control msg failed (start)\n"); -		return errcode; -	} -	return 0; + +	kfree(local_transfer_buffer); +	return errcode;  }  static int usbduxsub_stop(struct usbduxsub *usbduxsub)  {  	int errcode = 0; +	uint8_t *local_transfer_buffer; -	uint8_t local_transfer_buffer[16]; +	local_transfer_buffer = kmalloc(16, GFP_KERNEL); +	if (!local_transfer_buffer) +		return -ENOMEM;  	/* 7f92 to one */  	local_transfer_buffer[0] = 1; @@ -732,12 +739,12 @@ static int usbduxsub_stop(struct usbduxsub *usbduxsub)  				  1,  				  /* Timeout */  				  BULK_TIMEOUT); -	if (errcode < 0) { +	if (errcode < 0)  		dev_err(&usbduxsub->interface->dev,  			"comedi_: control msg failed (stop)\n"); -		return errcode; -	} -	return 0; + +	kfree(local_transfer_buffer); +	return errcode;  }  static int usbduxsub_upload(struct usbduxsub *usbduxsub, diff --git a/drivers/staging/imx-drm/ipuv3-crtc.c b/drivers/staging/imx-drm/ipuv3-crtc.c index 4b3a019409b..b028b0d1317 100644 --- a/drivers/staging/imx-drm/ipuv3-crtc.c +++ b/drivers/staging/imx-drm/ipuv3-crtc.c @@ -483,17 +483,6 @@ static int ipu_get_resources(struct ipu_crtc *ipu_crtc,  		goto err_out;  	} -	ipu_crtc->irq = ipu_idmac_channel_irq(ipu, ipu_crtc->ipu_ch, -			IPU_IRQ_EOF); -	ret = devm_request_irq(ipu_crtc->dev, ipu_crtc->irq, ipu_irq_handler, 0, -			"imx_drm", ipu_crtc); -	if (ret < 0) { -		dev_err(ipu_crtc->dev, "irq request failed with %d.\n", ret); -		goto err_out; -	} - -	disable_irq(ipu_crtc->irq); -  	return 0;  err_out:  	ipu_put_resources(ipu_crtc); @@ -504,6 +493,7 @@ err_out:  static int ipu_crtc_init(struct ipu_crtc *ipu_crtc,  		struct ipu_client_platformdata *pdata)  { +	struct ipu_soc *ipu = dev_get_drvdata(ipu_crtc->dev->parent);  	int ret;  	ret = ipu_get_resources(ipu_crtc, pdata); @@ -522,6 +512,17 @@ static int ipu_crtc_init(struct ipu_crtc *ipu_crtc,  		goto err_put_resources;  	} +	ipu_crtc->irq = ipu_idmac_channel_irq(ipu, ipu_crtc->ipu_ch, +			IPU_IRQ_EOF); +	ret = devm_request_irq(ipu_crtc->dev, ipu_crtc->irq, ipu_irq_handler, 0, +			"imx_drm", ipu_crtc); +	if (ret < 0) { +		dev_err(ipu_crtc->dev, "irq request failed with %d.\n", ret); +		goto err_put_resources; +	} + +	disable_irq(ipu_crtc->irq); +  	return 0;  err_put_resources: diff --git a/drivers/staging/tidspbridge/rmgr/drv.c b/drivers/staging/tidspbridge/rmgr/drv.c index db1da28cecb..be26917a689 100644 --- a/drivers/staging/tidspbridge/rmgr/drv.c +++ b/drivers/staging/tidspbridge/rmgr/drv.c @@ -76,37 +76,28 @@ int drv_insert_node_res_element(void *hnode, void *node_resource,  	struct node_res_object **node_res_obj =  	    (struct node_res_object **)node_resource;  	struct process_context *ctxt = (struct process_context *)process_ctxt; -	int status = 0;  	int retval;  	*node_res_obj = kzalloc(sizeof(struct node_res_object), GFP_KERNEL); -	if (!*node_res_obj) { -		status = -ENOMEM; -		goto func_end; -	} +	if (!*node_res_obj) +		return -ENOMEM;  	(*node_res_obj)->node = hnode; -	retval = idr_get_new(ctxt->node_id, *node_res_obj, -						&(*node_res_obj)->id); -	if (retval == -EAGAIN) { -		if (!idr_pre_get(ctxt->node_id, GFP_KERNEL)) { -			pr_err("%s: OUT OF MEMORY\n", __func__); -			status = -ENOMEM; -			goto func_end; -		} - -		retval = idr_get_new(ctxt->node_id, *node_res_obj, -						&(*node_res_obj)->id); +	retval = idr_alloc(ctxt->node_id, *node_res_obj, 0, 0, GFP_KERNEL); +	if (retval >= 0) { +		(*node_res_obj)->id = retval; +		return 0;  	} -	if (retval) { + +	kfree(*node_res_obj); + +	if (retval == -ENOSPC) {  		pr_err("%s: FAILED, IDR is FULL\n", __func__); -		status = -EFAULT; +		return -EFAULT; +	} else { +		pr_err("%s: OUT OF MEMORY\n", __func__); +		return -ENOMEM;  	} -func_end: -	if (status) -		kfree(*node_res_obj); - -	return status;  }  /* Release all Node resources and its context @@ -201,35 +192,26 @@ int drv_proc_insert_strm_res_element(void *stream_obj,  	struct strm_res_object **pstrm_res =  	    (struct strm_res_object **)strm_res;  	struct process_context *ctxt = (struct process_context *)process_ctxt; -	int status = 0;  	int retval;  	*pstrm_res = kzalloc(sizeof(struct strm_res_object), GFP_KERNEL); -	if (*pstrm_res == NULL) { -		status = -EFAULT; -		goto func_end; -	} +	if (*pstrm_res == NULL) +		return -EFAULT;  	(*pstrm_res)->stream = stream_obj; -	retval = idr_get_new(ctxt->stream_id, *pstrm_res, -						&(*pstrm_res)->id); -	if (retval == -EAGAIN) { -		if (!idr_pre_get(ctxt->stream_id, GFP_KERNEL)) { -			pr_err("%s: OUT OF MEMORY\n", __func__); -			status = -ENOMEM; -			goto func_end; -		} - -		retval = idr_get_new(ctxt->stream_id, *pstrm_res, -						&(*pstrm_res)->id); +	retval = idr_alloc(ctxt->stream_id, *pstrm_res, 0, 0, GFP_KERNEL); +	if (retval >= 0) { +		(*pstrm_res)->id = retval; +		return 0;  	} -	if (retval) { + +	if (retval == -ENOSPC) {  		pr_err("%s: FAILED, IDR is FULL\n", __func__); -		status = -EPERM; +		return -EPERM; +	} else { +		pr_err("%s: OUT OF MEMORY\n", __func__); +		return -ENOMEM;  	} - -func_end: -	return status;  }  static int drv_proc_free_strm_res(int id, void *p, void *process_ctxt) diff --git a/drivers/staging/vt6656/card.c b/drivers/staging/vt6656/card.c index 22918a106d7..d2479b76645 100644 --- a/drivers/staging/vt6656/card.c +++ b/drivers/staging/vt6656/card.c @@ -790,7 +790,7 @@ u64 CARDqGetNextTBTT(u64 qwTSF, WORD wBeaconInterval)  	if ((~uLowNextTBTT) < uLowRemain)  		qwTSF = ((qwTSF >> 32) + 1) << 32; -	qwTSF = (qwTSF & 0xffffffff00000000UL) | +	qwTSF = (qwTSF & 0xffffffff00000000ULL) |  		(u64)(uLowNextTBTT + uLowRemain);      return (qwTSF); diff --git a/drivers/staging/vt6656/main_usb.c b/drivers/staging/vt6656/main_usb.c index d5f53e1a74a..a5063a6f64d 100644 --- a/drivers/staging/vt6656/main_usb.c +++ b/drivers/staging/vt6656/main_usb.c @@ -669,8 +669,6 @@ static int vt6656_suspend(struct usb_interface *intf, pm_message_t message)  	if (device->flags & DEVICE_FLAGS_OPENED)  		device_close(device->dev); -	usb_put_dev(interface_to_usbdev(intf)); -  	return 0;  } @@ -681,8 +679,6 @@ static int vt6656_resume(struct usb_interface *intf)  	if (!device || !device->dev)  		return -ENODEV; -	usb_get_dev(interface_to_usbdev(intf)); -  	if (!(device->flags & DEVICE_FLAGS_OPENED))  		device_open(device->dev); diff --git a/drivers/staging/zcache/ramster/tcp.c b/drivers/staging/zcache/ramster/tcp.c index aa2a1a763aa..f6e1e5209d8 100644 --- a/drivers/staging/zcache/ramster/tcp.c +++ b/drivers/staging/zcache/ramster/tcp.c @@ -300,27 +300,22 @@ static u8 r2net_num_from_nn(struct r2net_node *nn)  static int r2net_prep_nsw(struct r2net_node *nn, struct r2net_status_wait *nsw)  { -	int ret = 0; +	int ret; -	do { -		if (!idr_pre_get(&nn->nn_status_idr, GFP_ATOMIC)) { -			ret = -EAGAIN; -			break; -		} -		spin_lock(&nn->nn_lock); -		ret = idr_get_new(&nn->nn_status_idr, nsw, &nsw->ns_id); -		if (ret == 0) -			list_add_tail(&nsw->ns_node_item, -				      &nn->nn_status_list); -		spin_unlock(&nn->nn_lock); -	} while (ret == -EAGAIN); +	spin_lock(&nn->nn_lock); +	ret = idr_alloc(&nn->nn_status_idr, nsw, 0, 0, GFP_ATOMIC); +	if (ret >= 0) { +		nsw->ns_id = ret; +		list_add_tail(&nsw->ns_node_item, &nn->nn_status_list); +	} +	spin_unlock(&nn->nn_lock); -	if (ret == 0)  { +	if (ret >= 0) {  		init_waitqueue_head(&nsw->ns_wq);  		nsw->ns_sys_status = R2NET_ERR_NONE;  		nsw->ns_status = 0; +		return 0;  	} -  	return ret;  } diff --git a/drivers/target/iscsi/iscsi_target_auth.c b/drivers/target/iscsi/iscsi_target_auth.c index db0cf7c8add..a0fc7b9eea6 100644 --- a/drivers/target/iscsi/iscsi_target_auth.c +++ b/drivers/target/iscsi/iscsi_target_auth.c @@ -166,6 +166,7 @@ static int chap_server_compute_md5(  {  	char *endptr;  	unsigned long id; +	unsigned char id_as_uchar;  	unsigned char digest[MD5_SIGNATURE_SIZE];  	unsigned char type, response[MD5_SIGNATURE_SIZE * 2 + 2];  	unsigned char identifier[10], *challenge = NULL; @@ -355,7 +356,9 @@ static int chap_server_compute_md5(  		goto out;  	} -	sg_init_one(&sg, &id, 1); +	/* To handle both endiannesses */ +	id_as_uchar = id; +	sg_init_one(&sg, &id_as_uchar, 1);  	ret = crypto_hash_update(&desc, &sg, 1);  	if (ret < 0) {  		pr_err("crypto_hash_update() failed for id\n"); diff --git a/drivers/target/target_core_file.h b/drivers/target/target_core_file.h index bc02b018ae4..37ffc5bd239 100644 --- a/drivers/target/target_core_file.h +++ b/drivers/target/target_core_file.h @@ -7,7 +7,7 @@  #define FD_DEVICE_QUEUE_DEPTH	32  #define FD_MAX_DEVICE_QUEUE_DEPTH 128  #define FD_BLOCKSIZE		512 -#define FD_MAX_SECTORS		1024 +#define FD_MAX_SECTORS		2048  #define RRF_EMULATE_CDB		0x01  #define RRF_GOT_LBA		0x02 diff --git a/drivers/target/target_core_pscsi.c b/drivers/target/target_core_pscsi.c index 82e78d72fdb..e992b27aa09 100644 --- a/drivers/target/target_core_pscsi.c +++ b/drivers/target/target_core_pscsi.c @@ -883,7 +883,14 @@ pscsi_map_sg(struct se_cmd *cmd, struct scatterlist *sgl, u32 sgl_nents,  		pr_debug("PSCSI: i: %d page: %p len: %d off: %d\n", i,  			page, len, off); -		while (len > 0 && data_len > 0) { +		/* +		 * We only have one page of data in each sg element, +		 * we can not cross a page boundary. +		 */ +		if (off + len > PAGE_SIZE) +			goto fail; + +		if (len > 0 && data_len > 0) {  			bytes = min_t(unsigned int, len, PAGE_SIZE - off);  			bytes = min(bytes, data_len); @@ -940,9 +947,7 @@ pscsi_map_sg(struct se_cmd *cmd, struct scatterlist *sgl, u32 sgl_nents,  				bio = NULL;  			} -			len -= bytes;  			data_len -= bytes; -			off = 0;  		}  	} diff --git a/drivers/target/target_core_sbc.c b/drivers/target/target_core_sbc.c index 290230de2c5..60d4b5185f3 100644 --- a/drivers/target/target_core_sbc.c +++ b/drivers/target/target_core_sbc.c @@ -464,8 +464,11 @@ sbc_parse_cdb(struct se_cmd *cmd, struct sbc_ops *ops)  		break;  	case SYNCHRONIZE_CACHE:  	case SYNCHRONIZE_CACHE_16: -		if (!ops->execute_sync_cache) -			return TCM_UNSUPPORTED_SCSI_OPCODE; +		if (!ops->execute_sync_cache) { +			size = 0; +			cmd->execute_cmd = sbc_emulate_noop; +			break; +		}  		/*  		 * Extract LBA and range to be flushed for emulated SYNCHRONIZE_CACHE diff --git a/drivers/target/target_core_tpg.c b/drivers/target/target_core_tpg.c index 9169d6a5d7e..aac9d2727e3 100644 --- a/drivers/target/target_core_tpg.c +++ b/drivers/target/target_core_tpg.c @@ -711,7 +711,8 @@ int core_tpg_register(  	if (se_tpg->se_tpg_type == TRANSPORT_TPG_TYPE_NORMAL) {  		if (core_tpg_setup_virtual_lun0(se_tpg) < 0) { -			kfree(se_tpg); +			array_free(se_tpg->tpg_lun_list, +				   TRANSPORT_MAX_LUNS_PER_TPG);  			return -ENOMEM;  		}  	} diff --git a/drivers/thermal/dove_thermal.c b/drivers/thermal/dove_thermal.c index 7b0bfa0e7a9..3078c403b42 100644 --- a/drivers/thermal/dove_thermal.c +++ b/drivers/thermal/dove_thermal.c @@ -143,22 +143,18 @@ static int dove_thermal_probe(struct platform_device *pdev)  	if (!priv)  		return -ENOMEM; -	priv->sensor = devm_request_and_ioremap(&pdev->dev, res); -	if (!priv->sensor) { -		dev_err(&pdev->dev, "Failed to request_ioremap memory\n"); -		return -EADDRNOTAVAIL; -	} +	priv->sensor = devm_ioremap_resource(&pdev->dev, res); +	if (IS_ERR(priv->sensor)) +		return PTR_ERR(priv->sensor);  	res = platform_get_resource(pdev, IORESOURCE_MEM, 1);  	if (!res) {  		dev_err(&pdev->dev, "Failed to get platform resource\n");  		return -ENODEV;  	} -	priv->control = devm_request_and_ioremap(&pdev->dev, res); -	if (!priv->control) { -		dev_err(&pdev->dev, "Failed to request_ioremap memory\n"); -		return -EADDRNOTAVAIL; -	} +	priv->control = devm_ioremap_resource(&pdev->dev, res); +	if (IS_ERR(priv->control)) +		return PTR_ERR(priv->control);  	ret = dove_init_sensor(priv);  	if (ret) { diff --git a/drivers/thermal/exynos_thermal.c b/drivers/thermal/exynos_thermal.c index e04ebd8671a..46568c078de 100644 --- a/drivers/thermal/exynos_thermal.c +++ b/drivers/thermal/exynos_thermal.c @@ -476,7 +476,7 @@ static int exynos_register_thermal(struct thermal_sensor_conf *sensor_conf)  	if (IS_ERR(th_zone->therm_dev)) {  		pr_err("Failed to register thermal zone device\n"); -		ret = -EINVAL; +		ret = PTR_ERR(th_zone->therm_dev);  		goto err_unregister;  	}  	th_zone->mode = THERMAL_DEVICE_ENABLED; diff --git a/drivers/thermal/kirkwood_thermal.c b/drivers/thermal/kirkwood_thermal.c index 65cb4f09e8f..e5500edb528 100644 --- a/drivers/thermal/kirkwood_thermal.c +++ b/drivers/thermal/kirkwood_thermal.c @@ -85,11 +85,9 @@ static int kirkwood_thermal_probe(struct platform_device *pdev)  	if (!priv)  		return -ENOMEM; -	priv->sensor = devm_request_and_ioremap(&pdev->dev, res); -	if (!priv->sensor) { -		dev_err(&pdev->dev, "Failed to request_ioremap memory\n"); -		return -EADDRNOTAVAIL; -	} +	priv->sensor = devm_ioremap_resource(&pdev->dev, res); +	if (IS_ERR(priv->sensor)) +		return PTR_ERR(priv->sensor);  	thermal = thermal_zone_device_register("kirkwood_thermal", 0, 0,  					       priv, &ops, NULL, 0, 0); diff --git a/drivers/thermal/rcar_thermal.c b/drivers/thermal/rcar_thermal.c index 28f09199401..2cc5b6115e3 100644 --- a/drivers/thermal/rcar_thermal.c +++ b/drivers/thermal/rcar_thermal.c @@ -145,6 +145,7 @@ static int rcar_thermal_update_temp(struct rcar_thermal_priv *priv)  	struct device *dev = rcar_priv_to_dev(priv);  	int i;  	int ctemp, old, new; +	int ret = -EINVAL;  	mutex_lock(&priv->lock); @@ -174,7 +175,7 @@ static int rcar_thermal_update_temp(struct rcar_thermal_priv *priv)  	if (!ctemp) {  		dev_err(dev, "thermal sensor was broken\n"); -		return -EINVAL; +		goto err_out_unlock;  	}  	/* @@ -192,10 +193,10 @@ static int rcar_thermal_update_temp(struct rcar_thermal_priv *priv)  	dev_dbg(dev, "thermal%d  %d -> %d\n", priv->id, priv->ctemp, ctemp);  	priv->ctemp = ctemp; - +	ret = 0; +err_out_unlock:  	mutex_unlock(&priv->lock); - -	return 0; +	return ret;  }  static int rcar_thermal_get_temp(struct thermal_zone_device *zone, @@ -363,6 +364,7 @@ static int rcar_thermal_probe(struct platform_device *pdev)  	struct resource *res, *irq;  	int mres = 0;  	int i; +	int ret = -ENODEV;  	int idle = IDLE_INTERVAL;  	common = devm_kzalloc(dev, sizeof(*common), GFP_KERNEL); @@ -399,11 +401,9 @@ static int rcar_thermal_probe(struct platform_device *pdev)  		/*  		 * rcar_has_irq_support() will be enabled  		 */ -		common->base = devm_request_and_ioremap(dev, res); -		if (!common->base) { -			dev_err(dev, "Unable to ioremap thermal register\n"); -			return -ENOMEM; -		} +		common->base = devm_ioremap_resource(dev, res); +		if (IS_ERR(common->base)) +			return PTR_ERR(common->base);  		/* enable temperature comparation */  		rcar_thermal_common_write(common, ENR, 0x00030303); @@ -422,11 +422,9 @@ static int rcar_thermal_probe(struct platform_device *pdev)  			return -ENOMEM;  		} -		priv->base = devm_request_and_ioremap(dev, res); -		if (!priv->base) { -			dev_err(dev, "Unable to ioremap priv register\n"); -			return -ENOMEM; -		} +		priv->base = devm_ioremap_resource(dev, res); +		if (IS_ERR(priv->base)) +			return PTR_ERR(priv->base);  		priv->common = common;  		priv->id = i; @@ -441,6 +439,7 @@ static int rcar_thermal_probe(struct platform_device *pdev)  						idle);  		if (IS_ERR(priv->zone)) {  			dev_err(dev, "can't register thermal zone\n"); +			ret = PTR_ERR(priv->zone);  			goto error_unregister;  		} @@ -460,7 +459,7 @@ error_unregister:  	rcar_thermal_for_each_priv(priv, common)  		thermal_zone_device_unregister(priv->zone); -	return -ENODEV; +	return ret;  }  static int rcar_thermal_remove(struct platform_device *pdev) diff --git a/drivers/tty/serial/8250/8250.c b/drivers/tty/serial/8250/8250.c index 0efc815a496..cf6a5383748 100644 --- a/drivers/tty/serial/8250/8250.c +++ b/drivers/tty/serial/8250/8250.c @@ -301,7 +301,28 @@ static const struct serial8250_config uart_config[] = {  	},  	[PORT_8250_CIR] = {  		.name		= "CIR port" -	} +	}, +	[PORT_ALTR_16550_F32] = { +		.name		= "Altera 16550 FIFO32", +		.fifo_size	= 32, +		.tx_loadsz	= 32, +		.fcr		= UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10, +		.flags		= UART_CAP_FIFO | UART_CAP_AFE, +	}, +	[PORT_ALTR_16550_F64] = { +		.name		= "Altera 16550 FIFO64", +		.fifo_size	= 64, +		.tx_loadsz	= 64, +		.fcr		= UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10, +		.flags		= UART_CAP_FIFO | UART_CAP_AFE, +	}, +	[PORT_ALTR_16550_F128] = { +		.name		= "Altera 16550 FIFO128", +		.fifo_size	= 128, +		.tx_loadsz	= 128, +		.fcr		= UART_FCR_ENABLE_FIFO | UART_FCR_R_TRIG_10, +		.flags		= UART_CAP_FIFO | UART_CAP_AFE, +	},  };  /* Uart divisor latch read */ @@ -3396,3 +3417,32 @@ module_param_array(probe_rsa, ulong, &probe_rsa_count, 0444);  MODULE_PARM_DESC(probe_rsa, "Probe I/O ports for RSA");  #endif  MODULE_ALIAS_CHARDEV_MAJOR(TTY_MAJOR); + +#ifndef MODULE +/* This module was renamed to 8250_core in 3.7.  Keep the old "8250" name + * working as well for the module options so we don't break people.  We + * need to keep the names identical and the convenient macros will happily + * refuse to let us do that by failing the build with redefinition errors + * of global variables.  So we stick them inside a dummy function to avoid + * those conflicts.  The options still get parsed, and the redefined + * MODULE_PARAM_PREFIX lets us keep the "8250." syntax alive. + * + * This is hacky.  I'm sorry. + */ +static void __used s8250_options(void) +{ +#undef MODULE_PARAM_PREFIX +#define MODULE_PARAM_PREFIX "8250." + +	module_param_cb(share_irqs, ¶m_ops_uint, &share_irqs, 0644); +	module_param_cb(nr_uarts, ¶m_ops_uint, &nr_uarts, 0644); +	module_param_cb(skip_txen_test, ¶m_ops_uint, &skip_txen_test, 0644); +#ifdef CONFIG_SERIAL_8250_RSA +	__module_param_call(MODULE_PARAM_PREFIX, probe_rsa, +		¶m_array_ops, .arr = &__param_arr_probe_rsa, +		0444, -1); +#endif +} +#else +MODULE_ALIAS("8250"); +#endif diff --git a/drivers/tty/serial/8250/8250_pci.c b/drivers/tty/serial/8250/8250_pci.c index 791c5a77ec6..aa76825229d 100644 --- a/drivers/tty/serial/8250/8250_pci.c +++ b/drivers/tty/serial/8250/8250_pci.c @@ -1571,6 +1571,7 @@ pci_wch_ch353_setup(struct serial_private *priv,  /* Unknown vendors/cards - this should not be in linux/pci_ids.h */  #define PCI_SUBDEVICE_ID_UNKNOWN_0x1584	0x1584 +#define PCI_SUBDEVICE_ID_UNKNOWN_0x1588	0x1588  /*   * Master list of serial port init/setup/exit quirks. @@ -1852,15 +1853,6 @@ static struct pci_serial_quirk pci_serial_quirks[] __refdata = {  	},  	{  		.vendor		= PCI_VENDOR_ID_PLX, -		.device		= PCI_DEVICE_ID_PLX_9050, -		.subvendor	= PCI_VENDOR_ID_PLX, -		.subdevice	= PCI_SUBDEVICE_ID_UNKNOWN_0x1584, -		.init		= pci_plx9050_init, -		.setup		= pci_default_setup, -		.exit		= pci_plx9050_exit, -	}, -	{ -		.vendor		= PCI_VENDOR_ID_PLX,  		.device		= PCI_DEVICE_ID_PLX_ROMULUS,  		.subvendor	= PCI_VENDOR_ID_PLX,  		.subdevice	= PCI_DEVICE_ID_PLX_ROMULUS, @@ -3733,7 +3725,12 @@ static struct pci_device_id serial_pci_tbl[] = {  	{	PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050,  		PCI_VENDOR_ID_PLX,  		PCI_SUBDEVICE_ID_UNKNOWN_0x1584, 0, 0, -		pbn_b0_4_115200 }, +		pbn_b2_4_115200 }, +	/* Unknown card - subdevice 0x1588 */ +	{	PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050, +		PCI_VENDOR_ID_PLX, +		PCI_SUBDEVICE_ID_UNKNOWN_0x1588, 0, 0, +		pbn_b2_8_115200 },  	{	PCI_VENDOR_ID_PLX, PCI_DEVICE_ID_PLX_9050,  		PCI_SUBVENDOR_ID_KEYSPAN,  		PCI_SUBDEVICE_ID_KEYSPAN_SX2, 0, 0, @@ -4791,6 +4788,10 @@ static struct pci_device_id serial_pci_tbl[] = {  		PCI_VENDOR_ID_IBM, 0x0299,  		0, 0, pbn_b0_bt_2_115200 }, +	{	PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9835, +		0x1000, 0x0012, +		0, 0, pbn_b0_bt_2_115200 }, +  	{	PCI_VENDOR_ID_NETMOS, PCI_DEVICE_ID_NETMOS_9901,  		0xA000, 0x1000,  		0, 0, pbn_b0_1_115200 }, diff --git a/drivers/tty/serial/8250/8250_pnp.c b/drivers/tty/serial/8250/8250_pnp.c index 35d9ab95c5c..b3455a970a1 100644 --- a/drivers/tty/serial/8250/8250_pnp.c +++ b/drivers/tty/serial/8250/8250_pnp.c @@ -429,6 +429,7 @@ serial_pnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id)  {  	struct uart_8250_port uart;  	int ret, line, flags = dev_id->driver_data; +	struct resource *res = NULL;  	if (flags & UNKNOWN_DEV) {  		ret = serial_pnp_guess_board(dev); @@ -439,11 +440,12 @@ serial_pnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id)  	memset(&uart, 0, sizeof(uart));  	if (pnp_irq_valid(dev, 0))  		uart.port.irq = pnp_irq(dev, 0); -	if ((flags & CIR_PORT) && pnp_port_valid(dev, 2)) { -		uart.port.iobase = pnp_port_start(dev, 2); -		uart.port.iotype = UPIO_PORT; -	} else if (pnp_port_valid(dev, 0)) { -		uart.port.iobase = pnp_port_start(dev, 0); +	if ((flags & CIR_PORT) && pnp_port_valid(dev, 2)) +		res = pnp_get_resource(dev, IORESOURCE_IO, 2); +	else if (pnp_port_valid(dev, 0)) +		res = pnp_get_resource(dev, IORESOURCE_IO, 0); +	if (pnp_resource_enabled(res)) { +		uart.port.iobase = res->start;  		uart.port.iotype = UPIO_PORT;  	} else if (pnp_mem_valid(dev, 0)) {  		uart.port.mapbase = pnp_mem_start(dev, 0); diff --git a/drivers/tty/serial/Kconfig b/drivers/tty/serial/Kconfig index cf9210db9fa..7e7006fd404 100644 --- a/drivers/tty/serial/Kconfig +++ b/drivers/tty/serial/Kconfig @@ -211,14 +211,14 @@ config SERIAL_SAMSUNG  config SERIAL_SAMSUNG_UARTS_4  	bool  	depends on PLAT_SAMSUNG -	default y if !(CPU_S3C2410 || SERIAL_S3C2412 || CPU_S3C2440 || CPU_S3C2442) +	default y if !(CPU_S3C2410 || CPU_S3C2412 || CPU_S3C2440 || CPU_S3C2442)  	help  	  Internal node for the common case of 4 Samsung compatible UARTs  config SERIAL_SAMSUNG_UARTS  	int  	depends on PLAT_SAMSUNG -	default 6 if ARCH_S5P6450 +	default 6 if CPU_S5P6450  	default 4 if SERIAL_SAMSUNG_UARTS_4 || CPU_S3C2416  	default 3  	help diff --git a/drivers/tty/serial/bcm63xx_uart.c b/drivers/tty/serial/bcm63xx_uart.c index 719594e5fc2..52a3ecd4042 100644 --- a/drivers/tty/serial/bcm63xx_uart.c +++ b/drivers/tty/serial/bcm63xx_uart.c @@ -235,7 +235,7 @@ static const char *bcm_uart_type(struct uart_port *port)   */  static void bcm_uart_do_rx(struct uart_port *port)  { -	struct tty_port *port = &port->state->port; +	struct tty_port *tty_port = &port->state->port;  	unsigned int max_count;  	/* limit number of char read in interrupt, should not be @@ -260,7 +260,7 @@ static void bcm_uart_do_rx(struct uart_port *port)  			bcm_uart_writel(port, val, UART_CTL_REG);  			port->icount.overrun++; -			tty_insert_flip_char(port, 0, TTY_OVERRUN); +			tty_insert_flip_char(tty_port, 0, TTY_OVERRUN);  		}  		if (!(iestat & UART_IR_STAT(UART_IR_RXNOTEMPTY))) @@ -299,11 +299,11 @@ static void bcm_uart_do_rx(struct uart_port *port)  		if ((cstat & port->ignore_status_mask) == 0) -			tty_insert_flip_char(port, c, flag); +			tty_insert_flip_char(tty_port, c, flag);  	} while (--max_count); -	tty_flip_buffer_push(port); +	tty_flip_buffer_push(tty_port);  }  /* diff --git a/drivers/tty/serial/mpc52xx_uart.c b/drivers/tty/serial/mpc52xx_uart.c index c0e1fad51be..018bad92255 100644 --- a/drivers/tty/serial/mpc52xx_uart.c +++ b/drivers/tty/serial/mpc52xx_uart.c @@ -550,7 +550,7 @@ static int mpc512x_psc_clock(struct uart_port *port, int enable)  		return 0;  	psc_num = (port->mapbase & 0xf00) >> 8; -	snprintf(clk_name, sizeof(clk_name), "psc%d_clk", psc_num); +	snprintf(clk_name, sizeof(clk_name), "psc%d_mclk", psc_num);  	psc_clk = clk_get(port->dev, clk_name);  	if (IS_ERR(psc_clk)) {  		dev_err(port->dev, "Failed to get PSC clock entry!\n"); diff --git a/drivers/tty/serial/of_serial.c b/drivers/tty/serial/of_serial.c index d5874605682..b025d543827 100644 --- a/drivers/tty/serial/of_serial.c +++ b/drivers/tty/serial/of_serial.c @@ -241,6 +241,12 @@ static struct of_device_id of_platform_serial_table[] = {  	{ .compatible = "ns16850",  .data = (void *)PORT_16850, },  	{ .compatible = "nvidia,tegra20-uart", .data = (void *)PORT_TEGRA, },  	{ .compatible = "nxp,lpc3220-uart", .data = (void *)PORT_LPC3220, }, +	{ .compatible = "altr,16550-FIFO32", +		.data = (void *)PORT_ALTR_16550_F32, }, +	{ .compatible = "altr,16550-FIFO64", +		.data = (void *)PORT_ALTR_16550_F64, }, +	{ .compatible = "altr,16550-FIFO128", +		.data = (void *)PORT_ALTR_16550_F128, },  #ifdef CONFIG_SERIAL_OF_PLATFORM_NWPSERIAL  	{ .compatible = "ibm,qpace-nwp-serial",  		.data = (void *)PORT_NWPSERIAL, }, diff --git a/drivers/tty/serial/sunsu.c b/drivers/tty/serial/sunsu.c index e343d667085..451687cb968 100644 --- a/drivers/tty/serial/sunsu.c +++ b/drivers/tty/serial/sunsu.c @@ -968,6 +968,7 @@ static struct uart_ops sunsu_pops = {  #define UART_NR	4  static struct uart_sunsu_port sunsu_ports[UART_NR]; +static int nr_inst; /* Number of already registered ports */  #ifdef CONFIG_SERIO @@ -1337,13 +1338,8 @@ static int __init sunsu_console_setup(struct console *co, char *options)  	printk("Console: ttyS%d (SU)\n",  	       (sunsu_reg.minor - 64) + co->index); -	/* -	 * Check whether an invalid uart number has been specified, and -	 * if so, search for the first available port that does have -	 * console support. -	 */ -	if (co->index >= UART_NR) -		co->index = 0; +	if (co->index > nr_inst) +		return -ENODEV;  	port = &sunsu_ports[co->index].port;  	/* @@ -1408,7 +1404,6 @@ static enum su_type su_get_type(struct device_node *dp)  static int su_probe(struct platform_device *op)  { -	static int inst;  	struct device_node *dp = op->dev.of_node;  	struct uart_sunsu_port *up;  	struct resource *rp; @@ -1418,16 +1413,16 @@ static int su_probe(struct platform_device *op)  	type = su_get_type(dp);  	if (type == SU_PORT_PORT) { -		if (inst >= UART_NR) +		if (nr_inst >= UART_NR)  			return -EINVAL; -		up = &sunsu_ports[inst]; +		up = &sunsu_ports[nr_inst];  	} else {  		up = kzalloc(sizeof(*up), GFP_KERNEL);  		if (!up)  			return -ENOMEM;  	} -	up->port.line = inst; +	up->port.line = nr_inst;  	spin_lock_init(&up->port.lock); @@ -1461,6 +1456,8 @@ static int su_probe(struct platform_device *op)  		}  		dev_set_drvdata(&op->dev, up); +		nr_inst++; +  		return 0;  	} @@ -1488,7 +1485,7 @@ static int su_probe(struct platform_device *op)  	dev_set_drvdata(&op->dev, up); -	inst++; +	nr_inst++;  	return 0; diff --git a/drivers/tty/serial/vt8500_serial.c b/drivers/tty/serial/vt8500_serial.c index a3f9dd5c9df..705240e6c4e 100644 --- a/drivers/tty/serial/vt8500_serial.c +++ b/drivers/tty/serial/vt8500_serial.c @@ -611,14 +611,7 @@ static int vt8500_serial_probe(struct platform_device *pdev)  	vt8500_port->uart.dev = &pdev->dev;  	vt8500_port->uart.flags = UPF_IOREMAP | UPF_BOOT_AUTOCONF; -	vt8500_port->clk = of_clk_get(pdev->dev.of_node, 0); -	if (!IS_ERR(vt8500_port->clk)) { -		vt8500_port->uart.uartclk = clk_get_rate(vt8500_port->clk); -	} else { -		/* use the default of 24Mhz if not specified and warn */ -		pr_warn("%s: serial clock source not specified\n", __func__); -		vt8500_port->uart.uartclk = 24000000; -	} +	vt8500_port->uart.uartclk = clk_get_rate(vt8500_port->clk);  	snprintf(vt8500_port->name, sizeof(vt8500_port->name),  		 "VT8500 UART%d", pdev->id); diff --git a/drivers/tty/tty_buffer.c b/drivers/tty/tty_buffer.c index bb119934e76..578aa7594b1 100644 --- a/drivers/tty/tty_buffer.c +++ b/drivers/tty/tty_buffer.c @@ -425,7 +425,7 @@ static void flush_to_ldisc(struct work_struct *work)  	struct tty_ldisc *disc;  	tty = port->itty; -	if (WARN_RATELIMIT(tty == NULL, "tty is NULL\n")) +	if (tty == NULL)  		return;  	disc = tty_ldisc_ref(tty); diff --git a/drivers/usb/Makefile b/drivers/usb/Makefile index f5ed3d75fa5..8f5ebced5df 100644 --- a/drivers/usb/Makefile +++ b/drivers/usb/Makefile @@ -46,7 +46,7 @@ obj-$(CONFIG_USB_MICROTEK)	+= image/  obj-$(CONFIG_USB_SERIAL)	+= serial/  obj-$(CONFIG_USB)		+= misc/ -obj-$(CONFIG_USB_COMMON)	+= phy/ +obj-$(CONFIG_USB_OTG_UTILS)	+= phy/  obj-$(CONFIG_EARLY_PRINTK_DBGP)	+= early/  obj-$(CONFIG_USB_ATM)		+= atm/ diff --git a/drivers/usb/c67x00/c67x00-sched.c b/drivers/usb/c67x00/c67x00-sched.c index a03fbc15fa9..aa491627a45 100644 --- a/drivers/usb/c67x00/c67x00-sched.c +++ b/drivers/usb/c67x00/c67x00-sched.c @@ -100,7 +100,7 @@ struct c67x00_urb_priv {  #define TD_PIDEP_OFFSET		0x04  #define TD_PIDEPMASK_PID	0xF0  #define TD_PIDEPMASK_EP		0x0F -#define TD_PORTLENMASK_DL	0x02FF +#define TD_PORTLENMASK_DL	0x03FF  #define TD_PORTLENMASK_PN	0xC000  #define TD_STATUS_OFFSET	0x07 @@ -590,7 +590,7 @@ static int c67x00_create_td(struct c67x00_hcd *c67x00, struct urb *urb,  {  	struct c67x00_td *td;  	struct c67x00_urb_priv *urbp = urb->hcpriv; -	const __u8 active_flag = 1, retry_cnt = 1; +	const __u8 active_flag = 1, retry_cnt = 3;  	__u8 cmd = 0;  	int tt = 0; diff --git a/drivers/usb/chipidea/udc.c b/drivers/usb/chipidea/udc.c index 2f45bba8561..f64fbea1cf2 100644 --- a/drivers/usb/chipidea/udc.c +++ b/drivers/usb/chipidea/udc.c @@ -1767,7 +1767,7 @@ static int udc_start(struct ci13xxx *ci)  		goto put_transceiver;  	} -	retval = dbg_create_files(&ci->gadget.dev); +	retval = dbg_create_files(ci->dev);  	if (retval)  		goto unreg_device; @@ -1796,7 +1796,7 @@ remove_trans:  	dev_err(dev, "error = %i\n", retval);  remove_dbg: -	dbg_remove_files(&ci->gadget.dev); +	dbg_remove_files(ci->dev);  unreg_device:  	device_unregister(&ci->gadget.dev);  put_transceiver: @@ -1836,7 +1836,7 @@ static void udc_stop(struct ci13xxx *ci)  		if (ci->global_phy)  			usb_put_phy(ci->transceiver);  	} -	dbg_remove_files(&ci->gadget.dev); +	dbg_remove_files(ci->dev);  	device_unregister(&ci->gadget.dev);  	/* my kobject is dynamic, I swear! */  	memset(&ci->gadget, 0, sizeof(ci->gadget)); diff --git a/drivers/usb/class/cdc-acm.c b/drivers/usb/class/cdc-acm.c index 8ac25adf31b..387dc6c8ad2 100644 --- a/drivers/usb/class/cdc-acm.c +++ b/drivers/usb/class/cdc-acm.c @@ -593,7 +593,6 @@ static void acm_port_destruct(struct tty_port *port)  	dev_dbg(&acm->control->dev, "%s\n", __func__); -	tty_unregister_device(acm_tty_driver, acm->minor);  	acm_release_minor(acm);  	usb_put_intf(acm->control);  	kfree(acm->country_codes); @@ -977,6 +976,8 @@ static int acm_probe(struct usb_interface *intf,  	int num_rx_buf;  	int i;  	int combined_interfaces = 0; +	struct device *tty_dev; +	int rv = -ENOMEM;  	/* normal quirks */  	quirks = (unsigned long)id->driver_info; @@ -1339,11 +1340,24 @@ skip_countries:  	usb_set_intfdata(data_interface, acm);  	usb_get_intf(control_interface); -	tty_port_register_device(&acm->port, acm_tty_driver, minor, +	tty_dev = tty_port_register_device(&acm->port, acm_tty_driver, minor,  			&control_interface->dev); +	if (IS_ERR(tty_dev)) { +		rv = PTR_ERR(tty_dev); +		goto alloc_fail8; +	}  	return 0; +alloc_fail8: +	if (acm->country_codes) { +		device_remove_file(&acm->control->dev, +				&dev_attr_wCountryCodes); +		device_remove_file(&acm->control->dev, +				&dev_attr_iCountryCodeRelDate); +	} +	device_remove_file(&acm->control->dev, &dev_attr_bmCapabilities);  alloc_fail7: +	usb_set_intfdata(intf, NULL);  	for (i = 0; i < ACM_NW; i++)  		usb_free_urb(acm->wb[i].urb);  alloc_fail6: @@ -1359,7 +1373,7 @@ alloc_fail2:  	acm_release_minor(acm);  	kfree(acm);  alloc_fail: -	return -ENOMEM; +	return rv;  }  static void stop_data_traffic(struct acm *acm) @@ -1411,6 +1425,8 @@ static void acm_disconnect(struct usb_interface *intf)  	stop_data_traffic(acm); +	tty_unregister_device(acm_tty_driver, acm->minor); +  	usb_free_urb(acm->ctrlurb);  	for (i = 0; i < ACM_NW; i++)  		usb_free_urb(acm->wb[i].urb); diff --git a/drivers/usb/class/cdc-wdm.c b/drivers/usb/class/cdc-wdm.c index 5f0cb417b73..122d056d96d 100644 --- a/drivers/usb/class/cdc-wdm.c +++ b/drivers/usb/class/cdc-wdm.c @@ -56,6 +56,7 @@ MODULE_DEVICE_TABLE (usb, wdm_ids);  #define WDM_RESPONDING		7  #define WDM_SUSPENDING		8  #define WDM_RESETTING		9 +#define WDM_OVERFLOW		10  #define WDM_MAX			16 @@ -155,6 +156,7 @@ static void wdm_in_callback(struct urb *urb)  {  	struct wdm_device *desc = urb->context;  	int status = urb->status; +	int length = urb->actual_length;  	spin_lock(&desc->iuspin);  	clear_bit(WDM_RESPONDING, &desc->flags); @@ -185,9 +187,17 @@ static void wdm_in_callback(struct urb *urb)  	}  	desc->rerr = status; -	desc->reslength = urb->actual_length; -	memmove(desc->ubuf + desc->length, desc->inbuf, desc->reslength); -	desc->length += desc->reslength; +	if (length + desc->length > desc->wMaxCommand) { +		/* The buffer would overflow */ +		set_bit(WDM_OVERFLOW, &desc->flags); +	} else { +		/* we may already be in overflow */ +		if (!test_bit(WDM_OVERFLOW, &desc->flags)) { +			memmove(desc->ubuf + desc->length, desc->inbuf, length); +			desc->length += length; +			desc->reslength = length; +		} +	}  skip_error:  	wake_up(&desc->wait); @@ -435,6 +445,11 @@ retry:  			rv = -ENODEV;  			goto err;  		} +		if (test_bit(WDM_OVERFLOW, &desc->flags)) { +			clear_bit(WDM_OVERFLOW, &desc->flags); +			rv = -ENOBUFS; +			goto err; +		}  		i++;  		if (file->f_flags & O_NONBLOCK) {  			if (!test_bit(WDM_READ, &desc->flags)) { @@ -478,6 +493,7 @@ retry:  			spin_unlock_irq(&desc->iuspin);  			goto retry;  		} +  		if (!desc->reslength) { /* zero length read */  			dev_dbg(&desc->intf->dev, "%s: zero length - clearing WDM_READ\n", __func__);  			clear_bit(WDM_READ, &desc->flags); @@ -1004,6 +1020,7 @@ static int wdm_post_reset(struct usb_interface *intf)  	struct wdm_device *desc = wdm_find_device(intf);  	int rv; +	clear_bit(WDM_OVERFLOW, &desc->flags);  	clear_bit(WDM_RESETTING, &desc->flags);  	rv = recover_from_urb_loss(desc);  	mutex_unlock(&desc->wlock); diff --git a/drivers/usb/core/hcd-pci.c b/drivers/usb/core/hcd-pci.c index 622b4a48e73..2b487d4797b 100644 --- a/drivers/usb/core/hcd-pci.c +++ b/drivers/usb/core/hcd-pci.c @@ -173,6 +173,7 @@ int usb_hcd_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)  	struct hc_driver	*driver;  	struct usb_hcd		*hcd;  	int			retval; +	int			hcd_irq = 0;  	if (usb_disabled())  		return -ENODEV; @@ -187,15 +188,19 @@ int usb_hcd_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)  		return -ENODEV;  	dev->current_state = PCI_D0; -	/* The xHCI driver supports MSI and MSI-X, -	 * so don't fail if the BIOS doesn't provide a legacy IRQ. +	/* +	 * The xHCI driver has its own irq management +	 * make sure irq setup is not touched for xhci in generic hcd code  	 */ -	if (!dev->irq && (driver->flags & HCD_MASK) != HCD_USB3) { -		dev_err(&dev->dev, -			"Found HC with no IRQ.  Check BIOS/PCI %s setup!\n", -			pci_name(dev)); -		retval = -ENODEV; -		goto disable_pci; +	if ((driver->flags & HCD_MASK) != HCD_USB3) { +		if (!dev->irq) { +			dev_err(&dev->dev, +			"Found HC with no IRQ. Check BIOS/PCI %s setup!\n", +				pci_name(dev)); +			retval = -ENODEV; +			goto disable_pci; +		} +		hcd_irq = dev->irq;  	}  	hcd = usb_create_hcd(driver, &dev->dev, pci_name(dev)); @@ -245,7 +250,7 @@ int usb_hcd_pci_probe(struct pci_dev *dev, const struct pci_device_id *id)  	pci_set_master(dev); -	retval = usb_add_hcd(hcd, dev->irq, IRQF_SHARED); +	retval = usb_add_hcd(hcd, hcd_irq, IRQF_SHARED);  	if (retval != 0)  		goto unmap_registers;  	set_hs_companion(dev, hcd); diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c index 999909451e3..ffa6b004a84 100644 --- a/drivers/usb/dwc3/core.c +++ b/drivers/usb/dwc3/core.c @@ -583,6 +583,7 @@ static int dwc3_remove(struct platform_device *pdev)  		break;  	} +	dwc3_free_event_buffers(dwc);  	dwc3_core_exit(dwc);  	return 0; diff --git a/drivers/usb/dwc3/dwc3-exynos.c b/drivers/usb/dwc3/dwc3-exynos.c index b50da53e9a5..b082bec7343 100644 --- a/drivers/usb/dwc3/dwc3-exynos.c +++ b/drivers/usb/dwc3/dwc3-exynos.c @@ -23,8 +23,6 @@  #include <linux/usb/nop-usb-xceiv.h>  #include <linux/of.h> -#include "core.h" -  struct dwc3_exynos {  	struct platform_device	*dwc3;  	struct platform_device	*usb2_phy; diff --git a/drivers/usb/dwc3/dwc3-omap.c b/drivers/usb/dwc3/dwc3-omap.c index 22f337f5721..afa05e3c9cf 100644 --- a/drivers/usb/dwc3/dwc3-omap.c +++ b/drivers/usb/dwc3/dwc3-omap.c @@ -54,8 +54,6 @@  #include <linux/usb/otg.h>  #include <linux/usb/nop-usb-xceiv.h> -#include "core.h" -  /*   * All these registers belong to OMAP's Wrapper around the   * DesignWare USB3 Core. @@ -465,20 +463,20 @@ static int dwc3_omap_remove(struct platform_device *pdev)  	return 0;  } -static const struct of_device_id of_dwc3_matach[] = { +static const struct of_device_id of_dwc3_match[] = {  	{  		"ti,dwc3",  	},  	{ },  }; -MODULE_DEVICE_TABLE(of, of_dwc3_matach); +MODULE_DEVICE_TABLE(of, of_dwc3_match);  static struct platform_driver dwc3_omap_driver = {  	.probe		= dwc3_omap_probe,  	.remove		= dwc3_omap_remove,  	.driver		= {  		.name	= "omap-dwc3", -		.of_match_table	= of_dwc3_matach, +		.of_match_table	= of_dwc3_match,  	},  }; diff --git a/drivers/usb/dwc3/dwc3-pci.c b/drivers/usb/dwc3/dwc3-pci.c index 7d70f44567d..e8d77689a32 100644 --- a/drivers/usb/dwc3/dwc3-pci.c +++ b/drivers/usb/dwc3/dwc3-pci.c @@ -45,8 +45,6 @@  #include <linux/usb/otg.h>  #include <linux/usb/nop-usb-xceiv.h> -#include "core.h" -  /* FIXME define these in <linux/pci_ids.h> */  #define PCI_VENDOR_ID_SYNOPSYS		0x16c3  #define PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3	0xabcd diff --git a/drivers/usb/dwc3/ep0.c b/drivers/usb/dwc3/ep0.c index d7da073a23f..1d139ca05ef 100644 --- a/drivers/usb/dwc3/ep0.c +++ b/drivers/usb/dwc3/ep0.c @@ -891,7 +891,8 @@ static void __dwc3_ep0_do_control_data(struct dwc3 *dwc,  				DWC3_TRBCTL_CONTROL_DATA);  	} else if (!IS_ALIGNED(req->request.length, dep->endpoint.maxpacket)  			&& (dep->number == 0)) { -		u32		transfer_size; +		u32	transfer_size; +		u32	maxpacket;  		ret = usb_gadget_map_request(&dwc->gadget, &req->request,  				dep->number); @@ -902,8 +903,8 @@ static void __dwc3_ep0_do_control_data(struct dwc3 *dwc,  		WARN_ON(req->request.length > DWC3_EP0_BOUNCE_SIZE); -		transfer_size = roundup(req->request.length, -				(u32) dep->endpoint.maxpacket); +		maxpacket = dep->endpoint.maxpacket; +		transfer_size = roundup(req->request.length, maxpacket);  		dwc->ep0_bounced = true; diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c index a04342f6cbf..82e160e96fc 100644 --- a/drivers/usb/dwc3/gadget.c +++ b/drivers/usb/dwc3/gadget.c @@ -2159,7 +2159,6 @@ static void dwc3_gadget_phy_suspend(struct dwc3 *dwc, u8 speed)  static void dwc3_gadget_conndone_interrupt(struct dwc3 *dwc)  { -	struct dwc3_gadget_ep_cmd_params params;  	struct dwc3_ep		*dep;  	int			ret;  	u32			reg; @@ -2167,8 +2166,6 @@ static void dwc3_gadget_conndone_interrupt(struct dwc3 *dwc)  	dev_vdbg(dwc->dev, "%s\n", __func__); -	memset(¶ms, 0x00, sizeof(params)); -  	reg = dwc3_readl(dwc->regs, DWC3_DSTS);  	speed = reg & DWC3_DSTS_CONNECTSPD;  	dwc->speed = speed; diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile index 97a13c349cc..82fb2251135 100644 --- a/drivers/usb/gadget/Makefile +++ b/drivers/usb/gadget/Makefile @@ -35,6 +35,12 @@ mv_udc-y			:= mv_udc_core.o  obj-$(CONFIG_USB_FUSB300)	+= fusb300_udc.o  obj-$(CONFIG_USB_MV_U3D)	+= mv_u3d_core.o +# USB Functions +obj-$(CONFIG_USB_F_ACM)		+= f_acm.o +f_ss_lb-y			:= f_loopback.o f_sourcesink.o +obj-$(CONFIG_USB_F_SS_LB)	+= f_ss_lb.o +obj-$(CONFIG_USB_U_SERIAL)	+= u_serial.o +  #  # USB gadget drivers  # @@ -74,9 +80,3 @@ obj-$(CONFIG_USB_G_WEBCAM)	+= g_webcam.o  obj-$(CONFIG_USB_G_NCM)		+= g_ncm.o  obj-$(CONFIG_USB_G_ACM_MS)	+= g_acm_ms.o  obj-$(CONFIG_USB_GADGET_TARGET)	+= tcm_usb_gadget.o - -# USB Functions -obj-$(CONFIG_USB_F_ACM)		+= f_acm.o -f_ss_lb-y			:= f_loopback.o f_sourcesink.o -obj-$(CONFIG_USB_F_SS_LB)	+= f_ss_lb.o -obj-$(CONFIG_USB_U_SERIAL)	+= u_serial.o diff --git a/drivers/usb/gadget/composite.c b/drivers/usb/gadget/composite.c index 7c821de8ce3..c0d62b27861 100644 --- a/drivers/usb/gadget/composite.c +++ b/drivers/usb/gadget/composite.c @@ -1757,10 +1757,7 @@ static const struct usb_gadget_driver composite_driver_template = {  /**   * usb_composite_probe() - register a composite driver   * @driver: the driver to register - * @bind: the callback used to allocate resources that are shared across the - *	whole device, such as string IDs, and add its configurations using - *	@usb_add_config().  This may fail by returning a negative errno - *	value; it should return zero on successful initialization. + *   * Context: single threaded during gadget setup   *   * This function is used to register drivers using the composite driver diff --git a/drivers/usb/gadget/f_rndis.c b/drivers/usb/gadget/f_rndis.c index 71beeb83355..cc9c49c57c8 100644 --- a/drivers/usb/gadget/f_rndis.c +++ b/drivers/usb/gadget/f_rndis.c @@ -447,14 +447,13 @@ static void rndis_response_complete(struct usb_ep *ep, struct usb_request *req)  static void rndis_command_complete(struct usb_ep *ep, struct usb_request *req)  {  	struct f_rndis			*rndis = req->context; -	struct usb_composite_dev	*cdev = rndis->port.func.config->cdev;  	int				status;  	/* received RNDIS command from USB_CDC_SEND_ENCAPSULATED_COMMAND */  //	spin_lock(&dev->lock);  	status = rndis_msg_parser(rndis->config, (u8 *) req->buf);  	if (status < 0) -		ERROR(cdev, "RNDIS command error %d, %d/%d\n", +		pr_err("RNDIS command error %d, %d/%d\n",  			status, req->actual, req->length);  //	spin_unlock(&dev->lock);  } diff --git a/drivers/usb/gadget/f_uac1.c b/drivers/usb/gadget/f_uac1.c index f570e667a64..fa8ea4ea00c 100644 --- a/drivers/usb/gadget/f_uac1.c +++ b/drivers/usb/gadget/f_uac1.c @@ -418,6 +418,7 @@ static int audio_get_intf_req(struct usb_function *f,  	req->context = audio;  	req->complete = f_audio_complete; +	len = min_t(size_t, sizeof(value), len);  	memcpy(req->buf, &value, len);  	return len; diff --git a/drivers/usb/gadget/g_ffs.c b/drivers/usb/gadget/g_ffs.c index 3953dd4d718..3b343b23e4b 100644 --- a/drivers/usb/gadget/g_ffs.c +++ b/drivers/usb/gadget/g_ffs.c @@ -357,7 +357,7 @@ static int gfs_bind(struct usb_composite_dev *cdev)  		goto error;  	gfs_dev_desc.iProduct = gfs_strings[USB_GADGET_PRODUCT_IDX].id; -	for (i = func_num; --i; ) { +	for (i = func_num; i--; ) {  		ret = functionfs_bind(ffs_tab[i].ffs_data, cdev);  		if (unlikely(ret < 0)) {  			while (++i < func_num) @@ -413,7 +413,7 @@ static int gfs_unbind(struct usb_composite_dev *cdev)  		gether_cleanup();  	gfs_ether_setup = false; -	for (i = func_num; --i; ) +	for (i = func_num; i--; )  		if (ffs_tab[i].ffs_data)  			functionfs_unbind(ffs_tab[i].ffs_data); diff --git a/drivers/usb/gadget/imx_udc.c b/drivers/usb/gadget/imx_udc.c index 8efd7555fa2..5bd930d779b 100644 --- a/drivers/usb/gadget/imx_udc.c +++ b/drivers/usb/gadget/imx_udc.c @@ -1334,27 +1334,18 @@ static int imx_udc_start(struct usb_gadget *gadget,  		struct usb_gadget_driver *driver)  {  	struct imx_udc_struct *imx_usb; -	int retval;  	imx_usb = container_of(gadget, struct imx_udc_struct, gadget);  	/* first hook up the driver ... */  	imx_usb->driver = driver;  	imx_usb->gadget.dev.driver = &driver->driver; -	retval = device_add(&imx_usb->gadget.dev); -	if (retval) -		goto fail; -  	D_INI(imx_usb->dev, "<%s> registered gadget driver '%s'\n",  		__func__, driver->driver.name);  	imx_udc_enable(imx_usb);  	return 0; -fail: -	imx_usb->driver = NULL; -	imx_usb->gadget.dev.driver = NULL; -	return retval;  }  static int imx_udc_stop(struct usb_gadget *gadget, @@ -1370,8 +1361,6 @@ static int imx_udc_stop(struct usb_gadget *gadget,  	imx_usb->gadget.dev.driver = NULL;  	imx_usb->driver = NULL; -	device_del(&imx_usb->gadget.dev); -  	D_INI(imx_usb->dev, "<%s> unregistered gadget driver '%s'\n",  		__func__, driver->driver.name); @@ -1477,6 +1466,10 @@ static int __init imx_udc_probe(struct platform_device *pdev)  	imx_usb->gadget.dev.parent = &pdev->dev;  	imx_usb->gadget.dev.dma_mask = pdev->dev.dma_mask; +	ret = device_add(&imx_usb->gadget.dev); +	if (retval) +		goto fail4; +  	platform_set_drvdata(pdev, imx_usb);  	usb_init_data(imx_usb); @@ -1488,9 +1481,11 @@ static int __init imx_udc_probe(struct platform_device *pdev)  	ret = usb_add_gadget_udc(&pdev->dev, &imx_usb->gadget);  	if (ret) -		goto fail4; +		goto fail5;  	return 0; +fail5: +	device_unregister(&imx_usb->gadget.dev);  fail4:  	for (i = 0; i < IMX_USB_NB_EP + 1; i++)  		free_irq(imx_usb->usbd_int[i], imx_usb); @@ -1514,6 +1509,7 @@ static int __exit imx_udc_remove(struct platform_device *pdev)  	int i;  	usb_del_gadget_udc(&imx_usb->gadget); +	device_unregister(&imx_usb->gadget.dev);  	imx_udc_disable(imx_usb);  	del_timer(&imx_usb->timer); diff --git a/drivers/usb/gadget/net2272.c b/drivers/usb/gadget/net2272.c index d226058e3b8..32524b63195 100644 --- a/drivers/usb/gadget/net2272.c +++ b/drivers/usb/gadget/net2272.c @@ -59,7 +59,7 @@ static const char * const ep_name[] = {  };  #define DMA_ADDR_INVALID	(~(dma_addr_t)0) -#ifdef CONFIG_USB_GADGET_NET2272_DMA +#ifdef CONFIG_USB_NET2272_DMA  /*   * use_dma: the NET2272 can use an external DMA controller.   * Note that since there is no generic DMA api, some functions, @@ -1495,6 +1495,13 @@ stop_activity(struct net2272 *dev, struct usb_gadget_driver *driver)  	for (i = 0; i < 4; ++i)  		net2272_dequeue_all(&dev->ep[i]); +	/* report disconnect; the driver is already quiesced */ +	if (driver) { +		spin_unlock(&dev->lock); +		driver->disconnect(&dev->gadget); +		spin_lock(&dev->lock); +	} +  	net2272_usb_reinit(dev);  } diff --git a/drivers/usb/gadget/net2280.c b/drivers/usb/gadget/net2280.c index a1b650e1133..3bd0f992fb4 100644 --- a/drivers/usb/gadget/net2280.c +++ b/drivers/usb/gadget/net2280.c @@ -1924,7 +1924,6 @@ static int net2280_start(struct usb_gadget *_gadget,  err_func:  	device_remove_file (&dev->pdev->dev, &dev_attr_function);  err_unbind: -	driver->unbind (&dev->gadget);  	dev->gadget.dev.driver = NULL;  	dev->driver = NULL;  	return retval; @@ -1946,6 +1945,13 @@ stop_activity (struct net2280 *dev, struct usb_gadget_driver *driver)  	for (i = 0; i < 7; i++)  		nuke (&dev->ep [i]); +	/* report disconnect; the driver is already quiesced */ +	if (driver) { +		spin_unlock(&dev->lock); +		driver->disconnect(&dev->gadget); +		spin_lock(&dev->lock); +	} +  	usb_reinit (dev);  } diff --git a/drivers/usb/gadget/omap_udc.c b/drivers/usb/gadget/omap_udc.c index 06be85c2b23..f8445653577 100644 --- a/drivers/usb/gadget/omap_udc.c +++ b/drivers/usb/gadget/omap_udc.c @@ -62,6 +62,7 @@  #define	DRIVER_VERSION	"4 October 2004"  #define OMAP_DMA_USB_W2FC_TX0		29 +#define OMAP_DMA_USB_W2FC_RX0		26  /*   * The OMAP UDC needs _very_ early endpoint setup:  before enabling the @@ -1310,7 +1311,7 @@ static int omap_pullup(struct usb_gadget *gadget, int is_on)  }  static int omap_udc_start(struct usb_gadget *g, -		struct usb_gadget_driver *driver) +		struct usb_gadget_driver *driver);  static int omap_udc_stop(struct usb_gadget *g,  		struct usb_gadget_driver *driver); diff --git a/drivers/usb/gadget/pxa25x_udc.c b/drivers/usb/gadget/pxa25x_udc.c index 2bbcdce942d..d0f37484b6b 100644 --- a/drivers/usb/gadget/pxa25x_udc.c +++ b/drivers/usb/gadget/pxa25x_udc.c @@ -1266,13 +1266,6 @@ static int pxa25x_udc_start(struct usb_gadget *g,  	dev->gadget.dev.driver = &driver->driver;  	dev->pullup = 1; -	retval = device_add (&dev->gadget.dev); -	if (retval) { -		dev->driver = NULL; -		dev->gadget.dev.driver = NULL; -		return retval; -	} -  	/* ... then enable host detection and ep0; and we're ready  	 * for set_configuration as well as eventual disconnect.  	 */ @@ -1310,6 +1303,10 @@ stop_activity(struct pxa25x_udc *dev, struct usb_gadget_driver *driver)  	}  	del_timer_sync(&dev->timer); +	/* report disconnect; the driver is already quiesced */ +	if (driver) +		driver->disconnect(&dev->gadget); +  	/* re-init driver-visible data structures */  	udc_reinit(dev);  } @@ -1331,7 +1328,6 @@ static int pxa25x_udc_stop(struct usb_gadget*g,  	dev->gadget.dev.driver = NULL;  	dev->driver = NULL; -	device_del (&dev->gadget.dev);  	dump_state(dev);  	return 0; @@ -2146,6 +2142,13 @@ static int __init pxa25x_udc_probe(struct platform_device *pdev)  	dev->gadget.dev.parent = &pdev->dev;  	dev->gadget.dev.dma_mask = pdev->dev.dma_mask; +	retval = device_add(&dev->gadget.dev); +	if (retval) { +		dev->driver = NULL; +		dev->gadget.dev.driver = NULL; +		goto err_device_add; +	} +  	the_controller = dev;  	platform_set_drvdata(pdev, dev); @@ -2196,6 +2199,8 @@ lubbock_fail0:  	free_irq(irq, dev);  #endif   err_irq1: +	device_unregister(&dev->gadget.dev); + err_device_add:  	if (gpio_is_valid(dev->mach->gpio_pullup))  		gpio_free(dev->mach->gpio_pullup);   err_gpio_pullup: @@ -2217,10 +2222,11 @@ static int __exit pxa25x_udc_remove(struct platform_device *pdev)  {  	struct pxa25x_udc *dev = platform_get_drvdata(pdev); -	usb_del_gadget_udc(&dev->gadget);  	if (dev->driver)  		return -EBUSY; +	usb_del_gadget_udc(&dev->gadget); +	device_unregister(&dev->gadget.dev);  	dev->pullup = 0;  	pullup(dev); diff --git a/drivers/usb/gadget/pxa27x_udc.c b/drivers/usb/gadget/pxa27x_udc.c index f7d25795821..2fc867652ef 100644 --- a/drivers/usb/gadget/pxa27x_udc.c +++ b/drivers/usb/gadget/pxa27x_udc.c @@ -1814,11 +1814,6 @@ static int pxa27x_udc_start(struct usb_gadget *g,  	udc->gadget.dev.driver = &driver->driver;  	dplus_pullup(udc, 1); -	retval = device_add(&udc->gadget.dev); -	if (retval) { -		dev_err(udc->dev, "device_add error %d\n", retval); -		goto fail; -	}  	if (!IS_ERR_OR_NULL(udc->transceiver)) {  		retval = otg_set_peripheral(udc->transceiver->otg,  						&udc->gadget); @@ -1876,7 +1871,6 @@ static int pxa27x_udc_stop(struct usb_gadget *g,  	udc->driver = NULL; -	device_del(&udc->gadget.dev);  	if (!IS_ERR_OR_NULL(udc->transceiver))  		return otg_set_peripheral(udc->transceiver->otg, NULL); @@ -2480,13 +2474,24 @@ static int __init pxa_udc_probe(struct platform_device *pdev)  			driver_name, udc->irq, retval);  		goto err_irq;  	} + +	retval = device_add(&udc->gadget.dev); +	if (retval) { +		dev_err(udc->dev, "device_add error %d\n", retval); +		goto err_dev_add; +	} +  	retval = usb_add_gadget_udc(&pdev->dev, &udc->gadget);  	if (retval)  		goto err_add_udc;  	pxa_init_debugfs(udc); +  	return 0; +  err_add_udc: +	device_unregister(&udc->gadget.dev); +err_dev_add:  	free_irq(udc->irq, udc);  err_irq:  	iounmap(udc->regs); @@ -2507,6 +2512,7 @@ static int __exit pxa_udc_remove(struct platform_device *_dev)  	int gpio = udc->mach->gpio_pullup;  	usb_del_gadget_udc(&udc->gadget); +	device_del(&udc->gadget.dev);  	usb_gadget_unregister_driver(udc->driver);  	free_irq(udc->irq, udc);  	pxa_cleanup_debugfs(udc); diff --git a/drivers/usb/gadget/s3c2410_udc.c b/drivers/usb/gadget/s3c2410_udc.c index fc07b438128..08f89652533 100644 --- a/drivers/usb/gadget/s3c2410_udc.c +++ b/drivers/usb/gadget/s3c2410_udc.c @@ -1668,8 +1668,7 @@ static void s3c2410_udc_enable(struct s3c2410_udc *dev)  static int s3c2410_udc_start(struct usb_gadget *g,  		struct usb_gadget_driver *driver)  { -	struct s3c2410_udc *udc = to_s3c2410(g) -	int		retval; +	struct s3c2410_udc *udc = to_s3c2410(g);  	dprintk(DEBUG_NORMAL, "%s() '%s'\n", __func__, driver->driver.name); @@ -1677,22 +1676,10 @@ static int s3c2410_udc_start(struct usb_gadget *g,  	udc->driver = driver;  	udc->gadget.dev.driver = &driver->driver; -	/* Bind the driver */ -	retval = device_add(&udc->gadget.dev); -	if (retval) { -		dev_err(&udc->gadget.dev, "Error in device_add() : %d\n", retval); -		goto register_error; -	} -  	/* Enable udc */  	s3c2410_udc_enable(udc);  	return 0; - -register_error: -	udc->driver = NULL; -	udc->gadget.dev.driver = NULL; -	return retval;  }  static int s3c2410_udc_stop(struct usb_gadget *g, @@ -1700,7 +1687,6 @@ static int s3c2410_udc_stop(struct usb_gadget *g,  {  	struct s3c2410_udc *udc = to_s3c2410(g); -	device_del(&udc->gadget.dev);  	udc->driver = NULL;  	/* Disable udc */ @@ -1842,6 +1828,13 @@ static int s3c2410_udc_probe(struct platform_device *pdev)  	udc->gadget.dev.parent = &pdev->dev;  	udc->gadget.dev.dma_mask = pdev->dev.dma_mask; +	/* Bind the driver */ +	retval = device_add(&udc->gadget.dev); +	if (retval) { +		dev_err(&udc->gadget.dev, "Error in device_add() : %d\n", retval); +		goto err_device_add; +	} +  	the_controller = udc;  	platform_set_drvdata(pdev, udc); @@ -1930,6 +1923,8 @@ err_gpio_claim:  err_int:  	free_irq(IRQ_USBD, udc);  err_map: +	device_unregister(&udc->gadget.dev); +err_device_add:  	iounmap(base_addr);  err_mem:  	release_mem_region(rsrc_start, rsrc_len); @@ -1947,10 +1942,11 @@ static int s3c2410_udc_remove(struct platform_device *pdev)  	dev_dbg(&pdev->dev, "%s()\n", __func__); -	usb_del_gadget_udc(&udc->gadget);  	if (udc->driver)  		return -EBUSY; +	usb_del_gadget_udc(&udc->gadget); +	device_unregister(&udc->gadget.dev);  	debugfs_remove(udc->regs_info);  	if (udc_info && !udc_info->udc_command && diff --git a/drivers/usb/gadget/u_serial.c b/drivers/usb/gadget/u_serial.c index c5034d9c946..b369292d4b9 100644 --- a/drivers/usb/gadget/u_serial.c +++ b/drivers/usb/gadget/u_serial.c @@ -136,7 +136,7 @@ static struct portmaster {  	pr_debug(fmt, ##arg)  #endif /* pr_vdebug */  #else -#ifndef pr_vdebig +#ifndef pr_vdebug  #define pr_vdebug(fmt, arg...) \  	({ if (0) pr_debug(fmt, ##arg); })  #endif /* pr_vdebug */ diff --git a/drivers/usb/gadget/u_uac1.c b/drivers/usb/gadget/u_uac1.c index e0c5e88e03e..c7d460f4339 100644 --- a/drivers/usb/gadget/u_uac1.c +++ b/drivers/usb/gadget/u_uac1.c @@ -240,8 +240,11 @@ static int gaudio_open_snd_dev(struct gaudio *card)  	snd = &card->playback;  	snd->filp = filp_open(fn_play, O_WRONLY, 0);  	if (IS_ERR(snd->filp)) { +		int ret = PTR_ERR(snd->filp); +  		ERROR(card, "No such PCM playback device: %s\n", fn_play);  		snd->filp = NULL; +		return ret;  	}  	pcm_file = snd->filp->private_data;  	snd->substream = pcm_file->substream; diff --git a/drivers/usb/gadget/udc-core.c b/drivers/usb/gadget/udc-core.c index 2a9cd369f71..f8f62c3ed65 100644 --- a/drivers/usb/gadget/udc-core.c +++ b/drivers/usb/gadget/udc-core.c @@ -216,7 +216,7 @@ static void usb_gadget_remove_driver(struct usb_udc *udc)  	usb_gadget_disconnect(udc->gadget);  	udc->driver->disconnect(udc->gadget);  	udc->driver->unbind(udc->gadget); -	usb_gadget_udc_stop(udc->gadget, udc->driver); +	usb_gadget_udc_stop(udc->gadget, NULL);  	udc->driver = NULL;  	udc->dev.driver = NULL; diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c index b416a3fc995..416a6dce5e1 100644 --- a/drivers/usb/host/ehci-hcd.c +++ b/drivers/usb/host/ehci-hcd.c @@ -302,6 +302,7 @@ static void ehci_quiesce (struct ehci_hcd *ehci)  static void end_unlink_async(struct ehci_hcd *ehci);  static void unlink_empty_async(struct ehci_hcd *ehci); +static void unlink_empty_async_suspended(struct ehci_hcd *ehci);  static void ehci_work(struct ehci_hcd *ehci);  static void start_unlink_intr(struct ehci_hcd *ehci, struct ehci_qh *qh);  static void end_unlink_intr(struct ehci_hcd *ehci, struct ehci_qh *qh); @@ -748,11 +749,9 @@ static irqreturn_t ehci_irq (struct usb_hcd *hcd)  		/* guard against (alleged) silicon errata */  		if (cmd & CMD_IAAD)  			ehci_dbg(ehci, "IAA with IAAD still set?\n"); -		if (ehci->async_iaa) { +		if (ehci->async_iaa)  			COUNT(ehci->stats.iaa); -			end_unlink_async(ehci); -		} else -			ehci_dbg(ehci, "IAA with nothing unlinked?\n"); +		end_unlink_async(ehci);  	}  	/* remote wakeup [4.3.1] */ diff --git a/drivers/usb/host/ehci-hub.c b/drivers/usb/host/ehci-hub.c index 4d3b294f203..7d06e77f6c4 100644 --- a/drivers/usb/host/ehci-hub.c +++ b/drivers/usb/host/ehci-hub.c @@ -328,7 +328,7 @@ static int ehci_bus_suspend (struct usb_hcd *hcd)  	ehci->rh_state = EHCI_RH_SUSPENDED;  	end_unlink_async(ehci); -	unlink_empty_async(ehci); +	unlink_empty_async_suspended(ehci);  	ehci_handle_intr_unlinks(ehci);  	end_free_itds(ehci); diff --git a/drivers/usb/host/ehci-q.c b/drivers/usb/host/ehci-q.c index fd252f0cfb3..23d13690428 100644 --- a/drivers/usb/host/ehci-q.c +++ b/drivers/usb/host/ehci-q.c @@ -135,7 +135,7 @@ qh_refresh (struct ehci_hcd *ehci, struct ehci_qh *qh)  		 * qtd is updated in qh_completions(). Update the QH  		 * overlay here.  		 */ -		if (cpu_to_hc32(ehci, qtd->qtd_dma) == qh->hw->hw_current) { +		if (qh->hw->hw_token & ACTIVE_BIT(ehci)) {  			qh->hw->hw_qtd_next = qtd->hw_next;  			qtd = NULL;  		} @@ -449,11 +449,19 @@ qh_completions (struct ehci_hcd *ehci, struct ehci_qh *qh)  			else if (last_status == -EINPROGRESS && !urb->unlinked)  				continue; -			/* qh unlinked; token in overlay may be most current */ -			if (state == QH_STATE_IDLE -					&& cpu_to_hc32(ehci, qtd->qtd_dma) -						== hw->hw_current) { +			/* +			 * If this was the active qtd when the qh was unlinked +			 * and the overlay's token is active, then the overlay +			 * hasn't been written back to the qtd yet so use its +			 * token instead of the qtd's.  After the qtd is +			 * processed and removed, the overlay won't be valid +			 * any more. +			 */ +			if (state == QH_STATE_IDLE && +					qh->qtd_list.next == &qtd->qtd_list && +					(hw->hw_token & ACTIVE_BIT(ehci))) {  				token = hc32_to_cpu(ehci, hw->hw_token); +				hw->hw_token &= ~ACTIVE_BIT(ehci);  				/* An unlink may leave an incomplete  				 * async transaction in the TT buffer. @@ -1170,7 +1178,7 @@ static void single_unlink_async(struct ehci_hcd *ehci, struct ehci_qh *qh)  	struct ehci_qh		*prev;  	/* Add to the end of the list of QHs waiting for the next IAAD */ -	qh->qh_state = QH_STATE_UNLINK; +	qh->qh_state = QH_STATE_UNLINK_WAIT;  	if (ehci->async_unlink)  		ehci->async_unlink_last->unlink_next = qh;  	else @@ -1213,9 +1221,19 @@ static void start_iaa_cycle(struct ehci_hcd *ehci, bool nested)  		/* Do only the first waiting QH (nVidia bug?) */  		qh = ehci->async_unlink; -		ehci->async_iaa = qh; -		ehci->async_unlink = qh->unlink_next; -		qh->unlink_next = NULL; + +		/* +		 * Intel (?) bug: The HC can write back the overlay region +		 * even after the IAA interrupt occurs.  In self-defense, +		 * always go through two IAA cycles for each QH. +		 */ +		if (qh->qh_state == QH_STATE_UNLINK_WAIT) { +			qh->qh_state = QH_STATE_UNLINK; +		} else { +			ehci->async_iaa = qh; +			ehci->async_unlink = qh->unlink_next; +			qh->unlink_next = NULL; +		}  		/* Make sure the unlinks are all visible to the hardware */  		wmb(); @@ -1298,6 +1316,19 @@ static void unlink_empty_async(struct ehci_hcd *ehci)  	}  } +/* The root hub is suspended; unlink all the async QHs */ +static void unlink_empty_async_suspended(struct ehci_hcd *ehci) +{ +	struct ehci_qh		*qh; + +	while (ehci->async->qh_next.qh) { +		qh = ehci->async->qh_next.qh; +		WARN_ON(!list_empty(&qh->qtd_list)); +		single_unlink_async(ehci, qh); +	} +	start_iaa_cycle(ehci, false); +} +  /* makes sure the async qh will become idle */  /* caller must own ehci->lock */ diff --git a/drivers/usb/host/ehci-timer.c b/drivers/usb/host/ehci-timer.c index 20dbdcbe9b0..c3fa1305f83 100644 --- a/drivers/usb/host/ehci-timer.c +++ b/drivers/usb/host/ehci-timer.c @@ -304,7 +304,7 @@ static void ehci_iaa_watchdog(struct ehci_hcd *ehci)  	 * (a) SMP races against real IAA firing and retriggering, and  	 * (b) clean HC shutdown, when IAA watchdog was pending.  	 */ -	if (ehci->async_iaa) { +	if (1) {  		u32 cmd, status;  		/* If we get here, IAA is *REALLY* late.  It's barely diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c index f1f01a834ba..849470b1883 100644 --- a/drivers/usb/host/xhci.c +++ b/drivers/usb/host/xhci.c @@ -350,7 +350,7 @@ static int xhci_try_enable_msi(struct usb_hcd *hcd)  	 * generate interrupts.  Don't even try to enable MSI.  	 */  	if (xhci->quirks & XHCI_BROKEN_MSI) -		return 0; +		goto legacy_irq;  	/* unregister the legacy interrupt */  	if (hcd->irq) @@ -371,6 +371,7 @@ static int xhci_try_enable_msi(struct usb_hcd *hcd)  		return -EINVAL;  	} + legacy_irq:  	/* fall back to legacy interrupt*/  	ret = request_irq(pdev->irq, &usb_hcd_irq, IRQF_SHARED,  			hcd->irq_descr, hcd); diff --git a/drivers/usb/host/xhci.h b/drivers/usb/host/xhci.h index f791bd0aee6..2c510e4a7d4 100644 --- a/drivers/usb/host/xhci.h +++ b/drivers/usb/host/xhci.h @@ -206,8 +206,8 @@ struct xhci_op_regs {  /* bits 12:31 are reserved (and should be preserved on writes). */  /* IMAN - Interrupt Management Register */ -#define IMAN_IP		(1 << 1) -#define IMAN_IE		(1 << 0) +#define IMAN_IE		(1 << 1) +#define IMAN_IP		(1 << 0)  /* USBSTS - USB status - status bitmasks */  /* HC not running - set to 1 when run/stop bit is cleared. */ diff --git a/drivers/usb/musb/Kconfig b/drivers/usb/musb/Kconfig index 45b19e2c60b..05e51432dd2 100644 --- a/drivers/usb/musb/Kconfig +++ b/drivers/usb/musb/Kconfig @@ -7,11 +7,6 @@  config USB_MUSB_HDRC  	tristate 'Inventra Highspeed Dual Role Controller (TI, ADI, ...)'  	depends on USB && USB_GADGET -	select NOP_USB_XCEIV if (ARCH_DAVINCI || MACH_OMAP3EVM || BLACKFIN) -	select NOP_USB_XCEIV if (SOC_TI81XX || SOC_AM33XX) -	select TWL4030_USB if MACH_OMAP_3430SDP -	select TWL6030_USB if MACH_OMAP_4430SDP || MACH_OMAP4_PANDA -	select OMAP_CONTROL_USB if MACH_OMAP_4430SDP || MACH_OMAP4_PANDA  	select USB_OTG_UTILS  	help  	  Say Y here if your system has a dual role high speed USB diff --git a/drivers/usb/musb/da8xx.c b/drivers/usb/musb/da8xx.c index 7c71769d71f..41613a2b35e 100644 --- a/drivers/usb/musb/da8xx.c +++ b/drivers/usb/musb/da8xx.c @@ -327,7 +327,7 @@ static irqreturn_t da8xx_musb_interrupt(int irq, void *hci)  		u8 devctl = musb_readb(mregs, MUSB_DEVCTL);  		int err; -		err = musb->int_usb & USB_INTR_VBUSERROR; +		err = musb->int_usb & MUSB_INTR_VBUSERROR;  		if (err) {  			/*  			 * The Mentor core doesn't debounce VBUS as needed diff --git a/drivers/usb/musb/musb_core.c b/drivers/usb/musb/musb_core.c index 60b41cc28da..daec6e0f7e3 100644 --- a/drivers/usb/musb/musb_core.c +++ b/drivers/usb/musb/musb_core.c @@ -1624,8 +1624,6 @@ EXPORT_SYMBOL_GPL(musb_dma_completion);  /*-------------------------------------------------------------------------*/ -#ifdef CONFIG_SYSFS -  static ssize_t  musb_mode_show(struct device *dev, struct device_attribute *attr, char *buf)  { @@ -1742,8 +1740,6 @@ static const struct attribute_group musb_attr_group = {  	.attrs = musb_attributes,  }; -#endif	/* sysfs */ -  /* Only used to provide driver mode change events */  static void musb_irq_work(struct work_struct *data)  { @@ -1968,11 +1964,9 @@ musb_init_controller(struct device *dev, int nIrq, void __iomem *ctrl)  	if (status < 0)  		goto fail4; -#ifdef CONFIG_SYSFS  	status = sysfs_create_group(&musb->controller->kobj, &musb_attr_group);  	if (status)  		goto fail5; -#endif  	pm_runtime_put(musb->controller); diff --git a/drivers/usb/musb/musb_gadget.c b/drivers/usb/musb/musb_gadget.c index be18537c5f1..83eddedcd9b 100644 --- a/drivers/usb/musb/musb_gadget.c +++ b/drivers/usb/musb/musb_gadget.c @@ -141,7 +141,9 @@ static inline void map_dma_buffer(struct musb_request *request,  static inline void unmap_dma_buffer(struct musb_request *request,  				struct musb *musb)  { -	if (!is_buffer_mapped(request)) +	struct musb_ep *musb_ep = request->ep; + +	if (!is_buffer_mapped(request) || !musb_ep->dma)  		return;  	if (request->request.dma == DMA_ADDR_INVALID) { @@ -195,7 +197,10 @@ __acquires(ep->musb->lock)  	ep->busy = 1;  	spin_unlock(&musb->lock); -	unmap_dma_buffer(req, musb); + +	if (!dma_mapping_error(&musb->g.dev, request->dma)) +		unmap_dma_buffer(req, musb); +  	if (request->status == 0)  		dev_dbg(musb->controller, "%s done request %p,  %d/%d\n",  				ep->end_point.name, request, diff --git a/drivers/usb/musb/omap2430.c b/drivers/usb/musb/omap2430.c index 1762354fe79..1a42a458f2c 100644 --- a/drivers/usb/musb/omap2430.c +++ b/drivers/usb/musb/omap2430.c @@ -51,7 +51,7 @@ struct omap2430_glue {  };  #define glue_to_musb(g)		platform_get_drvdata(g->musb) -struct omap2430_glue		*_glue; +static struct omap2430_glue	*_glue;  static struct timer_list musb_idle_timer; @@ -237,9 +237,13 @@ void omap_musb_mailbox(enum omap_musb_vbus_id_status status)  {  	struct omap2430_glue	*glue = _glue; -	if (glue && glue_to_musb(glue)) { -		glue->status = status; -	} else { +	if (!glue) { +		pr_err("%s: musb core is not yet initialized\n", __func__); +		return; +	} +	glue->status = status; + +	if (!glue_to_musb(glue)) {  		pr_err("%s: musb core is not yet ready\n", __func__);  		return;  	} diff --git a/drivers/usb/otg/otg.c b/drivers/usb/otg/otg.c index e1814397ca3..2bd03d261a5 100644 --- a/drivers/usb/otg/otg.c +++ b/drivers/usb/otg/otg.c @@ -130,7 +130,7 @@ struct usb_phy *usb_get_phy(enum usb_phy_type type)  	spin_lock_irqsave(&phy_lock, flags);  	phy = __usb_find_phy(&phy_list, type); -	if (IS_ERR(phy)) { +	if (IS_ERR(phy) || !try_module_get(phy->dev->driver->owner)) {  		pr_err("unable to find transceiver of type %s\n",  			usb_phy_type_string(type));  		goto err0; @@ -228,7 +228,7 @@ struct usb_phy *usb_get_phy_dev(struct device *dev, u8 index)  	spin_lock_irqsave(&phy_lock, flags);  	phy = __usb_find_phy_dev(dev, &phy_bind_list, index); -	if (IS_ERR(phy)) { +	if (IS_ERR(phy) || !try_module_get(phy->dev->driver->owner)) {  		pr_err("unable to find transceiver\n");  		goto err0;  	} @@ -301,8 +301,12 @@ EXPORT_SYMBOL(devm_usb_put_phy);   */  void usb_put_phy(struct usb_phy *x)  { -	if (x) +	if (x) { +		struct module *owner = x->dev->driver->owner; +  		put_device(x->dev); +		module_put(owner); +	}  }  EXPORT_SYMBOL(usb_put_phy); diff --git a/drivers/usb/phy/omap-control-usb.c b/drivers/usb/phy/omap-control-usb.c index 5323b71c352..1419ceda975 100644 --- a/drivers/usb/phy/omap-control-usb.c +++ b/drivers/usb/phy/omap-control-usb.c @@ -219,32 +219,26 @@ static int omap_control_usb_probe(struct platform_device *pdev)  	res = platform_get_resource_byname(pdev, IORESOURCE_MEM,  		"control_dev_conf"); -	control_usb->dev_conf = devm_request_and_ioremap(&pdev->dev, res); -	if (!control_usb->dev_conf) { -		dev_err(&pdev->dev, "Failed to obtain io memory\n"); -		return -EADDRNOTAVAIL; -	} +	control_usb->dev_conf = devm_ioremap_resource(&pdev->dev, res); +	if (IS_ERR(control_usb->dev_conf)) +		return PTR_ERR(control_usb->dev_conf);  	if (control_usb->type == OMAP_CTRL_DEV_TYPE1) {  		res = platform_get_resource_byname(pdev, IORESOURCE_MEM,  			"otghs_control"); -		control_usb->otghs_control = devm_request_and_ioremap( +		control_usb->otghs_control = devm_ioremap_resource(  			&pdev->dev, res); -		if (!control_usb->otghs_control) { -			dev_err(&pdev->dev, "Failed to obtain io memory\n"); -			return -EADDRNOTAVAIL; -		} +		if (IS_ERR(control_usb->otghs_control)) +			return PTR_ERR(control_usb->otghs_control);  	}  	if (control_usb->type == OMAP_CTRL_DEV_TYPE2) {  		res = platform_get_resource_byname(pdev, IORESOURCE_MEM,  			"phy_power_usb"); -		control_usb->phy_power = devm_request_and_ioremap( +		control_usb->phy_power = devm_ioremap_resource(  			&pdev->dev, res); -		if (!control_usb->phy_power) { -			dev_dbg(&pdev->dev, "Failed to obtain io memory\n"); -			return -EADDRNOTAVAIL; -		} +		if (IS_ERR(control_usb->phy_power)) +			return PTR_ERR(control_usb->phy_power);  		control_usb->sys_clk = devm_clk_get(control_usb->dev,  			"sys_clkin"); diff --git a/drivers/usb/phy/omap-usb3.c b/drivers/usb/phy/omap-usb3.c index fadc0c2b65b..a6e60b1e102 100644 --- a/drivers/usb/phy/omap-usb3.c +++ b/drivers/usb/phy/omap-usb3.c @@ -212,11 +212,9 @@ static int omap_usb3_probe(struct platform_device *pdev)  	}  	res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "pll_ctrl"); -	phy->pll_ctrl_base = devm_request_and_ioremap(&pdev->dev, res); -	if (!phy->pll_ctrl_base) { -		dev_err(&pdev->dev, "ioremap of pll_ctrl failed\n"); -		return -ENOMEM; -	} +	phy->pll_ctrl_base = devm_ioremap_resource(&pdev->dev, res); +	if (IS_ERR(phy->pll_ctrl_base)) +		return PTR_ERR(phy->pll_ctrl_base);  	phy->dev		= &pdev->dev; diff --git a/drivers/usb/phy/samsung-usbphy.c b/drivers/usb/phy/samsung-usbphy.c index 6ea55373383..967101ec15f 100644 --- a/drivers/usb/phy/samsung-usbphy.c +++ b/drivers/usb/phy/samsung-usbphy.c @@ -787,11 +787,9 @@ static int samsung_usbphy_probe(struct platform_device *pdev)  		return -ENODEV;  	} -	phy_base = devm_request_and_ioremap(dev, phy_mem); -	if (!phy_base) { -		dev_err(dev, "%s: register mapping failed\n", __func__); -		return -ENXIO; -	} +	phy_base = devm_ioremap_resource(dev, phy_mem); +	if (IS_ERR(phy_base)) +		return PTR_ERR(phy_base);  	sphy = devm_kzalloc(dev, sizeof(*sphy), GFP_KERNEL);  	if (!sphy) diff --git a/drivers/usb/serial/ark3116.c b/drivers/usb/serial/ark3116.c index cbd904b8fba..4775f8209e5 100644 --- a/drivers/usb/serial/ark3116.c +++ b/drivers/usb/serial/ark3116.c @@ -62,7 +62,6 @@ static int is_irda(struct usb_serial *serial)  }  struct ark3116_private { -	wait_queue_head_t       delta_msr_wait;  	struct async_icount	icount;  	int			irda;	/* 1 for irda device */ @@ -146,7 +145,6 @@ static int ark3116_port_probe(struct usb_serial_port *port)  	if (!priv)  		return -ENOMEM; -	init_waitqueue_head(&priv->delta_msr_wait);  	mutex_init(&priv->hw_lock);  	spin_lock_init(&priv->status_lock); @@ -456,10 +454,14 @@ static int ark3116_ioctl(struct tty_struct *tty,  	case TIOCMIWAIT:  		for (;;) {  			struct async_icount prev = priv->icount; -			interruptible_sleep_on(&priv->delta_msr_wait); +			interruptible_sleep_on(&port->delta_msr_wait);  			/* see if a signal did it */  			if (signal_pending(current))  				return -ERESTARTSYS; + +			if (port->serial->disconnected) +				return -EIO; +  			if ((prev.rng == priv->icount.rng) &&  			    (prev.dsr == priv->icount.dsr) &&  			    (prev.dcd == priv->icount.dcd) && @@ -580,7 +582,7 @@ static void ark3116_update_msr(struct usb_serial_port *port, __u8 msr)  			priv->icount.dcd++;  		if (msr & UART_MSR_TERI)  			priv->icount.rng++; -		wake_up_interruptible(&priv->delta_msr_wait); +		wake_up_interruptible(&port->delta_msr_wait);  	}  } diff --git a/drivers/usb/serial/ch341.c b/drivers/usb/serial/ch341.c index d255f66e708..07d4650a32a 100644 --- a/drivers/usb/serial/ch341.c +++ b/drivers/usb/serial/ch341.c @@ -80,7 +80,6 @@ MODULE_DEVICE_TABLE(usb, id_table);  struct ch341_private {  	spinlock_t lock; /* access lock */ -	wait_queue_head_t delta_msr_wait; /* wait queue for modem status */  	unsigned baud_rate; /* set baud rate */  	u8 line_control; /* set line control value RTS/DTR */  	u8 line_status; /* active status of modem control inputs */ @@ -252,7 +251,6 @@ static int ch341_port_probe(struct usb_serial_port *port)  		return -ENOMEM;  	spin_lock_init(&priv->lock); -	init_waitqueue_head(&priv->delta_msr_wait);  	priv->baud_rate = DEFAULT_BAUD_RATE;  	priv->line_control = CH341_BIT_RTS | CH341_BIT_DTR; @@ -298,7 +296,7 @@ static void ch341_dtr_rts(struct usb_serial_port *port, int on)  		priv->line_control &= ~(CH341_BIT_RTS | CH341_BIT_DTR);  	spin_unlock_irqrestore(&priv->lock, flags);  	ch341_set_handshake(port->serial->dev, priv->line_control); -	wake_up_interruptible(&priv->delta_msr_wait); +	wake_up_interruptible(&port->delta_msr_wait);  }  static void ch341_close(struct usb_serial_port *port) @@ -491,7 +489,7 @@ static void ch341_read_int_callback(struct urb *urb)  			tty_kref_put(tty);  		} -		wake_up_interruptible(&priv->delta_msr_wait); +		wake_up_interruptible(&port->delta_msr_wait);  	}  exit: @@ -517,11 +515,14 @@ static int wait_modem_info(struct usb_serial_port *port, unsigned int arg)  	spin_unlock_irqrestore(&priv->lock, flags);  	while (!multi_change) { -		interruptible_sleep_on(&priv->delta_msr_wait); +		interruptible_sleep_on(&port->delta_msr_wait);  		/* see if a signal did it */  		if (signal_pending(current))  			return -ERESTARTSYS; +		if (port->serial->disconnected) +			return -EIO; +  		spin_lock_irqsave(&priv->lock, flags);  		status = priv->line_status;  		multi_change = priv->multi_status_change; diff --git a/drivers/usb/serial/cp210x.c b/drivers/usb/serial/cp210x.c index edc0f0dcad8..4747d1c328f 100644 --- a/drivers/usb/serial/cp210x.c +++ b/drivers/usb/serial/cp210x.c @@ -85,6 +85,7 @@ static const struct usb_device_id id_table[] = {  	{ USB_DEVICE(0x10C4, 0x813F) }, /* Tams Master Easy Control */  	{ USB_DEVICE(0x10C4, 0x814A) }, /* West Mountain Radio RIGblaster P&P */  	{ USB_DEVICE(0x10C4, 0x814B) }, /* West Mountain Radio RIGtalk */ +	{ USB_DEVICE(0x2405, 0x0003) }, /* West Mountain Radio RIGblaster Advantage */  	{ USB_DEVICE(0x10C4, 0x8156) }, /* B&G H3000 link cable */  	{ USB_DEVICE(0x10C4, 0x815E) }, /* Helicomm IP-Link 1220-DVM */  	{ USB_DEVICE(0x10C4, 0x815F) }, /* Timewave HamLinkUSB */ @@ -150,6 +151,25 @@ static const struct usb_device_id id_table[] = {  	{ USB_DEVICE(0x1BE3, 0x07A6) }, /* WAGO 750-923 USB Service Cable */  	{ USB_DEVICE(0x1E29, 0x0102) }, /* Festo CPX-USB */  	{ USB_DEVICE(0x1E29, 0x0501) }, /* Festo CMSP */ +	{ USB_DEVICE(0x1FB9, 0x0100) }, /* Lake Shore Model 121 Current Source */ +	{ USB_DEVICE(0x1FB9, 0x0200) }, /* Lake Shore Model 218A Temperature Monitor */ +	{ USB_DEVICE(0x1FB9, 0x0201) }, /* Lake Shore Model 219 Temperature Monitor */ +	{ USB_DEVICE(0x1FB9, 0x0202) }, /* Lake Shore Model 233 Temperature Transmitter */ +	{ USB_DEVICE(0x1FB9, 0x0203) }, /* Lake Shore Model 235 Temperature Transmitter */ +	{ USB_DEVICE(0x1FB9, 0x0300) }, /* Lake Shore Model 335 Temperature Controller */ +	{ USB_DEVICE(0x1FB9, 0x0301) }, /* Lake Shore Model 336 Temperature Controller */ +	{ USB_DEVICE(0x1FB9, 0x0302) }, /* Lake Shore Model 350 Temperature Controller */ +	{ USB_DEVICE(0x1FB9, 0x0303) }, /* Lake Shore Model 371 AC Bridge */ +	{ USB_DEVICE(0x1FB9, 0x0400) }, /* Lake Shore Model 411 Handheld Gaussmeter */ +	{ USB_DEVICE(0x1FB9, 0x0401) }, /* Lake Shore Model 425 Gaussmeter */ +	{ USB_DEVICE(0x1FB9, 0x0402) }, /* Lake Shore Model 455A Gaussmeter */ +	{ USB_DEVICE(0x1FB9, 0x0403) }, /* Lake Shore Model 475A Gaussmeter */ +	{ USB_DEVICE(0x1FB9, 0x0404) }, /* Lake Shore Model 465 Three Axis Gaussmeter */ +	{ USB_DEVICE(0x1FB9, 0x0600) }, /* Lake Shore Model 625A Superconducting MPS */ +	{ USB_DEVICE(0x1FB9, 0x0601) }, /* Lake Shore Model 642A Magnet Power Supply */ +	{ USB_DEVICE(0x1FB9, 0x0602) }, /* Lake Shore Model 648 Magnet Power Supply */ +	{ USB_DEVICE(0x1FB9, 0x0700) }, /* Lake Shore Model 737 VSM Controller */ +	{ USB_DEVICE(0x1FB9, 0x0701) }, /* Lake Shore Model 776 Hall Matrix */  	{ USB_DEVICE(0x3195, 0xF190) }, /* Link Instruments MSO-19 */  	{ USB_DEVICE(0x3195, 0xF280) }, /* Link Instruments MSO-28 */  	{ USB_DEVICE(0x3195, 0xF281) }, /* Link Instruments MSO-28 */ diff --git a/drivers/usb/serial/cypress_m8.c b/drivers/usb/serial/cypress_m8.c index 8efa19d0e9f..ba7352e4187 100644 --- a/drivers/usb/serial/cypress_m8.c +++ b/drivers/usb/serial/cypress_m8.c @@ -111,7 +111,6 @@ struct cypress_private {  	int baud_rate;			   /* stores current baud rate in  					      integer form */  	int isthrottled;		   /* if throttled, discard reads */ -	wait_queue_head_t delta_msr_wait;  /* used for TIOCMIWAIT */  	char prev_status, diff_status;	   /* used for TIOCMIWAIT */  	/* we pass a pointer to this as the argument sent to  	   cypress_set_termios old_termios */ @@ -449,7 +448,6 @@ static int cypress_generic_port_probe(struct usb_serial_port *port)  		kfree(priv);  		return -ENOMEM;  	} -	init_waitqueue_head(&priv->delta_msr_wait);  	usb_reset_configuration(serial->dev); @@ -868,12 +866,16 @@ static int cypress_ioctl(struct tty_struct *tty,  	switch (cmd) {  	/* This code comes from drivers/char/serial.c and ftdi_sio.c */  	case TIOCMIWAIT: -		while (priv != NULL) { -			interruptible_sleep_on(&priv->delta_msr_wait); +		for (;;) { +			interruptible_sleep_on(&port->delta_msr_wait);  			/* see if a signal did it */  			if (signal_pending(current))  				return -ERESTARTSYS; -			else { + +			if (port->serial->disconnected) +				return -EIO; + +			{  				char diff = priv->diff_status;  				if (diff == 0)  					return -EIO; /* no change => error */ @@ -1187,7 +1189,7 @@ static void cypress_read_int_callback(struct urb *urb)  	if (priv->current_status != priv->prev_status) {  		priv->diff_status |= priv->current_status ^  			priv->prev_status; -		wake_up_interruptible(&priv->delta_msr_wait); +		wake_up_interruptible(&port->delta_msr_wait);  		priv->prev_status = priv->current_status;  	}  	spin_unlock_irqrestore(&priv->lock, flags); diff --git a/drivers/usb/serial/f81232.c b/drivers/usb/serial/f81232.c index b1b2dc64b50..a172ad5c5ce 100644 --- a/drivers/usb/serial/f81232.c +++ b/drivers/usb/serial/f81232.c @@ -47,7 +47,6 @@ MODULE_DEVICE_TABLE(usb, id_table);  struct f81232_private {  	spinlock_t lock; -	wait_queue_head_t delta_msr_wait;  	u8 line_control;  	u8 line_status;  }; @@ -111,7 +110,7 @@ static void f81232_process_read_urb(struct urb *urb)  	line_status = priv->line_status;  	priv->line_status &= ~UART_STATE_TRANSIENT_MASK;  	spin_unlock_irqrestore(&priv->lock, flags); -	wake_up_interruptible(&priv->delta_msr_wait); +	wake_up_interruptible(&port->delta_msr_wait);  	if (!urb->actual_length)  		return; @@ -256,11 +255,14 @@ static int wait_modem_info(struct usb_serial_port *port, unsigned int arg)  	spin_unlock_irqrestore(&priv->lock, flags);  	while (1) { -		interruptible_sleep_on(&priv->delta_msr_wait); +		interruptible_sleep_on(&port->delta_msr_wait);  		/* see if a signal did it */  		if (signal_pending(current))  			return -ERESTARTSYS; +		if (port->serial->disconnected) +			return -EIO; +  		spin_lock_irqsave(&priv->lock, flags);  		status = priv->line_status;  		spin_unlock_irqrestore(&priv->lock, flags); @@ -322,7 +324,6 @@ static int f81232_port_probe(struct usb_serial_port *port)  		return -ENOMEM;  	spin_lock_init(&priv->lock); -	init_waitqueue_head(&priv->delta_msr_wait);  	usb_set_serial_port_data(port, priv); diff --git a/drivers/usb/serial/ftdi_sio.c b/drivers/usb/serial/ftdi_sio.c index edd162df49c..d4809d55147 100644 --- a/drivers/usb/serial/ftdi_sio.c +++ b/drivers/usb/serial/ftdi_sio.c @@ -69,9 +69,7 @@ struct ftdi_private {  	int flags;		/* some ASYNC_xxxx flags are supported */  	unsigned long last_dtr_rts;	/* saved modem control outputs */  	struct async_icount	icount; -	wait_queue_head_t delta_msr_wait; /* Used for TIOCMIWAIT */  	char prev_status;        /* Used for TIOCMIWAIT */ -	bool dev_gone;        /* Used to abort TIOCMIWAIT */  	char transmit_empty;	/* If transmitter is empty or not */  	__u16 interface;	/* FT2232C, FT2232H or FT4232H port interface  				   (0 for FT232/245) */ @@ -1691,10 +1689,8 @@ static int ftdi_sio_port_probe(struct usb_serial_port *port)  	kref_init(&priv->kref);  	mutex_init(&priv->cfg_lock); -	init_waitqueue_head(&priv->delta_msr_wait);  	priv->flags = ASYNC_LOW_LATENCY; -	priv->dev_gone = false;  	if (quirk && quirk->port_probe)  		quirk->port_probe(priv); @@ -1840,8 +1836,7 @@ static int ftdi_sio_port_remove(struct usb_serial_port *port)  {  	struct ftdi_private *priv = usb_get_serial_port_data(port); -	priv->dev_gone = true; -	wake_up_interruptible_all(&priv->delta_msr_wait); +	wake_up_interruptible(&port->delta_msr_wait);  	remove_sysfs_attrs(port); @@ -1989,7 +1984,7 @@ static int ftdi_process_packet(struct usb_serial_port *port,  		if (diff_status & FTDI_RS0_RLSD)  			priv->icount.dcd++; -		wake_up_interruptible_all(&priv->delta_msr_wait); +		wake_up_interruptible(&port->delta_msr_wait);  		priv->prev_status = status;  	} @@ -2440,11 +2435,15 @@ static int ftdi_ioctl(struct tty_struct *tty,  	 */  	case TIOCMIWAIT:  		cprev = priv->icount; -		while (!priv->dev_gone) { -			interruptible_sleep_on(&priv->delta_msr_wait); +		for (;;) { +			interruptible_sleep_on(&port->delta_msr_wait);  			/* see if a signal did it */  			if (signal_pending(current))  				return -ERESTARTSYS; + +			if (port->serial->disconnected) +				return -EIO; +  			cnow = priv->icount;  			if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||  			    ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) || @@ -2454,8 +2453,6 @@ static int ftdi_ioctl(struct tty_struct *tty,  			}  			cprev = cnow;  		} -		return -EIO; -		break;  	case TIOCSERGETLSR:  		return get_lsr_info(port, (struct serial_struct __user *)arg);  		break; diff --git a/drivers/usb/serial/garmin_gps.c b/drivers/usb/serial/garmin_gps.c index 1a07b12ef34..81caf5623ee 100644 --- a/drivers/usb/serial/garmin_gps.c +++ b/drivers/usb/serial/garmin_gps.c @@ -956,10 +956,7 @@ static void garmin_close(struct usb_serial_port *port)  	if (!serial)  		return; -	mutex_lock(&port->serial->disc_mutex); - -	if (!port->serial->disconnected) -		garmin_clear(garmin_data_p); +	garmin_clear(garmin_data_p);  	/* shutdown our urbs */  	usb_kill_urb(port->read_urb); @@ -968,8 +965,6 @@ static void garmin_close(struct usb_serial_port *port)  	/* keep reset state so we know that we must start a new session */  	if (garmin_data_p->state != STATE_RESET)  		garmin_data_p->state = STATE_DISCONNECTED; - -	mutex_unlock(&port->serial->disc_mutex);  } diff --git a/drivers/usb/serial/io_edgeport.c b/drivers/usb/serial/io_edgeport.c index b00e5cbf741..efd8b978128 100644 --- a/drivers/usb/serial/io_edgeport.c +++ b/drivers/usb/serial/io_edgeport.c @@ -110,7 +110,6 @@ struct edgeport_port {  	wait_queue_head_t	wait_chase;		/* for handling sleeping while waiting for chase to finish */  	wait_queue_head_t	wait_open;		/* for handling sleeping while waiting for open to finish */  	wait_queue_head_t	wait_command;		/* for handling sleeping while waiting for command to finish */ -	wait_queue_head_t	delta_msr_wait;		/* for handling sleeping while waiting for msr change to happen */  	struct async_icount	icount;  	struct usb_serial_port	*port;			/* loop back to the owner of this object */ @@ -884,7 +883,6 @@ static int edge_open(struct tty_struct *tty, struct usb_serial_port *port)  	/* initialize our wait queues */  	init_waitqueue_head(&edge_port->wait_open);  	init_waitqueue_head(&edge_port->wait_chase); -	init_waitqueue_head(&edge_port->delta_msr_wait);  	init_waitqueue_head(&edge_port->wait_command);  	/* initialize our icount structure */ @@ -1669,13 +1667,17 @@ static int edge_ioctl(struct tty_struct *tty,  		dev_dbg(&port->dev, "%s (%d) TIOCMIWAIT\n", __func__,  port->number);  		cprev = edge_port->icount;  		while (1) { -			prepare_to_wait(&edge_port->delta_msr_wait, +			prepare_to_wait(&port->delta_msr_wait,  						&wait, TASK_INTERRUPTIBLE);  			schedule(); -			finish_wait(&edge_port->delta_msr_wait, &wait); +			finish_wait(&port->delta_msr_wait, &wait);  			/* see if a signal did it */  			if (signal_pending(current))  				return -ERESTARTSYS; + +			if (port->serial->disconnected) +				return -EIO; +  			cnow = edge_port->icount;  			if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&  			    cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) @@ -2051,7 +2053,7 @@ static void handle_new_msr(struct edgeport_port *edge_port, __u8 newMsr)  			icount->dcd++;  		if (newMsr & EDGEPORT_MSR_DELTA_RI)  			icount->rng++; -		wake_up_interruptible(&edge_port->delta_msr_wait); +		wake_up_interruptible(&edge_port->port->delta_msr_wait);  	}  	/* Save the new modem status */ diff --git a/drivers/usb/serial/io_ti.c b/drivers/usb/serial/io_ti.c index c23776679f7..7777172206d 100644 --- a/drivers/usb/serial/io_ti.c +++ b/drivers/usb/serial/io_ti.c @@ -87,9 +87,6 @@ struct edgeport_port {  	int close_pending;  	int lsr_event;  	struct async_icount	icount; -	wait_queue_head_t	delta_msr_wait;	/* for handling sleeping while -						   waiting for msr change to -						   happen */  	struct edgeport_serial	*edge_serial;  	struct usb_serial_port	*port;  	__u8 bUartMode;		/* Port type, 0: RS232, etc. */ @@ -1459,7 +1456,7 @@ static void handle_new_msr(struct edgeport_port *edge_port, __u8 msr)  			icount->dcd++;  		if (msr & EDGEPORT_MSR_DELTA_RI)  			icount->rng++; -		wake_up_interruptible(&edge_port->delta_msr_wait); +		wake_up_interruptible(&edge_port->port->delta_msr_wait);  	}  	/* Save the new modem status */ @@ -1754,7 +1751,6 @@ static int edge_open(struct tty_struct *tty, struct usb_serial_port *port)  	dev = port->serial->dev;  	memset(&(edge_port->icount), 0x00, sizeof(edge_port->icount)); -	init_waitqueue_head(&edge_port->delta_msr_wait);  	/* turn off loopback */  	status = ti_do_config(edge_port, UMPC_SET_CLR_LOOPBACK, 0); @@ -2434,10 +2430,14 @@ static int edge_ioctl(struct tty_struct *tty,  		dev_dbg(&port->dev, "%s - TIOCMIWAIT\n", __func__);  		cprev = edge_port->icount;  		while (1) { -			interruptible_sleep_on(&edge_port->delta_msr_wait); +			interruptible_sleep_on(&port->delta_msr_wait);  			/* see if a signal did it */  			if (signal_pending(current))  				return -ERESTARTSYS; + +			if (port->serial->disconnected) +				return -EIO; +  			cnow = edge_port->icount;  			if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&  			    cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) @@ -2649,6 +2649,7 @@ static struct usb_serial_driver edgeport_2port_device = {  	.set_termios		= edge_set_termios,  	.tiocmget		= edge_tiocmget,  	.tiocmset		= edge_tiocmset, +	.get_icount		= edge_get_icount,  	.write			= edge_write,  	.write_room		= edge_write_room,  	.chars_in_buffer	= edge_chars_in_buffer, diff --git a/drivers/usb/serial/mct_u232.c b/drivers/usb/serial/mct_u232.c index a64d420f687..06d5a60be2c 100644 --- a/drivers/usb/serial/mct_u232.c +++ b/drivers/usb/serial/mct_u232.c @@ -114,8 +114,6 @@ struct mct_u232_private {  	unsigned char	     last_msr;      /* Modem Status Register */  	unsigned int	     rx_flags;      /* Throttling flags */  	struct async_icount  icount; -	wait_queue_head_t    msr_wait;	/* for handling sleeping while waiting -						for msr change to happen */  };  #define THROTTLED		0x01 @@ -409,7 +407,6 @@ static int mct_u232_port_probe(struct usb_serial_port *port)  		return -ENOMEM;  	spin_lock_init(&priv->lock); -	init_waitqueue_head(&priv->msr_wait);  	usb_set_serial_port_data(port, priv); @@ -601,7 +598,7 @@ static void mct_u232_read_int_callback(struct urb *urb)  		tty_kref_put(tty);  	}  #endif -	wake_up_interruptible(&priv->msr_wait); +	wake_up_interruptible(&port->delta_msr_wait);  	spin_unlock_irqrestore(&priv->lock, flags);  exit:  	retval = usb_submit_urb(urb, GFP_ATOMIC); @@ -810,13 +807,17 @@ static int  mct_u232_ioctl(struct tty_struct *tty,  		cprev = mct_u232_port->icount;  		spin_unlock_irqrestore(&mct_u232_port->lock, flags);  		for ( ; ; ) { -			prepare_to_wait(&mct_u232_port->msr_wait, +			prepare_to_wait(&port->delta_msr_wait,  					&wait, TASK_INTERRUPTIBLE);  			schedule(); -			finish_wait(&mct_u232_port->msr_wait, &wait); +			finish_wait(&port->delta_msr_wait, &wait);  			/* see if a signal did it */  			if (signal_pending(current))  				return -ERESTARTSYS; + +			if (port->serial->disconnected) +				return -EIO; +  			spin_lock_irqsave(&mct_u232_port->lock, flags);  			cnow = mct_u232_port->icount;  			spin_unlock_irqrestore(&mct_u232_port->lock, flags); diff --git a/drivers/usb/serial/mos7840.c b/drivers/usb/serial/mos7840.c index 809fb329eca..b8051fa6191 100644 --- a/drivers/usb/serial/mos7840.c +++ b/drivers/usb/serial/mos7840.c @@ -219,7 +219,6 @@ struct moschip_port {  	char open;  	char open_ports;  	wait_queue_head_t wait_chase;	/* for handling sleeping while waiting for chase to finish */ -	wait_queue_head_t delta_msr_wait;	/* for handling sleeping while waiting for msr change to happen */  	int delta_msr_cond;  	struct async_icount icount;  	struct usb_serial_port *port;	/* loop back to the owner of this object */ @@ -423,6 +422,9 @@ static void mos7840_handle_new_msr(struct moschip_port *port, __u8 new_msr)  			icount->rng++;  			smp_wmb();  		} + +		mos7840_port->delta_msr_cond = 1; +		wake_up_interruptible(&port->port->delta_msr_wait);  	}  } @@ -1127,7 +1129,6 @@ static int mos7840_open(struct tty_struct *tty, struct usb_serial_port *port)  	/* initialize our wait queues */  	init_waitqueue_head(&mos7840_port->wait_chase); -	init_waitqueue_head(&mos7840_port->delta_msr_wait);  	/* initialize our icount structure */  	memset(&(mos7840_port->icount), 0x00, sizeof(mos7840_port->icount)); @@ -2017,8 +2018,6 @@ static void mos7840_change_port_settings(struct tty_struct *tty,  			mos7840_port->read_urb_busy = false;  		}  	} -	wake_up(&mos7840_port->delta_msr_wait); -	mos7840_port->delta_msr_cond = 1;  	dev_dbg(&port->dev, "%s - mos7840_port->shadowLCR is End %x\n", __func__,  		mos7840_port->shadowLCR);  } @@ -2219,13 +2218,18 @@ static int mos7840_ioctl(struct tty_struct *tty,  		while (1) {  			/* interruptible_sleep_on(&mos7840_port->delta_msr_wait); */  			mos7840_port->delta_msr_cond = 0; -			wait_event_interruptible(mos7840_port->delta_msr_wait, -						 (mos7840_port-> +			wait_event_interruptible(port->delta_msr_wait, +						 (port->serial->disconnected || +						  mos7840_port->  						  delta_msr_cond == 1));  			/* see if a signal did it */  			if (signal_pending(current))  				return -ERESTARTSYS; + +			if (port->serial->disconnected) +				return -EIO; +  			cnow = mos7840_port->icount;  			smp_rmb();  			if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr && diff --git a/drivers/usb/serial/option.c b/drivers/usb/serial/option.c index f7d339d8187..558adfc0500 100644 --- a/drivers/usb/serial/option.c +++ b/drivers/usb/serial/option.c @@ -341,6 +341,8 @@ static void option_instat_callback(struct urb *urb);  #define CINTERION_PRODUCT_EU3_E			0x0051  #define CINTERION_PRODUCT_EU3_P			0x0052  #define CINTERION_PRODUCT_PH8			0x0053 +#define CINTERION_PRODUCT_AH6			0x0055 +#define CINTERION_PRODUCT_PLS8			0x0060  /* Olivetti products */  #define OLIVETTI_VENDOR_ID			0x0b3c @@ -579,6 +581,7 @@ static const struct usb_device_id option_ids[] = {  	{ USB_DEVICE(QUANTA_VENDOR_ID, 0xea42),  		.driver_info = (kernel_ulong_t)&net_intf4_blacklist },  	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, 0x1c05, USB_CLASS_COMM, 0x02, 0xff) }, +	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, 0x1c1f, USB_CLASS_COMM, 0x02, 0xff) },  	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, 0x1c23, USB_CLASS_COMM, 0x02, 0xff) },  	{ USB_DEVICE_AND_INTERFACE_INFO(HUAWEI_VENDOR_ID, HUAWEI_PRODUCT_E173, 0xff, 0xff, 0xff),  		.driver_info = (kernel_ulong_t) &net_intf1_blacklist }, @@ -1260,6 +1263,8 @@ static const struct usb_device_id option_ids[] = {  	{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_EU3_E) },  	{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_EU3_P) },  	{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_PH8) }, +	{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_AH6) }, +	{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_PLS8) },  	{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_HC28_MDM) },   	{ USB_DEVICE(CINTERION_VENDOR_ID, CINTERION_PRODUCT_HC28_MDMNET) },  	{ USB_DEVICE(SIEMENS_VENDOR_ID, CINTERION_PRODUCT_HC25_MDM) }, diff --git a/drivers/usb/serial/oti6858.c b/drivers/usb/serial/oti6858.c index a958fd41b5b..87c71ccfee8 100644 --- a/drivers/usb/serial/oti6858.c +++ b/drivers/usb/serial/oti6858.c @@ -188,7 +188,6 @@ struct oti6858_private {  	u8 setup_done;  	struct delayed_work delayed_setup_work; -	wait_queue_head_t intr_wait;  	struct usb_serial_port *port;   /* USB port with which associated */  }; @@ -339,7 +338,6 @@ static int oti6858_port_probe(struct usb_serial_port *port)  		return -ENOMEM;  	spin_lock_init(&priv->lock); -	init_waitqueue_head(&priv->intr_wait);  	priv->port = port;  	INIT_DELAYED_WORK(&priv->delayed_setup_work, setup_line);  	INIT_DELAYED_WORK(&priv->delayed_write_work, send_data); @@ -664,11 +662,15 @@ static int wait_modem_info(struct usb_serial_port *port, unsigned int arg)  	spin_unlock_irqrestore(&priv->lock, flags);  	while (1) { -		wait_event_interruptible(priv->intr_wait, +		wait_event_interruptible(port->delta_msr_wait, +					port->serial->disconnected ||  					priv->status.pin_state != prev);  		if (signal_pending(current))  			return -ERESTARTSYS; +		if (port->serial->disconnected) +			return -EIO; +  		spin_lock_irqsave(&priv->lock, flags);  		status = priv->status.pin_state & PIN_MASK;  		spin_unlock_irqrestore(&priv->lock, flags); @@ -763,7 +765,7 @@ static void oti6858_read_int_callback(struct urb *urb)  		if (!priv->transient) {  			if (xs->pin_state != priv->status.pin_state) -				wake_up_interruptible(&priv->intr_wait); +				wake_up_interruptible(&port->delta_msr_wait);  			memcpy(&priv->status, xs, OTI6858_CTRL_PKT_SIZE);  		} diff --git a/drivers/usb/serial/pl2303.c b/drivers/usb/serial/pl2303.c index 54adc9125e5..3b10018d89a 100644 --- a/drivers/usb/serial/pl2303.c +++ b/drivers/usb/serial/pl2303.c @@ -139,7 +139,6 @@ struct pl2303_serial_private {  struct pl2303_private {  	spinlock_t lock; -	wait_queue_head_t delta_msr_wait;  	u8 line_control;  	u8 line_status;  }; @@ -233,7 +232,6 @@ static int pl2303_port_probe(struct usb_serial_port *port)  		return -ENOMEM;  	spin_lock_init(&priv->lock); -	init_waitqueue_head(&priv->delta_msr_wait);  	usb_set_serial_port_data(port, priv); @@ -607,11 +605,14 @@ static int wait_modem_info(struct usb_serial_port *port, unsigned int arg)  	spin_unlock_irqrestore(&priv->lock, flags);  	while (1) { -		interruptible_sleep_on(&priv->delta_msr_wait); +		interruptible_sleep_on(&port->delta_msr_wait);  		/* see if a signal did it */  		if (signal_pending(current))  			return -ERESTARTSYS; +		if (port->serial->disconnected) +			return -EIO; +  		spin_lock_irqsave(&priv->lock, flags);  		status = priv->line_status;  		spin_unlock_irqrestore(&priv->lock, flags); @@ -719,7 +720,7 @@ static void pl2303_update_line_status(struct usb_serial_port *port,  	spin_unlock_irqrestore(&priv->lock, flags);  	if (priv->line_status & UART_BREAK_ERROR)  		usb_serial_handle_break(port); -	wake_up_interruptible(&priv->delta_msr_wait); +	wake_up_interruptible(&port->delta_msr_wait);  	tty = tty_port_tty_get(&port->port);  	if (!tty) @@ -783,7 +784,7 @@ static void pl2303_process_read_urb(struct urb *urb)  	line_status = priv->line_status;  	priv->line_status &= ~UART_STATE_TRANSIENT_MASK;  	spin_unlock_irqrestore(&priv->lock, flags); -	wake_up_interruptible(&priv->delta_msr_wait); +	wake_up_interruptible(&port->delta_msr_wait);  	if (!urb->actual_length)  		return; diff --git a/drivers/usb/serial/qcaux.c b/drivers/usb/serial/qcaux.c index 9b1b96f2d09..31f81c3c15e 100644 --- a/drivers/usb/serial/qcaux.c +++ b/drivers/usb/serial/qcaux.c @@ -69,6 +69,7 @@ static struct usb_device_id id_table[] = {  	{ USB_VENDOR_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, 0xff, 0xfd, 0xff) },  /* NMEA */  	{ USB_VENDOR_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, 0xff, 0xfe, 0xff) },  /* WMC */  	{ USB_VENDOR_AND_INTERFACE_INFO(UTSTARCOM_VENDOR_ID, 0xff, 0xff, 0xff) },  /* DIAG */ +	{ USB_DEVICE_AND_INTERFACE_INFO(0x1fac, 0x0151, 0xff, 0xff, 0xff) },  	{ },  };  MODULE_DEVICE_TABLE(usb, id_table); diff --git a/drivers/usb/serial/qcserial.c b/drivers/usb/serial/qcserial.c index 24662547dc5..59b32b78212 100644 --- a/drivers/usb/serial/qcserial.c +++ b/drivers/usb/serial/qcserial.c @@ -197,12 +197,15 @@ static int qcprobe(struct usb_serial *serial, const struct usb_device_id *id)  	if (is_gobi1k) {  		/* Gobi 1K USB layout: -		 * 0: serial port (doesn't respond) +		 * 0: DM/DIAG (use libqcdm from ModemManager for communication)  		 * 1: serial port (doesn't respond)  		 * 2: AT-capable modem port  		 * 3: QMI/net  		 */ -		if (ifnum == 2) +		if (ifnum == 0) { +			dev_dbg(dev, "Gobi 1K DM/DIAG interface found\n"); +			altsetting = 1; +		} else if (ifnum == 2)  			dev_dbg(dev, "Modem port found\n");  		else  			altsetting = -1; diff --git a/drivers/usb/serial/quatech2.c b/drivers/usb/serial/quatech2.c index 00e6c9bac8a..75f125ddb0c 100644 --- a/drivers/usb/serial/quatech2.c +++ b/drivers/usb/serial/quatech2.c @@ -128,7 +128,6 @@ struct qt2_port_private {  	u8          shadowLSR;  	u8          shadowMSR; -	wait_queue_head_t   delta_msr_wait; /* Used for TIOCMIWAIT */  	struct async_icount icount;  	struct usb_serial_port *port; @@ -506,8 +505,9 @@ static int wait_modem_info(struct usb_serial_port *port, unsigned int arg)  	spin_unlock_irqrestore(&priv->lock, flags);  	while (1) { -		wait_event_interruptible(priv->delta_msr_wait, -					 ((priv->icount.rng != prev.rng) || +		wait_event_interruptible(port->delta_msr_wait, +					 (port->serial->disconnected || +					  (priv->icount.rng != prev.rng) ||  					  (priv->icount.dsr != prev.dsr) ||  					  (priv->icount.dcd != prev.dcd) ||  					  (priv->icount.cts != prev.cts))); @@ -515,6 +515,9 @@ static int wait_modem_info(struct usb_serial_port *port, unsigned int arg)  		if (signal_pending(current))  			return -ERESTARTSYS; +		if (port->serial->disconnected) +			return -EIO; +  		spin_lock_irqsave(&priv->lock, flags);  		cur = priv->icount;  		spin_unlock_irqrestore(&priv->lock, flags); @@ -661,7 +664,9 @@ void qt2_process_read_urb(struct urb *urb)  						 __func__);  					break;  				} -				tty_flip_buffer_push(&port->port); + +				if (port_priv->is_open) +					tty_flip_buffer_push(&port->port);  				newport = *(ch + 3); @@ -704,7 +709,8 @@ void qt2_process_read_urb(struct urb *urb)  		tty_insert_flip_string(&port->port, ch, 1);  	} -	tty_flip_buffer_push(&port->port); +	if (port_priv->is_open) +		tty_flip_buffer_push(&port->port);  }  static void qt2_write_bulk_callback(struct urb *urb) @@ -824,7 +830,6 @@ static int qt2_port_probe(struct usb_serial_port *port)  	spin_lock_init(&port_priv->lock);  	spin_lock_init(&port_priv->urb_lock); -	init_waitqueue_head(&port_priv->delta_msr_wait);  	port_priv->port = port;  	port_priv->write_urb = usb_alloc_urb(0, GFP_KERNEL); @@ -967,7 +972,7 @@ static void qt2_update_msr(struct usb_serial_port *port, unsigned char *ch)  		if (newMSR & UART_MSR_TERI)  			port_priv->icount.rng++; -		wake_up_interruptible(&port_priv->delta_msr_wait); +		wake_up_interruptible(&port->delta_msr_wait);  	}  } diff --git a/drivers/usb/serial/spcp8x5.c b/drivers/usb/serial/spcp8x5.c index 91ff8e3bddb..549ef68ff5f 100644 --- a/drivers/usb/serial/spcp8x5.c +++ b/drivers/usb/serial/spcp8x5.c @@ -149,7 +149,6 @@ enum spcp8x5_type {  struct spcp8x5_private {  	spinlock_t 	lock;  	enum spcp8x5_type	type; -	wait_queue_head_t	delta_msr_wait;  	u8 			line_control;  	u8 			line_status;  }; @@ -179,7 +178,6 @@ static int spcp8x5_port_probe(struct usb_serial_port *port)  		return -ENOMEM;  	spin_lock_init(&priv->lock); -	init_waitqueue_head(&priv->delta_msr_wait);  	priv->type = type;  	usb_set_serial_port_data(port , priv); @@ -475,7 +473,7 @@ static void spcp8x5_process_read_urb(struct urb *urb)  	priv->line_status &= ~UART_STATE_TRANSIENT_MASK;  	spin_unlock_irqrestore(&priv->lock, flags);  	/* wake up the wait for termios */ -	wake_up_interruptible(&priv->delta_msr_wait); +	wake_up_interruptible(&port->delta_msr_wait);  	if (!urb->actual_length)  		return; @@ -526,12 +524,15 @@ static int spcp8x5_wait_modem_info(struct usb_serial_port *port,  	while (1) {  		/* wake up in bulk read */ -		interruptible_sleep_on(&priv->delta_msr_wait); +		interruptible_sleep_on(&port->delta_msr_wait);  		/* see if a signal did it */  		if (signal_pending(current))  			return -ERESTARTSYS; +		if (port->serial->disconnected) +			return -EIO; +  		spin_lock_irqsave(&priv->lock, flags);  		status = priv->line_status;  		spin_unlock_irqrestore(&priv->lock, flags); diff --git a/drivers/usb/serial/ssu100.c b/drivers/usb/serial/ssu100.c index b57cf841c5b..4b2a19757b4 100644 --- a/drivers/usb/serial/ssu100.c +++ b/drivers/usb/serial/ssu100.c @@ -61,7 +61,6 @@ struct ssu100_port_private {  	spinlock_t status_lock;  	u8 shadowLSR;  	u8 shadowMSR; -	wait_queue_head_t delta_msr_wait; /* Used for TIOCMIWAIT */  	struct async_icount icount;  }; @@ -355,8 +354,9 @@ static int wait_modem_info(struct usb_serial_port *port, unsigned int arg)  	spin_unlock_irqrestore(&priv->status_lock, flags);  	while (1) { -		wait_event_interruptible(priv->delta_msr_wait, -					 ((priv->icount.rng != prev.rng) || +		wait_event_interruptible(port->delta_msr_wait, +					 (port->serial->disconnected || +					  (priv->icount.rng != prev.rng) ||  					  (priv->icount.dsr != prev.dsr) ||  					  (priv->icount.dcd != prev.dcd) ||  					  (priv->icount.cts != prev.cts))); @@ -364,6 +364,9 @@ static int wait_modem_info(struct usb_serial_port *port, unsigned int arg)  		if (signal_pending(current))  			return -ERESTARTSYS; +		if (port->serial->disconnected) +			return -EIO; +  		spin_lock_irqsave(&priv->status_lock, flags);  		cur = priv->icount;  		spin_unlock_irqrestore(&priv->status_lock, flags); @@ -445,7 +448,6 @@ static int ssu100_port_probe(struct usb_serial_port *port)  		return -ENOMEM;  	spin_lock_init(&priv->status_lock); -	init_waitqueue_head(&priv->delta_msr_wait);  	usb_set_serial_port_data(port, priv); @@ -537,7 +539,7 @@ static void ssu100_update_msr(struct usb_serial_port *port, u8 msr)  			priv->icount.dcd++;  		if (msr & UART_MSR_TERI)  			priv->icount.rng++; -		wake_up_interruptible(&priv->delta_msr_wait); +		wake_up_interruptible(&port->delta_msr_wait);  	}  } diff --git a/drivers/usb/serial/ti_usb_3410_5052.c b/drivers/usb/serial/ti_usb_3410_5052.c index 39cb9b807c3..73deb029fc0 100644 --- a/drivers/usb/serial/ti_usb_3410_5052.c +++ b/drivers/usb/serial/ti_usb_3410_5052.c @@ -74,7 +74,6 @@ struct ti_port {  	int			tp_flags;  	int			tp_closing_wait;/* in .01 secs */  	struct async_icount	tp_icount; -	wait_queue_head_t	tp_msr_wait;	/* wait for msr change */  	wait_queue_head_t	tp_write_wait;  	struct ti_device	*tp_tdev;  	struct usb_serial_port	*tp_port; @@ -432,7 +431,6 @@ static int ti_port_probe(struct usb_serial_port *port)  	else  		tport->tp_uart_base_addr = TI_UART2_BASE_ADDR;  	tport->tp_closing_wait = closing_wait; -	init_waitqueue_head(&tport->tp_msr_wait);  	init_waitqueue_head(&tport->tp_write_wait);  	if (kfifo_alloc(&tport->write_fifo, TI_WRITE_BUF_SIZE, GFP_KERNEL)) {  		kfree(tport); @@ -784,9 +782,13 @@ static int ti_ioctl(struct tty_struct *tty,  		dev_dbg(&port->dev, "%s - TIOCMIWAIT\n", __func__);  		cprev = tport->tp_icount;  		while (1) { -			interruptible_sleep_on(&tport->tp_msr_wait); +			interruptible_sleep_on(&port->delta_msr_wait);  			if (signal_pending(current))  				return -ERESTARTSYS; + +			if (port->serial->disconnected) +				return -EIO; +  			cnow = tport->tp_icount;  			if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr &&  			    cnow.dcd == cprev.dcd && cnow.cts == cprev.cts) @@ -1392,7 +1394,7 @@ static void ti_handle_new_msr(struct ti_port *tport, __u8 msr)  			icount->dcd++;  		if (msr & TI_MSR_DELTA_RI)  			icount->rng++; -		wake_up_interruptible(&tport->tp_msr_wait); +		wake_up_interruptible(&tport->tp_port->delta_msr_wait);  		spin_unlock_irqrestore(&tport->tp_lock, flags);  	} diff --git a/drivers/usb/serial/usb-serial.c b/drivers/usb/serial/usb-serial.c index a19ed74d770..2e70efa08b7 100644 --- a/drivers/usb/serial/usb-serial.c +++ b/drivers/usb/serial/usb-serial.c @@ -151,6 +151,7 @@ static void destroy_serial(struct kref *kref)  		}  	} +	usb_put_intf(serial->interface);  	usb_put_dev(serial->dev);  	kfree(serial);  } @@ -620,7 +621,7 @@ static struct usb_serial *create_serial(struct usb_device *dev,  	}  	serial->dev = usb_get_dev(dev);  	serial->type = driver; -	serial->interface = interface; +	serial->interface = usb_get_intf(interface);  	kref_init(&serial->kref);  	mutex_init(&serial->disc_mutex);  	serial->minor = SERIAL_TTY_NO_MINOR; diff --git a/drivers/usb/storage/initializers.c b/drivers/usb/storage/initializers.c index 7ab9046ae0e..105d900150c 100644 --- a/drivers/usb/storage/initializers.c +++ b/drivers/usb/storage/initializers.c @@ -92,8 +92,8 @@ int usb_stor_ucr61s2b_init(struct us_data *us)  	return 0;  } -/* This places the HUAWEI usb dongles in multi-port mode */ -static int usb_stor_huawei_feature_init(struct us_data *us) +/* This places the HUAWEI E220 devices in multi-port mode */ +int usb_stor_huawei_e220_init(struct us_data *us)  {  	int result; @@ -104,75 +104,3 @@ static int usb_stor_huawei_feature_init(struct us_data *us)  	US_DEBUGP("Huawei mode set result is %d\n", result);  	return 0;  } - -/* - * It will send a scsi switch command called rewind' to huawei dongle. - * When the dongle receives this command at the first time, - * it will reboot immediately. After rebooted, it will ignore this command. - * So it is  unnecessary to read its response. - */ -static int usb_stor_huawei_scsi_init(struct us_data *us) -{ -	int result = 0; -	int act_len = 0; -	struct bulk_cb_wrap *bcbw = (struct bulk_cb_wrap *) us->iobuf; -	char rewind_cmd[] = {0x11, 0x06, 0x20, 0x00, 0x00, 0x01, 0x01, 0x00, -			0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; - -	bcbw->Signature = cpu_to_le32(US_BULK_CB_SIGN); -	bcbw->Tag = 0; -	bcbw->DataTransferLength = 0; -	bcbw->Flags = bcbw->Lun = 0; -	bcbw->Length = sizeof(rewind_cmd); -	memset(bcbw->CDB, 0, sizeof(bcbw->CDB)); -	memcpy(bcbw->CDB, rewind_cmd, sizeof(rewind_cmd)); - -	result = usb_stor_bulk_transfer_buf(us, us->send_bulk_pipe, bcbw, -					US_BULK_CB_WRAP_LEN, &act_len); -	US_DEBUGP("transfer actual length=%d, result=%d\n", act_len, result); -	return result; -} - -/* - * It tries to find the supported Huawei USB dongles. - * In Huawei, they assign the following product IDs - * for all of their mobile broadband dongles, - * including the new dongles in the future. - * So if the product ID is not included in this list, - * it means it is not Huawei's mobile broadband dongles. - */ -static int usb_stor_huawei_dongles_pid(struct us_data *us) -{ -	struct usb_interface_descriptor *idesc; -	int idProduct; - -	idesc = &us->pusb_intf->cur_altsetting->desc; -	idProduct = le16_to_cpu(us->pusb_dev->descriptor.idProduct); -	/* The first port is CDROM, -	 * means the dongle in the single port mode, -	 * and a switch command is required to be sent. */ -	if (idesc && idesc->bInterfaceNumber == 0) { -		if ((idProduct == 0x1001) -			|| (idProduct == 0x1003) -			|| (idProduct == 0x1004) -			|| (idProduct >= 0x1401 && idProduct <= 0x1500) -			|| (idProduct >= 0x1505 && idProduct <= 0x1600) -			|| (idProduct >= 0x1c02 && idProduct <= 0x2202)) { -			return 1; -		} -	} -	return 0; -} - -int usb_stor_huawei_init(struct us_data *us) -{ -	int result = 0; - -	if (usb_stor_huawei_dongles_pid(us)) { -		if (le16_to_cpu(us->pusb_dev->descriptor.idProduct) >= 0x1446) -			result = usb_stor_huawei_scsi_init(us); -		else -			result = usb_stor_huawei_feature_init(us); -	} -	return result; -} diff --git a/drivers/usb/storage/initializers.h b/drivers/usb/storage/initializers.h index 5376d4fc76f..529327fbb06 100644 --- a/drivers/usb/storage/initializers.h +++ b/drivers/usb/storage/initializers.h @@ -46,5 +46,5 @@ int usb_stor_euscsi_init(struct us_data *us);   * flash reader */  int usb_stor_ucr61s2b_init(struct us_data *us); -/* This places the HUAWEI usb dongles in multi-port mode */ -int usb_stor_huawei_init(struct us_data *us); +/* This places the HUAWEI E220 devices in multi-port mode */ +int usb_stor_huawei_e220_init(struct us_data *us); diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h index 72923b56bbf..1799335288b 100644 --- a/drivers/usb/storage/unusual_devs.h +++ b/drivers/usb/storage/unusual_devs.h @@ -53,6 +53,14 @@   * as opposed to devices that do something strangely or wrongly.   */ +/* In-kernel mode switching is deprecated.  Do not add new devices to + * this list for the sole purpose of switching them to a different + * mode.  Existing userspace solutions are superior. + * + * New mode switching devices should instead be added to the database + * maintained at http://www.draisberghof.de/usb_modeswitch/ + */ +  #if !defined(CONFIG_USB_STORAGE_SDDR09) && \  		!defined(CONFIG_USB_STORAGE_SDDR09_MODULE)  #define NO_SDDR09 @@ -488,6 +496,13 @@ UNUSUAL_DEV(  0x04e8, 0x5122, 0x0000, 0x9999,  		USB_SC_DEVICE, USB_PR_DEVICE, NULL,  		US_FL_MAX_SECTORS_64 | US_FL_BULK_IGNORE_TAG), +/* Added by Dmitry Artamonow <mad_soft@inbox.ru> */ +UNUSUAL_DEV(  0x04e8, 0x5136, 0x0000, 0x9999, +		"Samsung", +		"YP-Z3", +		USB_SC_DEVICE, USB_PR_DEVICE, NULL, +		US_FL_MAX_SECTORS_64), +  /* Entry and supporting patch by Theodore Kilgore <kilgota@auburn.edu>.   * Device uses standards-violating 32-byte Bulk Command Block Wrappers and   * reports itself as "Proprietary SCSI Bulk." Cf. device entry 0x084d:0x0011. @@ -1527,10 +1542,335 @@ UNUSUAL_DEV(  0x1210, 0x0003, 0x0100, 0x0100,  /* Reported by fangxiaozhi <huananhu@huawei.com>   * This brings the HUAWEI data card devices into multi-port mode   */ -UNUSUAL_VENDOR_INTF(0x12d1, 0x08, 0x06, 0x50, +UNUSUAL_DEV(  0x12d1, 0x1001, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1003, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1004, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1401, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1402, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1403, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1404, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1405, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1406, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1407, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1408, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1409, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x140A, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x140B, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x140C, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x140D, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x140E, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x140F, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1410, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1411, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1412, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1413, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1414, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1415, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1416, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1417, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1418, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1419, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x141A, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x141B, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x141C, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x141D, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x141E, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x141F, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1420, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1421, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1422, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1423, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1424, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1425, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1426, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1427, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1428, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1429, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x142A, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x142B, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x142C, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x142D, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x142E, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x142F, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1430, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1431, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1432, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1433, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1434, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1435, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1436, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1437, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1438, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x1439, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x143A, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x143B, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x143C, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x143D, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x143E, 0x0000, 0x0000, +		"HUAWEI MOBILE", +		"Mass Storage", +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init, +		0), +UNUSUAL_DEV(  0x12d1, 0x143F, 0x0000, 0x0000,  		"HUAWEI MOBILE",  		"Mass Storage", -		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_init, +		USB_SC_DEVICE, USB_PR_DEVICE, usb_stor_huawei_e220_init,  		0),  /* Reported by Vilius Bilinkevicius <vilisas AT xxx DOT lt) */ diff --git a/drivers/vfio/pci/vfio_pci_config.c b/drivers/vfio/pci/vfio_pci_config.c index 964ff22bf28..aeb00fc2d3b 100644 --- a/drivers/vfio/pci/vfio_pci_config.c +++ b/drivers/vfio/pci/vfio_pci_config.c @@ -27,6 +27,7 @@  #include <linux/pci.h>  #include <linux/uaccess.h>  #include <linux/vfio.h> +#include <linux/slab.h>  #include "vfio_pci_private.h" diff --git a/drivers/vfio/pci/vfio_pci_intrs.c b/drivers/vfio/pci/vfio_pci_intrs.c index 3639371fa69..a96509187de 100644 --- a/drivers/vfio/pci/vfio_pci_intrs.c +++ b/drivers/vfio/pci/vfio_pci_intrs.c @@ -22,6 +22,7 @@  #include <linux/vfio.h>  #include <linux/wait.h>  #include <linux/workqueue.h> +#include <linux/slab.h>  #include "vfio_pci_private.h" diff --git a/drivers/vhost/net.c b/drivers/vhost/net.c index 959b1cd89e6..ec6fb3fa59b 100644 --- a/drivers/vhost/net.c +++ b/drivers/vhost/net.c @@ -339,7 +339,8 @@ static void handle_tx(struct vhost_net *net)  				msg.msg_controllen = 0;  				ubufs = NULL;  			} else { -				struct ubuf_info *ubuf = &vq->ubuf_info[head]; +				struct ubuf_info *ubuf; +				ubuf = vq->ubuf_info + vq->upend_idx;  				vq->heads[vq->upend_idx].len =  					VHOST_DMA_IN_PROGRESS; diff --git a/drivers/vhost/tcm_vhost.c b/drivers/vhost/tcm_vhost.c index 9951297b242..43fb11ee2e8 100644 --- a/drivers/vhost/tcm_vhost.c +++ b/drivers/vhost/tcm_vhost.c @@ -850,7 +850,7 @@ static int vhost_scsi_clear_endpoint(  	for (index = 0; index < vs->dev.nvqs; ++index) {  		if (!vhost_vq_access_ok(&vs->vqs[index])) {  			ret = -EFAULT; -			goto err; +			goto err_dev;  		}  	}  	for (i = 0; i < VHOST_SCSI_MAX_TARGET; i++) { @@ -860,10 +860,11 @@ static int vhost_scsi_clear_endpoint(  		if (!tv_tpg)  			continue; +		mutex_lock(&tv_tpg->tv_tpg_mutex);  		tv_tport = tv_tpg->tport;  		if (!tv_tport) {  			ret = -ENODEV; -			goto err; +			goto err_tpg;  		}  		if (strcmp(tv_tport->tport_name, t->vhost_wwpn)) { @@ -872,16 +873,19 @@ static int vhost_scsi_clear_endpoint(  				tv_tport->tport_name, tv_tpg->tport_tpgt,  				t->vhost_wwpn, t->vhost_tpgt);  			ret = -EINVAL; -			goto err; +			goto err_tpg;  		}  		tv_tpg->tv_tpg_vhost_count--;  		vs->vs_tpg[target] = NULL;  		vs->vs_endpoint = false; +		mutex_unlock(&tv_tpg->tv_tpg_mutex);  	}  	mutex_unlock(&vs->dev.mutex);  	return 0; -err: +err_tpg: +	mutex_unlock(&tv_tpg->tv_tpg_mutex); +err_dev:  	mutex_unlock(&vs->dev.mutex);  	return ret;  } @@ -937,6 +941,7 @@ static void vhost_scsi_flush(struct vhost_scsi *vs)  	for (i = 0; i < VHOST_SCSI_MAX_VQ; i++)  		vhost_scsi_flush_vq(vs, i); +	vhost_work_flush(&vs->dev, &vs->vs_completion_work);  }  static int vhost_scsi_set_features(struct vhost_scsi *vs, u64 features) diff --git a/drivers/video/atmel_lcdfb.c b/drivers/video/atmel_lcdfb.c index 12cf5f31ee8..c1a2914447e 100644 --- a/drivers/video/atmel_lcdfb.c +++ b/drivers/video/atmel_lcdfb.c @@ -34,6 +34,77 @@  #define ATMEL_LCDC_DMA_BURST_LEN	8	/* words */  #define ATMEL_LCDC_FIFO_SIZE		512	/* words */ +struct atmel_lcdfb_config { +	bool have_alt_pixclock; +	bool have_hozval; +	bool have_intensity_bit; +}; + +static struct atmel_lcdfb_config at91sam9261_config = { +	.have_hozval		= true, +	.have_intensity_bit	= true, +}; + +static struct atmel_lcdfb_config at91sam9263_config = { +	.have_intensity_bit	= true, +}; + +static struct atmel_lcdfb_config at91sam9g10_config = { +	.have_hozval		= true, +}; + +static struct atmel_lcdfb_config at91sam9g45_config = { +	.have_alt_pixclock	= true, +}; + +static struct atmel_lcdfb_config at91sam9g45es_config = { +}; + +static struct atmel_lcdfb_config at91sam9rl_config = { +	.have_intensity_bit	= true, +}; + +static struct atmel_lcdfb_config at32ap_config = { +	.have_hozval		= true, +}; + +static const struct platform_device_id atmel_lcdfb_devtypes[] = { +	{ +		.name = "at91sam9261-lcdfb", +		.driver_data = (unsigned long)&at91sam9261_config, +	}, { +		.name = "at91sam9263-lcdfb", +		.driver_data = (unsigned long)&at91sam9263_config, +	}, { +		.name = "at91sam9g10-lcdfb", +		.driver_data = (unsigned long)&at91sam9g10_config, +	}, { +		.name = "at91sam9g45-lcdfb", +		.driver_data = (unsigned long)&at91sam9g45_config, +	}, { +		.name = "at91sam9g45es-lcdfb", +		.driver_data = (unsigned long)&at91sam9g45es_config, +	}, { +		.name = "at91sam9rl-lcdfb", +		.driver_data = (unsigned long)&at91sam9rl_config, +	}, { +		.name = "at32ap-lcdfb", +		.driver_data = (unsigned long)&at32ap_config, +	}, { +		/* terminator */ +	} +}; + +static struct atmel_lcdfb_config * +atmel_lcdfb_get_config(struct platform_device *pdev) +{ +	unsigned long data; + +	data = platform_get_device_id(pdev)->driver_data; + +	return (struct atmel_lcdfb_config *)data; +} +  #if defined(CONFIG_ARCH_AT91)  #define	ATMEL_LCDFB_FBINFO_DEFAULT	(FBINFO_DEFAULT \  					 | FBINFO_PARTIAL_PAN_OK \ @@ -193,14 +264,16 @@ static struct fb_fix_screeninfo atmel_lcdfb_fix __initdata = {  	.accel		= FB_ACCEL_NONE,  }; -static unsigned long compute_hozval(unsigned long xres, unsigned long lcdcon2) +static unsigned long compute_hozval(struct atmel_lcdfb_info *sinfo, +							unsigned long xres)  { +	unsigned long lcdcon2;  	unsigned long value; -	if (!(cpu_is_at91sam9261() || cpu_is_at91sam9g10() -		|| cpu_is_at32ap7000())) +	if (!sinfo->config->have_hozval)  		return xres; +	lcdcon2 = lcdc_readl(sinfo, ATMEL_LCDC_LCDCON2);  	value = xres;  	if ((lcdcon2 & ATMEL_LCDC_DISTYPE) != ATMEL_LCDC_DISTYPE_TFT) {  		/* STN display */ @@ -422,17 +495,22 @@ static int atmel_lcdfb_check_var(struct fb_var_screeninfo *var,  			= var->bits_per_pixel;  		break;  	case 16: +		/* Older SOCs use IBGR:555 rather than BGR:565. */ +		if (sinfo->config->have_intensity_bit) +			var->green.length = 5; +		else +			var->green.length = 6; +  		if (sinfo->lcd_wiring_mode == ATMEL_LCDC_WIRING_RGB) { -			/* RGB:565 mode */ -			var->red.offset = 11; +			/* RGB:5X5 mode */ +			var->red.offset = var->green.length + 5;  			var->blue.offset = 0;  		} else { -			/* BGR:565 mode */ +			/* BGR:5X5 mode */  			var->red.offset = 0; -			var->blue.offset = 11; +			var->blue.offset = var->green.length + 5;  		}  		var->green.offset = 5; -		var->green.length = 6;  		var->red.length = var->blue.length = 5;  		break;  	case 32: @@ -526,7 +604,7 @@ static int atmel_lcdfb_set_par(struct fb_info *info)  	/* Now, the LCDC core... */  	/* Set pixel clock */ -	if (cpu_is_at91sam9g45() && !cpu_is_at91sam9g45es()) +	if (sinfo->config->have_alt_pixclock)  		pix_factor = 1;  	clk_value_khz = clk_get_rate(sinfo->lcdc_clk) / 1000; @@ -586,8 +664,7 @@ static int atmel_lcdfb_set_par(struct fb_info *info)  	lcdc_writel(sinfo, ATMEL_LCDC_TIM2, value);  	/* Horizontal value (aka line size) */ -	hozval_linesz = compute_hozval(info->var.xres, -					lcdc_readl(sinfo, ATMEL_LCDC_LCDCON2)); +	hozval_linesz = compute_hozval(sinfo, info->var.xres);  	/* Display size */  	value = (hozval_linesz - 1) << ATMEL_LCDC_HOZVAL_OFFSET; @@ -679,8 +756,7 @@ static int atmel_lcdfb_setcolreg(unsigned int regno, unsigned int red,  	case FB_VISUAL_PSEUDOCOLOR:  		if (regno < 256) { -			if (cpu_is_at91sam9261() || cpu_is_at91sam9263() -			    || cpu_is_at91sam9rl()) { +			if (sinfo->config->have_intensity_bit) {  				/* old style I+BGR:555 */  				val  = ((red   >> 11) & 0x001f);  				val |= ((green >>  6) & 0x03e0); @@ -817,15 +893,13 @@ static int __init atmel_lcdfb_init_fbinfo(struct atmel_lcdfb_info *sinfo)  static void atmel_lcdfb_start_clock(struct atmel_lcdfb_info *sinfo)  { -	if (sinfo->bus_clk) -		clk_enable(sinfo->bus_clk); +	clk_enable(sinfo->bus_clk);  	clk_enable(sinfo->lcdc_clk);  }  static void atmel_lcdfb_stop_clock(struct atmel_lcdfb_info *sinfo)  { -	if (sinfo->bus_clk) -		clk_disable(sinfo->bus_clk); +	clk_disable(sinfo->bus_clk);  	clk_disable(sinfo->lcdc_clk);  } @@ -870,6 +944,9 @@ static int __init atmel_lcdfb_probe(struct platform_device *pdev)  	}  	sinfo->info = info;  	sinfo->pdev = pdev; +	sinfo->config = atmel_lcdfb_get_config(pdev); +	if (!sinfo->config) +		goto free_info;  	strcpy(info->fix.id, sinfo->pdev->name);  	info->flags = ATMEL_LCDFB_FBINFO_DEFAULT; @@ -880,13 +957,10 @@ static int __init atmel_lcdfb_probe(struct platform_device *pdev)  	info->fix = atmel_lcdfb_fix;  	/* Enable LCDC Clocks */ -	if (cpu_is_at91sam9261() || cpu_is_at91sam9g10() -	 || cpu_is_at32ap7000()) { -		sinfo->bus_clk = clk_get(dev, "hck1"); -		if (IS_ERR(sinfo->bus_clk)) { -			ret = PTR_ERR(sinfo->bus_clk); -			goto free_info; -		} +	sinfo->bus_clk = clk_get(dev, "hclk"); +	if (IS_ERR(sinfo->bus_clk)) { +		ret = PTR_ERR(sinfo->bus_clk); +		goto free_info;  	}  	sinfo->lcdc_clk = clk_get(dev, "lcdc_clk");  	if (IS_ERR(sinfo->lcdc_clk)) { @@ -1047,8 +1121,7 @@ stop_clk:  	atmel_lcdfb_stop_clock(sinfo);  	clk_put(sinfo->lcdc_clk);  put_bus_clk: -	if (sinfo->bus_clk) -		clk_put(sinfo->bus_clk); +	clk_put(sinfo->bus_clk);  free_info:  	framebuffer_release(info);  out: @@ -1073,8 +1146,7 @@ static int __exit atmel_lcdfb_remove(struct platform_device *pdev)  	unregister_framebuffer(info);  	atmel_lcdfb_stop_clock(sinfo);  	clk_put(sinfo->lcdc_clk); -	if (sinfo->bus_clk) -		clk_put(sinfo->bus_clk); +	clk_put(sinfo->bus_clk);  	fb_dealloc_cmap(&info->cmap);  	free_irq(sinfo->irq_base, info);  	iounmap(sinfo->mmio); @@ -1143,7 +1215,7 @@ static struct platform_driver atmel_lcdfb_driver = {  	.remove		= __exit_p(atmel_lcdfb_remove),  	.suspend	= atmel_lcdfb_suspend,  	.resume		= atmel_lcdfb_resume, - +	.id_table	= atmel_lcdfb_devtypes,  	.driver		= {  		.name	= "atmel_lcdfb",  		.owner	= THIS_MODULE, diff --git a/drivers/video/ep93xx-fb.c b/drivers/video/ep93xx-fb.c index 3f2519d3071..e06cd5d90c9 100644 --- a/drivers/video/ep93xx-fb.c +++ b/drivers/video/ep93xx-fb.c @@ -23,6 +23,7 @@  #include <linux/slab.h>  #include <linux/clk.h>  #include <linux/fb.h> +#include <linux/io.h>  #include <linux/platform_data/video-ep93xx.h> diff --git a/drivers/video/omap/lcd_ams_delta.c b/drivers/video/omap/lcd_ams_delta.c index ed4cad87fbc..4a5f2cd3d3b 100644 --- a/drivers/video/omap/lcd_ams_delta.c +++ b/drivers/video/omap/lcd_ams_delta.c @@ -27,6 +27,7 @@  #include <linux/lcd.h>  #include <linux/gpio.h> +#include <mach/hardware.h>  #include <mach/board-ams-delta.h>  #include "omapfb.h" diff --git a/drivers/video/omap/lcd_osk.c b/drivers/video/omap/lcd_osk.c index 3aa62da8919..7fbe04bce0e 100644 --- a/drivers/video/omap/lcd_osk.c +++ b/drivers/video/omap/lcd_osk.c @@ -24,7 +24,10 @@  #include <linux/platform_device.h>  #include <asm/gpio.h> + +#include <mach/hardware.h>  #include <mach/mux.h> +  #include "omapfb.h"  static int osk_panel_init(struct lcd_panel *panel, struct omapfb_device *fbdev) diff --git a/drivers/w1/masters/w1-gpio.c b/drivers/w1/masters/w1-gpio.c index d39dfa4cc23..46d97014342 100644 --- a/drivers/w1/masters/w1-gpio.c +++ b/drivers/w1/masters/w1-gpio.c @@ -47,11 +47,13 @@ static u8 w1_gpio_read_bit(void *data)  	return gpio_get_value(pdata->pin) ? 1 : 0;  } +#if defined(CONFIG_OF)  static struct of_device_id w1_gpio_dt_ids[] = {  	{ .compatible = "w1-gpio" },  	{}  };  MODULE_DEVICE_TABLE(of, w1_gpio_dt_ids); +#endif  static int w1_gpio_probe_dt(struct platform_device *pdev)  { @@ -158,7 +160,7 @@ static int w1_gpio_probe(struct platform_device *pdev)  	return err;  } -static int __exit w1_gpio_remove(struct platform_device *pdev) +static int w1_gpio_remove(struct platform_device *pdev)  {  	struct w1_bus_master *master = platform_get_drvdata(pdev);  	struct w1_gpio_platform_data *pdata = pdev->dev.platform_data; @@ -210,7 +212,7 @@ static struct platform_driver w1_gpio_driver = {  		.of_match_table = of_match_ptr(w1_gpio_dt_ids),  	},  	.probe = w1_gpio_probe, -	.remove	= __exit_p(w1_gpio_remove), +	.remove	= w1_gpio_remove,  	.suspend = w1_gpio_suspend,  	.resume = w1_gpio_resume,  }; diff --git a/drivers/w1/w1.c b/drivers/w1/w1.c index 7994d933f04..7ce277d2bb6 100644 --- a/drivers/w1/w1.c +++ b/drivers/w1/w1.c @@ -924,7 +924,8 @@ void w1_search(struct w1_master *dev, u8 search_type, w1_slave_found_callback cb  			tmp64 = (triplet_ret >> 2);  			rn |= (tmp64 << i); -			if (kthread_should_stop()) { +			/* ensure we're called from kthread and not by netlink callback */ +			if (!dev->priv && kthread_should_stop()) {  				mutex_unlock(&dev->bus_mutex);  				dev_dbg(&dev->dev, "Abort w1_search\n");  				return; diff --git a/drivers/watchdog/sp5100_tco.c b/drivers/watchdog/sp5100_tco.c index e3b8f757d2d..0e9d8c479c3 100644 --- a/drivers/watchdog/sp5100_tco.c +++ b/drivers/watchdog/sp5100_tco.c @@ -40,13 +40,12 @@  #include "sp5100_tco.h"  /* Module and version information */ -#define TCO_VERSION "0.03" +#define TCO_VERSION "0.05"  #define TCO_MODULE_NAME "SP5100 TCO timer"  #define TCO_DRIVER_NAME   TCO_MODULE_NAME ", v" TCO_VERSION  /* internal variables */  static u32 tcobase_phys; -static u32 resbase_phys;  static u32 tco_wdt_fired;  static void __iomem *tcobase;  static unsigned int pm_iobase; @@ -54,10 +53,6 @@ static DEFINE_SPINLOCK(tco_lock);	/* Guards the hardware */  static unsigned long timer_alive;  static char tco_expect_close;  static struct pci_dev *sp5100_tco_pci; -static struct resource wdt_res = { -	.name = "Watchdog Timer", -	.flags = IORESOURCE_MEM, -};  /* the watchdog platform device */  static struct platform_device *sp5100_tco_platform_device; @@ -75,12 +70,6 @@ module_param(nowayout, bool, 0);  MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started."  		" (default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); -static unsigned int force_addr; -module_param(force_addr, uint, 0); -MODULE_PARM_DESC(force_addr, "Force the use of specified MMIO address." -		" ONLY USE THIS PARAMETER IF YOU REALLY KNOW" -		" WHAT YOU ARE DOING (default=none)"); -  /*   * Some TCO specific functions   */ @@ -176,39 +165,6 @@ static void tco_timer_enable(void)  	}  } -static void tco_timer_disable(void) -{ -	int val; - -	if (sp5100_tco_pci->revision >= 0x40) { -		/* For SB800 or later */ -		/* Enable watchdog decode bit and Disable watchdog timer */ -		outb(SB800_PM_WATCHDOG_CONTROL, SB800_IO_PM_INDEX_REG); -		val = inb(SB800_IO_PM_DATA_REG); -		val |= SB800_PCI_WATCHDOG_DECODE_EN; -		val |= SB800_PM_WATCHDOG_DISABLE; -		outb(val, SB800_IO_PM_DATA_REG); -	} else { -		/* For SP5100 or SB7x0 */ -		/* Enable watchdog decode bit */ -		pci_read_config_dword(sp5100_tco_pci, -				      SP5100_PCI_WATCHDOG_MISC_REG, -				      &val); - -		val |= SP5100_PCI_WATCHDOG_DECODE_EN; - -		pci_write_config_dword(sp5100_tco_pci, -				       SP5100_PCI_WATCHDOG_MISC_REG, -				       val); - -		/* Disable Watchdog timer */ -		outb(SP5100_PM_WATCHDOG_CONTROL, SP5100_IO_PM_INDEX_REG); -		val = inb(SP5100_IO_PM_DATA_REG); -		val |= SP5100_PM_WATCHDOG_DISABLE; -		outb(val, SP5100_IO_PM_DATA_REG); -	} -} -  /*   *	/dev/watchdog handling   */ @@ -361,7 +317,7 @@ static unsigned char sp5100_tco_setupdevice(void)  {  	struct pci_dev *dev = NULL;  	const char *dev_name = NULL; -	u32 val, tmp_val; +	u32 val;  	u32 index_reg, data_reg, base_addr;  	/* Match the PCI device */ @@ -459,63 +415,8 @@ static unsigned char sp5100_tco_setupdevice(void)  	} else  		pr_debug("SBResource_MMIO is disabled(0x%04x)\n", val); -	/* -	 * Lastly re-programming the watchdog timer MMIO address, -	 * This method is a last resort... -	 * -	 * Before re-programming, to ensure that the watchdog timer -	 * is disabled, disable the watchdog timer. -	 */ -	tco_timer_disable(); - -	if (force_addr) { -		/* -		 * Force the use of watchdog timer MMIO address, and aligned to -		 * 8byte boundary. -		 */ -		force_addr &= ~0x7; -		val = force_addr; - -		pr_info("Force the use of 0x%04x as MMIO address\n", val); -	} else { -		/* -		 * Get empty slot into the resource tree for watchdog timer. -		 */ -		if (allocate_resource(&iomem_resource, -				      &wdt_res, -				      SP5100_WDT_MEM_MAP_SIZE, -				      0xf0000000, -				      0xfffffff8, -				      0x8, -				      NULL, -				      NULL)) { -			pr_err("MMIO allocation failed\n"); -			goto unreg_region; -		} - -		val = resbase_phys = wdt_res.start; -		pr_debug("Got 0x%04x from resource tree\n", val); -	} - -	/* Restore to the low three bits */ -	outb(base_addr+0, index_reg); -	tmp_val = val | (inb(data_reg) & 0x7); - -	/* Re-programming the watchdog timer base address */ -	outb(base_addr+0, index_reg); -	outb((tmp_val >>  0) & 0xff, data_reg); -	outb(base_addr+1, index_reg); -	outb((tmp_val >>  8) & 0xff, data_reg); -	outb(base_addr+2, index_reg); -	outb((tmp_val >> 16) & 0xff, data_reg); -	outb(base_addr+3, index_reg); -	outb((tmp_val >> 24) & 0xff, data_reg); - -	if (!request_mem_region_exclusive(val, SP5100_WDT_MEM_MAP_SIZE, -								   dev_name)) { -		pr_err("MMIO address 0x%04x already in use\n", val); -		goto unreg_resource; -	} +	pr_notice("failed to find MMIO address, giving up.\n"); +	goto  unreg_region;  setup_wdt:  	tcobase_phys = val; @@ -555,9 +456,6 @@ setup_wdt:  unreg_mem_region:  	release_mem_region(tcobase_phys, SP5100_WDT_MEM_MAP_SIZE); -unreg_resource: -	if (resbase_phys) -		release_resource(&wdt_res);  unreg_region:  	release_region(pm_iobase, SP5100_PM_IOPORTS_SIZE);  exit: @@ -567,7 +465,6 @@ exit:  static int sp5100_tco_init(struct platform_device *dev)  {  	int ret; -	char addr_str[16];  	/*  	 * Check whether or not the hardware watchdog is there. If found, then @@ -599,23 +496,14 @@ static int sp5100_tco_init(struct platform_device *dev)  	clear_bit(0, &timer_alive);  	/* Show module parameters */ -	if (force_addr == tcobase_phys) -		/* The force_addr is vaild */ -		sprintf(addr_str, "0x%04x", force_addr); -	else -		strcpy(addr_str, "none"); - -	pr_info("initialized (0x%p). heartbeat=%d sec (nowayout=%d, " -		"force_addr=%s)\n", -		tcobase, heartbeat, nowayout, addr_str); +	pr_info("initialized (0x%p). heartbeat=%d sec (nowayout=%d)\n", +		tcobase, heartbeat, nowayout);  	return 0;  exit:  	iounmap(tcobase);  	release_mem_region(tcobase_phys, SP5100_WDT_MEM_MAP_SIZE); -	if (resbase_phys) -		release_resource(&wdt_res);  	release_region(pm_iobase, SP5100_PM_IOPORTS_SIZE);  	return ret;  } @@ -630,8 +518,6 @@ static void sp5100_tco_cleanup(void)  	misc_deregister(&sp5100_tco_miscdev);  	iounmap(tcobase);  	release_mem_region(tcobase_phys, SP5100_WDT_MEM_MAP_SIZE); -	if (resbase_phys) -		release_resource(&wdt_res);  	release_region(pm_iobase, SP5100_PM_IOPORTS_SIZE);  } diff --git a/drivers/watchdog/sp5100_tco.h b/drivers/watchdog/sp5100_tco.h index 71594a0c14b..2b28c00da0d 100644 --- a/drivers/watchdog/sp5100_tco.h +++ b/drivers/watchdog/sp5100_tco.h @@ -57,7 +57,7 @@  #define SB800_PM_WATCHDOG_DISABLE	(1 << 2)  #define SB800_PM_WATCHDOG_SECOND_RES	(3 << 0)  #define SB800_ACPI_MMIO_DECODE_EN	(1 << 0) -#define SB800_ACPI_MMIO_SEL		(1 << 2) +#define SB800_ACPI_MMIO_SEL		(1 << 1)  #define SB800_PM_WDT_MMIO_OFFSET	0xB00 diff --git a/drivers/xen/xen-acpi-processor.c b/drivers/xen/xen-acpi-processor.c index 316df65163c..f3278a6603c 100644 --- a/drivers/xen/xen-acpi-processor.c +++ b/drivers/xen/xen-acpi-processor.c @@ -500,16 +500,16 @@ static int __init xen_acpi_processor_init(void)  	(void)acpi_processor_preregister_performance(acpi_perf_data);  	for_each_possible_cpu(i) { +		struct acpi_processor *pr;  		struct acpi_processor_performance *perf; +		pr = per_cpu(processors, i);  		perf = per_cpu_ptr(acpi_perf_data, i); -		rc = acpi_processor_register_performance(perf, i); +		pr->performance = perf; +		rc = acpi_processor_get_performance_info(pr);  		if (rc)  			goto err_out;  	} -	rc = acpi_processor_notify_smm(THIS_MODULE); -	if (rc) -		goto err_unregister;  	for_each_possible_cpu(i) {  		struct acpi_processor *_pr; diff --git a/drivers/xen/xen-pciback/pciback_ops.c b/drivers/xen/xen-pciback/pciback_ops.c index 37c1f825f51..b98cf0c3572 100644 --- a/drivers/xen/xen-pciback/pciback_ops.c +++ b/drivers/xen/xen-pciback/pciback_ops.c @@ -113,7 +113,8 @@ void xen_pcibk_reset_device(struct pci_dev *dev)  		if (dev->msi_enabled)  			pci_disable_msi(dev);  #endif -		pci_disable_device(dev); +		if (pci_is_enabled(dev)) +			pci_disable_device(dev);  		pci_write_config_word(dev, PCI_COMMAND, 0); diff --git a/drivers/xen/xen-stub.c b/drivers/xen/xen-stub.c index d85e411cbf8..bbef194c5b0 100644 --- a/drivers/xen/xen-stub.c +++ b/drivers/xen/xen-stub.c @@ -25,7 +25,6 @@  #include <linux/export.h>  #include <linux/types.h>  #include <linux/acpi.h> -#include <acpi/acpi_drivers.h>  #include <xen/acpi.h>  #ifdef CONFIG_ACPI  |