All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH 0/7] ARM: davinci: add support for the am1808 based enbw_cmc board
@ 2012-01-23  8:56 ` Heiko Schocher
  0 siblings, 0 replies; 88+ messages in thread
From: Heiko Schocher @ 2012-01-23  8:56 UTC (permalink / raw)
  To: davinci-linux-open-source-VycZQUHpC/PFrsHnngEfi1aTQe2KTcn/
  Cc: Heiko Schocher,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
	linux-mtd-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-i2c-u79uwXL29TY76Z2rM5mHXA, netdev-u79uwXL29TY76Z2rM5mHXA,
	David Woodhouse, Ben Dooks, Wolfram Sang, Sekhar Nori,
	Kevin Hilman, Wolfgang Denk

add support for the davinci am1808 based enbw_cmc board.

This is thought as a RFC patchserie, as this patches
surely have to be discussed:

- ARM: davinci: configure davinci aemif chipselects through OF
  not moved to mfd, as mentioned in this discussion:
  http://davinci-linux-open-source.1494791.n2.nabble.com/PATCH-arm-davinci-configure-davinci-aemif-chipselects-through-OF-td7059739.html
  instead use a phandle in the DTS, so drivers which
  uses the davinci aemif, can call davinci_aemif_setup_timing_of()

  This is just thought as an RFC ... The enbw_cmc board
  support not really need to setup this bus timings, as
  they are setup in U-Boot ... but I want to post this,
  as I think, it is a nice to have, and I am not really
  sure, if this has to be a MFD device (If so, all bus
  interfaces for other SoCs should be converted also to
  MFD devices) ... as an example how this can be used
  I add this to the davinci nand controller OF support
  patch, in this patchserie.

- ARM: davinci: mux: add OF support
  I want to get rid of the pin setup code in board code ...
  This patch introduces a davinci_cfg_reg_of() function,
  which davinci drivers can call, if they found a
  "pinmux-handle", so used in the following drivers in
  this patchserie:

  drivers/net/ethernet/ti/davinci_emac
  drivers/i2c/busses/i2c-davinci.c
  drivers/mtd/nand/davinci_nand.c

- post this board support with USB support, even though
  USB is only working with the 10 ms "workaround", posted here:
  http://comments.gmane.org/gmane.linux.usb.general/54505
  I see this issue also on the AM1808 TMDXEXP1808L evalboard.

- MMC and USB are not using OF support yet, ideas how to port
  this are welcome. I need for USB and MMC board specific
  callbacks, how to solve this with OF support?

Signed-off-by: Heiko Schocher <hs-ynQEQJNshbs@public.gmane.org>
Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Cc: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ@public.gmane.org
Cc: davinci-linux-open-source-VycZQUHpC/PFrsHnngEfi1aTQe2KTcn/@public.gmane.org
Cc: linux-mtd-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Cc: linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: netdev-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: David Woodhouse <dwmw2-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org>
Cc: Ben Dooks <ben-linux-elnMNo+KYs3YtjvyW6yDsg@public.gmane.org>
Cc: Wolfram Sang <w.sang-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org>
Cc: Sekhar Nori <nsekhar-l0cyMroinI0@public.gmane.org>
Cc: Kevin Hilman <khilman-l0cyMroinI0@public.gmane.org>
Cc: Wolfgang Denk <wd-ynQEQJNshbs@public.gmane.org>

Heiko Schocher (7):
  ARM: davinci, intc: Add OF support for TI interrupt controller
  ARM: davinci: configure davinci aemif chipselects through OF
  ARM: davinci: mux: add OF support
  ARM: davinci: net: davinci_emac: add OF support
  ARM: davinci: i2c: add OF support
  ARM: mtd: nand: davinci: add OF support for davinci nand controller
  ARM: davinci: add support for the am1808 based enbw_cmc board

 .../devicetree/bindings/arm/davinci/aemif.txt      |  119 ++++++
 .../bindings/arm/davinci/davinci_emac.txt          |   46 +++
 .../devicetree/bindings/arm/davinci/i2c.txt        |   39 ++
 .../devicetree/bindings/arm/davinci/intc.txt       |   26 ++
 .../devicetree/bindings/arm/davinci/mux.txt        |   40 ++
 .../devicetree/bindings/arm/davinci/nand.txt       |   72 ++++
 arch/arm/boot/dts/enbw_cmc.dts                     |  286 +++++++++++++++
 arch/arm/configs/enbw_cmc_defconfig                |  125 +++++++
 arch/arm/mach-davinci/Kconfig                      |    8 +
 arch/arm/mach-davinci/Makefile                     |    1 +
 arch/arm/mach-davinci/aemif.c                      |   86 +++++-
 arch/arm/mach-davinci/board-enbw-cmc.c             |  384 ++++++++++++++++++++
 arch/arm/mach-davinci/cp_intc.c                    |   51 +++
 arch/arm/mach-davinci/include/mach/aemif.h         |    1 +
 arch/arm/mach-davinci/include/mach/cp_intc.h       |    1 +
 arch/arm/mach-davinci/include/mach/mux.h           |    2 +
 arch/arm/mach-davinci/include/mach/uncompress.h    |    1 +
 arch/arm/mach-davinci/mux.c                        |   73 ++++-
 drivers/i2c/busses/i2c-davinci.c                   |   43 +++
 drivers/mtd/nand/davinci_nand.c                    |   78 ++++-
 drivers/net/ethernet/ti/davinci_emac.c             |  111 ++++++-
 21 files changed, 1588 insertions(+), 5 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/arm/davinci/aemif.txt
 create mode 100644 Documentation/devicetree/bindings/arm/davinci/davinci_emac.txt
 create mode 100644 Documentation/devicetree/bindings/arm/davinci/i2c.txt
 create mode 100644 Documentation/devicetree/bindings/arm/davinci/intc.txt
 create mode 100644 Documentation/devicetree/bindings/arm/davinci/mux.txt
 create mode 100644 Documentation/devicetree/bindings/arm/davinci/nand.txt
 create mode 100644 arch/arm/boot/dts/enbw_cmc.dts
 create mode 100644 arch/arm/configs/enbw_cmc_defconfig
 create mode 100644 arch/arm/mach-davinci/board-enbw-cmc.c

-- 
1.7.7.5

^ permalink raw reply	[flat|nested] 88+ messages in thread

end of thread, other threads:[~2012-02-14  7:16 UTC | newest]

Thread overview: 88+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-23  8:56 [RFC PATCH 0/7] ARM: davinci: add support for the am1808 based enbw_cmc board Heiko Schocher
2012-01-23  8:56 ` Heiko Schocher
2012-01-23  8:56 ` Heiko Schocher
     [not found] ` <1327308967-8092-1-git-send-email-hs-ynQEQJNshbs@public.gmane.org>
2012-01-23  8:56   ` [RFC PATCH 1/7] ARM: davinci, intc: Add OF support for TI interrupt controller Heiko Schocher
2012-01-23  8:56     ` Heiko Schocher
2012-02-02  4:54     ` Grant Likely
2012-02-02  4:54       ` Grant Likely
     [not found]       ` <20120202045459.GI15343-e0URQFbLeQY2iJbIjFUEsiwD8/FfD2ys@public.gmane.org>
2012-02-06  6:36         ` Heiko Schocher
2012-02-06  6:36           ` Heiko Schocher
     [not found]           ` <4F2F74DB.7010604-ynQEQJNshbs@public.gmane.org>
2012-02-14  7:15             ` Heiko Schocher
2012-02-14  7:15               ` Heiko Schocher
2012-01-23  8:56   ` [RFC PATCH 2/7 v2] ARM: davinci: configure davinci aemif chipselects through OF Heiko Schocher
2012-01-23  8:56     ` Heiko Schocher
2012-01-23  8:56   ` [RFC PATCH 3/7] ARM: davinci: mux: add OF support Heiko Schocher
2012-01-23  8:56     ` Heiko Schocher
2012-01-23  8:56   ` [RFC PATCH 5/7] ARM: davinci: i2c: " Heiko Schocher
2012-01-23  8:56     ` Heiko Schocher
     [not found]     ` <1327308967-8092-6-git-send-email-hs-ynQEQJNshbs@public.gmane.org>
2012-01-23 20:35       ` Sylwester Nawrocki
2012-01-23 20:35         ` Sylwester Nawrocki
     [not found]         ` <4F1DC480.4010603-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2012-01-24  7:18           ` Heiko Schocher
2012-01-24  7:18             ` Heiko Schocher
     [not found]             ` <4F1E5B44.4090200-ynQEQJNshbs@public.gmane.org>
2012-01-24  9:51               ` Sylwester Nawrocki
2012-01-24  9:51                 ` Sylwester Nawrocki
     [not found]                 ` <4F1E7F36.50505-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2012-01-30 20:13                   ` Grant Likely
2012-01-30 20:13                     ` Grant Likely
     [not found]                     ` <20120130201307.GV28397-e0URQFbLeQY2iJbIjFUEsiwD8/FfD2ys@public.gmane.org>
2012-01-31  7:31                       ` Heiko Schocher
2012-01-31  7:31                         ` Heiko Schocher
2012-02-05 20:44                       ` Sylwester Nawrocki
2012-02-05 20:44                         ` Sylwester Nawrocki
2012-01-30 20:04       ` Grant Likely
2012-01-30 20:04         ` Grant Likely
     [not found]         ` <20120130200436.GU28397-e0URQFbLeQY2iJbIjFUEsiwD8/FfD2ys@public.gmane.org>
2012-01-31  7:14           ` Heiko Schocher
2012-01-31  7:14             ` Heiko Schocher
2012-02-13 23:37       ` Ben Dooks
2012-02-13 23:37         ` Ben Dooks
     [not found]         ` <20120213233726.GK2999-RazCHl0VsYgkUSuvROHNpA@public.gmane.org>
2012-02-14  7:16           ` Heiko Schocher
2012-02-14  7:16             ` Heiko Schocher
2012-01-23  8:56   ` [RFC PATCH 6/7] ARM: mtd: nand: davinci: add OF support for davinci nand controller Heiko Schocher
2012-01-23  8:56     ` Heiko Schocher
2012-01-23  8:56     ` Heiko Schocher
     [not found]     ` <1327308967-8092-7-git-send-email-hs-ynQEQJNshbs@public.gmane.org>
2012-01-23 23:59       ` Scott Wood
2012-01-23 23:59         ` Scott Wood
2012-01-23 23:59         ` Scott Wood
     [not found]         ` <4F1DF465.60206-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2012-01-24  7:23           ` Heiko Schocher
2012-01-24  7:23             ` Heiko Schocher
2012-01-24  7:23             ` Heiko Schocher
     [not found]             ` <4F1E5C82.60108-ynQEQJNshbs@public.gmane.org>
2012-01-24 19:45               ` Scott Wood
2012-01-24 19:45                 ` Scott Wood
2012-01-24 19:45                 ` Scott Wood
     [not found]                 ` <4F1F0A3E.40805-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2012-01-25  7:09                   ` Heiko Schocher
2012-01-25  7:09                     ` Heiko Schocher
2012-01-25  7:09                     ` Heiko Schocher
     [not found]                     ` <4F1FAAAE.2060007-ynQEQJNshbs@public.gmane.org>
2012-01-26 20:33                       ` Scott Wood
2012-01-26 20:33                         ` Scott Wood
2012-01-26 20:33                         ` Scott Wood
     [not found]                         ` <4F21B8AC.40002-KZfg59tc24xl57MIdRCFDg@public.gmane.org>
2012-01-27  6:40                           ` Heiko Schocher
2012-01-27  6:40                             ` Heiko Schocher
2012-01-27  6:40                             ` Heiko Schocher
     [not found]                             ` <4F2246C0.6020905-ynQEQJNshbs@public.gmane.org>
2012-01-27 17:02                               ` Scott Wood
2012-01-27 17:02                                 ` Scott Wood
2012-01-27 17:02                                 ` Scott Wood
2012-01-23  8:56   ` [RFC PATCH 7/7] ARM: davinci: add support for the am1808 based enbw_cmc board Heiko Schocher
2012-01-23  8:56     ` Heiko Schocher
2012-01-23  8:56     ` Heiko Schocher
     [not found]     ` <1327308967-8092-8-git-send-email-hs-ynQEQJNshbs@public.gmane.org>
2012-01-30 20:32       ` Grant Likely
2012-01-30 20:32         ` Grant Likely
2012-01-30 20:32         ` Grant Likely
     [not found]         ` <20120130203252.GX28397-e0URQFbLeQY2iJbIjFUEsiwD8/FfD2ys@public.gmane.org>
2012-01-31 13:04           ` Heiko Schocher
2012-01-31 13:04             ` Heiko Schocher
2012-01-31 13:04             ` Heiko Schocher
     [not found]             ` <4F27E6E0.1050608-ynQEQJNshbs@public.gmane.org>
2012-02-01 10:20               ` Sergei Shtylyov
2012-02-01 10:20                 ` Sergei Shtylyov
2012-02-01 10:20                 ` Sergei Shtylyov
     [not found]                 ` <4F2911DD.6010405-Igf4POYTYCDQT0dZR+AlfA@public.gmane.org>
2012-02-02  0:17                   ` Grant Likely
2012-02-02  0:17                     ` Grant Likely
2012-02-02  0:17                     ` Grant Likely
2012-01-23  8:56 ` [RFC PATCH 4/7] ARM: davinci: net: davinci_emac: add OF support Heiko Schocher
2012-01-23  8:56   ` Heiko Schocher
2012-01-23 19:20   ` Anatoly Sivov
2012-01-23 19:20     ` Anatoly Sivov
2012-01-24  6:14     ` Heiko Schocher
2012-01-24  6:14       ` Heiko Schocher
2012-01-30 20:22   ` Grant Likely
2012-01-30 20:22     ` Grant Likely
2012-01-31 11:27     ` Heiko Schocher
2012-01-31 11:27       ` Heiko Schocher
     [not found]       ` <4F27D00F.4040807-ynQEQJNshbs@public.gmane.org>
2012-02-02  0:19         ` Grant Likely
2012-02-02  0:19           ` Grant Likely

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.