]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
Merge tag 'v3.13-rc4' into next
authorFelipe Balbi <balbi@ti.com>
Thu, 19 Dec 2013 15:18:53 +0000 (09:18 -0600)
committerFelipe Balbi <balbi@ti.com>
Thu, 19 Dec 2013 15:18:53 +0000 (09:18 -0600)
Linux 3.13-rc4

* tag 'v3.13-rc4': (1001 commits)
  Linux 3.13-rc4
  null_blk: mem garbage on NUMA systems during init
  radeon_pm: fix oops in hwmon_attributes_visible() and radeon_hwmon_show_temp_thresh()
  Revert "selinux: consider filesystem subtype in policies"
  igb: Fix for issue where values could be too high for udelay function.
  i40e: fix null dereference
  ARM: fix asm/memory.h build error
  dm array: fix a reference counting bug in shadow_ablock
  dm space map: disallow decrementing a reference count below zero
  mm: memcg: do not allow task about to OOM kill to bypass the limit
  mm: memcg: fix race condition between memcg teardown and swapin
  thp: move preallocated PTE page table on move_huge_pmd()
  mfd/rtc: s5m: fix register updating by adding regmap for RTC
  rtc: s5m: enable IRQ wake during suspend
  rtc: s5m: limit endless loop waiting for register update
  rtc: s5m: fix unsuccesful IRQ request during probe
  drivers/rtc/rtc-s5m.c: fix info->rtc assignment
  include/linux/kernel.h: make might_fault() a nop for !MMU
  drivers/rtc/rtc-at91rm9200.c: correct alarm over day/month wrap
  procfs: also fix proc_reg_get_unmapped_area() for !MMU case
  ...

Signed-off-by: Felipe Balbi <balbi@ti.com>
12 files changed:
1  2 
drivers/usb/dwc3/gadget.c
drivers/usb/gadget/Kconfig
drivers/usb/gadget/composite.c
drivers/usb/gadget/pxa25x_udc.c
drivers/usb/gadget/s3c-hsotg.c
drivers/usb/gadget/zero.c
drivers/usb/musb/musb_core.c
drivers/usb/musb/musb_gadget.c
drivers/usb/phy/phy-generic.c
drivers/usb/phy/phy-keystone.c
drivers/usb/phy/phy-mxs-usb.c
drivers/usb/phy/phy-rcar-gen2-usb.c

Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
index a04fb940d62c41e294d24789cf072fa7fd05a81f,0000000000000000000000000000000000000000..533db1284ce7284e8a219af030230a7100674e95
mode 100644,000000..100644
--- /dev/null
@@@ -1,142 -1,0 +1,141 @@@
-       ret = usb_phy_gen_create_phy(dev, &k_phy->usb_phy_gen,
-                       USB_PHY_TYPE_USB2, 0, false);
 +/*
 + * phy-keystone - USB PHY, talking to dwc3 controller in Keystone.
 + *
 + * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com
 + * 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, or
 + * (at your option) any later version.
 + *
 + * Author: WingMan Kwok <w-kwok2@ti.com>
 + *
 + * 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/platform_device.h>
 +#include <linux/usb/usb_phy_gen_xceiv.h>
 +#include <linux/io.h>
 +#include <linux/of.h>
 +
 +#include "phy-generic.h"
 +
 +/* USB PHY control register offsets */
 +#define USB_PHY_CTL_UTMI              0x0000
 +#define USB_PHY_CTL_PIPE              0x0004
 +#define USB_PHY_CTL_PARAM_1           0x0008
 +#define USB_PHY_CTL_PARAM_2           0x000c
 +#define USB_PHY_CTL_CLOCK             0x0010
 +#define USB_PHY_CTL_PLL                       0x0014
 +
 +#define PHY_REF_SSP_EN                        BIT(29)
 +
 +struct keystone_usbphy {
 +      struct usb_phy_gen_xceiv        usb_phy_gen;
 +      void __iomem                    *phy_ctrl;
 +};
 +
 +static inline u32 keystone_usbphy_readl(void __iomem *base, u32 offset)
 +{
 +      return readl(base + offset);
 +}
 +
 +static inline void keystone_usbphy_writel(void __iomem *base,
 +                                        u32 offset, u32 value)
 +{
 +      writel(value, base + offset);
 +}
 +
 +static int keystone_usbphy_init(struct usb_phy *phy)
 +{
 +      struct keystone_usbphy *k_phy = dev_get_drvdata(phy->dev);
 +      u32 val;
 +
 +      val  = keystone_usbphy_readl(k_phy->phy_ctrl, USB_PHY_CTL_CLOCK);
 +      keystone_usbphy_writel(k_phy->phy_ctrl, USB_PHY_CTL_CLOCK,
 +                              val | PHY_REF_SSP_EN);
 +      return 0;
 +}
 +
 +static void keystone_usbphy_shutdown(struct usb_phy *phy)
 +{
 +      struct keystone_usbphy *k_phy = dev_get_drvdata(phy->dev);
 +      u32 val;
 +
 +      val  = keystone_usbphy_readl(k_phy->phy_ctrl, USB_PHY_CTL_CLOCK);
 +      keystone_usbphy_writel(k_phy->phy_ctrl, USB_PHY_CTL_CLOCK,
 +                              val &= ~PHY_REF_SSP_EN);
 +}
 +
 +static int keystone_usbphy_probe(struct platform_device *pdev)
 +{
 +      struct device           *dev = &pdev->dev;
 +      struct keystone_usbphy  *k_phy;
 +      struct resource         *res;
 +      int ret;
 +
 +      k_phy = devm_kzalloc(dev, sizeof(*k_phy), GFP_KERNEL);
 +      if (!k_phy)
 +              return -ENOMEM;
 +
 +      res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
 +      if (!res) {
 +              dev_err(dev, "missing usb phy resource\n");
 +              return -EINVAL;
 +      }
 +
 +      k_phy->phy_ctrl = devm_ioremap_resource(dev, res);
 +      if (IS_ERR(k_phy->phy_ctrl))
 +              return PTR_ERR(k_phy->phy_ctrl);
 +
++      ret = usb_phy_gen_create_phy(dev, &k_phy->usb_phy_gen, NULL);
 +      if (ret)
 +              return ret;
 +
 +      k_phy->usb_phy_gen.phy.init = keystone_usbphy_init;
 +      k_phy->usb_phy_gen.phy.shutdown = keystone_usbphy_shutdown;
 +
 +      platform_set_drvdata(pdev, k_phy);
 +
 +      ret = usb_add_phy_dev(&k_phy->usb_phy_gen.phy);
 +      if (ret)
 +              return ret;
 +
 +      return 0;
 +}
 +
 +static int keystone_usbphy_remove(struct platform_device *pdev)
 +{
 +      struct keystone_usbphy *k_phy = platform_get_drvdata(pdev);
 +
 +      usb_remove_phy(&k_phy->usb_phy_gen.phy);
 +
 +      return 0;
 +}
 +
 +static const struct of_device_id keystone_usbphy_ids[] = {
 +      { .compatible = "ti,keystone-usbphy" },
 +      { }
 +};
 +MODULE_DEVICE_TABLE(of, keystone_usbphy_ids);
 +
 +static struct platform_driver keystone_usbphy_driver = {
 +      .probe          = keystone_usbphy_probe,
 +      .remove         = keystone_usbphy_remove,
 +      .driver         = {
 +              .name   = "keystone-usbphy",
 +              .owner  = THIS_MODULE,
 +              .of_match_table = of_match_ptr(keystone_usbphy_ids),
 +      },
 +};
 +
 +module_platform_driver(keystone_usbphy_driver);
 +
 +MODULE_ALIAS("platform:keystone-usbphy");
 +MODULE_AUTHOR("Texas Instruments Inc.");
 +MODULE_DESCRIPTION("Keystone USB phy driver");
 +MODULE_LICENSE("GPL v2");
index fa44c0f3e861c7c794394e4de3aa3e6e84c2f3f9,545844b7e7962f809f33812d9167f039b5fbc8d1..b42897b6474c3347f11d2daebedf648a91bbd49a
@@@ -167,9 -160,11 +167,9 @@@ static int mxs_phy_probe(struct platfor
        mxs_phy->phy.notify_disconnect  = mxs_phy_on_disconnect;
        mxs_phy->phy.type               = USB_PHY_TYPE_USB2;
  
 -      ATOMIC_INIT_NOTIFIER_HEAD(&mxs_phy->phy.notifier);
 -
        mxs_phy->clk = clk;
  
-       platform_set_drvdata(pdev, &mxs_phy->phy);
+       platform_set_drvdata(pdev, mxs_phy);
  
        ret = usb_add_phy_dev(&mxs_phy->phy);
        if (ret)
Simple merge