1. 15 Apr, 2013 19 commits
  2. 11 Apr, 2013 6 commits
  3. 10 Apr, 2013 2 commits
    • Gregory CLEMENT's avatar
      arm: mvebu: Fix the irq map function in SMP mode · 600468d0
      Gregory CLEMENT authored
      This patch fix the regression introduced by the commit 3202bf01
      "arm: mvebu: Improve the SMP support of the interrupt controller":
      GPIO IRQ were no longer delivered to the CPUs.
      
      To be delivered to a CPU an interrupt must be enabled at CPU level and
      at interrupt source level. Before the offending patch, all the
      interrupts were enabled at source level during map() function. Mask()
      and unmask() was done by handling the per-CPU part. It was fine when
      running in UP with only one CPU.
      
      The offending patch added support for SMP, in this case mask() and
      unmask() was done by handling the interrupt source level part. The
      per-CPU level part was handled by the affinity API to select the CPU
      which will receive the interrupt. (Due to some hardware limitation
      only one CPU at a time can received a given interrupt).
      
      For "normal" interrupt __setup_irq() was called when an irq was
      registered. irq_set_affinity() is called from this function, which
      enabled the interrupt on one of the CPUs. Whereas for GPIO IRQ which
      were chained interrupts, the irq_set_affinity() was never called and
      none of the CPUs was selected to receive the interrupt.
      
      With this patch all the interrupt are enable on the current CPU during
      map() function. Enabling the interrupts on a CPU doesn't depend
      anymore on irq_set_affinity() and then the chained irq are not anymore
      a special case. However the CPU which will receive the irq can still
      be modify later using irq_set_affinity().
      
      Tested with Mirabox (A370) and Openblocks AX3 (AXP), rootfs mounted
      over NFS, compiled with CONFIG_SMP=y/N.
      Signed-off-by: default avatarGregory CLEMENT <gregory.clement@free-electrons.com>
      Reported-by: default avatarRyan Press <ryan@presslab.us>
      Investigated-by: default avatarEzequiel Garcia <ezequiel.garcia@free-electrons.com>
      Tested-by: default avatarEzequiel Garcia <ezequiel.garcia@free-electrons.com>
      Tested-by: default avatarRyan Press <ryan@presslab.us>
      Signed-off-by: default avatarJason Cooper <jason@lakedaemon.net>
      600468d0
    • Nigel Roberts's avatar
      aaaf165b
  4. 03 Apr, 2013 3 commits
  5. 01 Apr, 2013 1 commit
  6. 31 Mar, 2013 3 commits
  7. 30 Mar, 2013 5 commits
  8. 28 Mar, 2013 1 commit
    • Thomas Petazzoni's avatar
      bus: introduce an Marvell EBU MBus driver · fddddb52
      Thomas Petazzoni authored
      The Marvell EBU SoCs have a configurable physical address space
      layout: the physical ranges of memory used to address PCI(e)
      interfaces, NOR flashes, SRAM and various other types of memory are
      configurable by software, through a mechanism of so-called 'address
      decoding windows'.
      
      This new driver mvebu-mbus consolidates the existing code to address
      the configuration of these memory ranges, which is spread into
      mach-mvebu, mach-orion5x, mach-mv78xx0, mach-dove and mach-kirkwood.
      
      Following patches convert each Marvell EBU SoC family to use this
      driver, therefore removing the old code that was configuring the
      address decoding windows.
      
      It is worth mentioning that the MVEBU_MBUS Kconfig option is
      intentionally added as a blind option. The new driver implements and
      exports the mv_mbus_dram_info() function, which is used by various
      Marvell drivers throughout the tree to get access to window
      configuration parameters that they require. This function is also
      implemented in arch/arm/plat-orion/addr-map.c, which ultimately gets
      removed at the end of this patch series. So, in order to preserve
      bisectability, we want to ensure that *either* this new driver, *or*
      the legacy code in plat-orion/addr-map.c gets compiled in.
      
      By making MVEBU_MBUS a blind option, we are sure that only a platform
      that does 'select MVEBU_MBUS' will get this new driver compiled
      in. Therefore, throughout the next patches that convert the Marvell
      sub-architectures one after the other to this new driver, we add the
      'select MVEBU_MBUS' and also ensure to remove plat-orion/addr-map.c
      from the build for this specific sub-architecture. This ensures that
      bisectability is preserved.
      
      Ealier versions of this driver had a DT binding, but since those were
      not yet agreed upon, they were removed. The driver still uses
      of_device_id to find the SoC specific details according to the string
      passed to mvebu_mbus_init(). The plan is to re-introduce a proper DT
      binding as a followup set of patches.
      Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
      Acked-by: default avatarArnd Bergmann <arnd@arndb.de>
      Signed-off-by: default avatarJason Cooper <jason@lakedaemon.net>
      fddddb52