1. 30 4月, 2013 2 次提交
  2. 16 4月, 2013 1 次提交
  3. 11 4月, 2013 1 次提交
  4. 08 4月, 2013 2 次提交
  5. 04 4月, 2013 1 次提交
  6. 02 4月, 2013 1 次提交
  7. 26 3月, 2013 1 次提交
  8. 18 3月, 2013 1 次提交
  9. 25 2月, 2013 2 次提交
  10. 22 2月, 2013 1 次提交
  11. 15 2月, 2013 1 次提交
  12. 14 2月, 2013 2 次提交
  13. 13 2月, 2013 3 次提交
    • R
      mfd: omap-usb-host: override number of ports from platform data · ccac71a7
      Roger Quadros 提交于
      Both OMAP4 and 5 exhibit the same revision ID in the REVISION register
      but they have different number of ports i.e. 2 and 3 respectively.
      So we can't rely on REVISION register for number of ports on OMAP5
      and depend on platform data (or device tree) instead.
      Signed-off-by: NRoger Quadros <rogerq@ti.com>
      Reviewed-by: NFelipe Balbi <balbi@ti.com>
      ccac71a7
    • R
      ARM: OMAP: Consolidate OMAP USB-HS platform data (part 1/3) · 7f07863e
      Roger Quadros 提交于
      Let's have a single platform data structure for the OMAP's High-Speed
      USB host subsystem instead of having 3 separate ones i.e. one for
      board data, one for USB Host (UHH) module and one for USB-TLL module.
      
      This makes the code much simpler and avoids creating multiple copies of
      platform data.
      
      Part 1 touches platform headers
      Part 2 touches drivers
      Part 3 touches platform data
      Signed-off-by: NRoger Quadros <rogerq@ti.com>
      Reviewed-by: NFelipe Balbi <balbi@ti.com>
      7f07863e
    • M
      driver: net: ethernet: cpsw: dual emac interface implementation · d9ba8f9e
      Mugunthan V N 提交于
      The CPSW switch can act as Dual EMAC by segregating the switch ports
      using VLAN and port VLAN as per the TRM description in
      14.3.2.10.2 Dual Mac Mode
      
      Following CPSW components will be common for both the interfaces.
      * Interrupt source is common for both eth interfaces
      * Interrupt pacing is common for both interfaces
      * Hardware statistics is common for all the ports
      * CPDMA is common for both eth interface
      * CPTS is common for both the interface and it should not be enabled on
        both the interface as timestamping information doesn't contain port
        information.
      
      Constrains
      * Reserved VID of One port should not be used in other interface which will
        enable switching functionality
      * Same VID must not be used in both the interface which will enable switching
        functionality
      Signed-off-by: NMugunthan V N <mugunthanvnm@ti.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      d9ba8f9e
  14. 11 2月, 2013 1 次提交
  15. 08 2月, 2013 1 次提交
  16. 07 2月, 2013 3 次提交
  17. 06 2月, 2013 1 次提交
    • H
      iommu/shmobile: Add iommu driver for Renesas IPMMU modules · c2c460f7
      Hideki EIRAKU 提交于
      This is the Renesas IPMMU driver and IOMMU API implementation.
      
      The IPMMU module supports the MMU function and the PMB function.  The
      MMU function provides address translation by pagetable compatible with
      ARMv6.  The PMB function provides address translation including
      tile-linear translation.  This patch implements the MMU function.
      
      The iommu driver does not register a platform driver directly because:
      - the register space of the MMU function and the PMB function
        have a common register (used for settings flush), so they should ideally
        have a way to appropriately share this register.
      - the MMU function uses the IOMMU API while the PMB function does not.
      - the two functions may be used independently.
      Signed-off-by: NHideki EIRAKU <hdk@igel.co.jp>
      Signed-off-by: NJoerg Roedel <joro@8bytes.org>
      c2c460f7
  18. 04 2月, 2013 3 次提交
  19. 02 2月, 2013 1 次提交
  20. 28 1月, 2013 1 次提交
  21. 26 1月, 2013 1 次提交
  22. 18 1月, 2013 1 次提交
  23. 16 1月, 2013 2 次提交
  24. 15 1月, 2013 1 次提交
  25. 14 1月, 2013 3 次提交
  26. 12 1月, 2013 1 次提交
  27. 08 1月, 2013 1 次提交
    • S
      [media] coda: Fix build due to iram.h rename · e909c682
      Sascha Hauer 提交于
      commit c045e3f1 (ARM: imx: include iram.h rather than mach/iram.h) changed the
      location of iram.h, which causes the following build error when building the coda
      driver:
      
      drivers/media/platform/coda.c:27:23: error: mach/iram.h: No such file or directory
      drivers/media/platform/coda.c: In function 'coda_probe':
      drivers/media/platform/coda.c:2000: error: implicit declaration of function 'iram_alloc'
      drivers/media/platform/coda.c:2001: warning: assignment makes pointer from integer without a cast
      drivers/media/platform/coda.c: In function 'coda_remove':
      drivers/media/platform/coda.c:2024: error: implicit declaration of function 'iram_free'
      
      Since the content of iram.h is not imx specific, move it to
      include/linux/platform_data/imx-iram.h instead. This is an intermediate solution
      until the i.MX iram allocator is converted to the generic SRAM allocator.
      Signed-off-by: NSascha Hauer <s.hauer@pengutronix.de>
      Acked-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      e909c682