[PATCH 10/20] x86: fdt: Create basic .dtsi file for coreboot

2012-11-03 Thread Simon Glass
This contains just the minimum information for a coreboot-based board. Signed-off-by: Stefan Reinauer Signed-off-by: Gabe Black Signed-off-by: Simon Glass --- arch/x86/dts/coreboot.dtsi | 16 arch/x86/dts/skeleton.dtsi | 13 + 2 files changed, 29 insertions(+),

Re: [PATCH 3/5] ARM: Exynos: add device tree support for MCT controller driver

2012-11-03 Thread Sylwester Nawrocki
Hi Thomas, On 11/03/2012 03:45 PM, Thomas Abraham wrote: Allow the MCT controller base address and interrupts to be obtained from device tree and remove unused static definitions of these. The non-dt support for Exynos5250 is removed but retained for Exynos4210 based platforms. Cc: Changhwan Yo

[PATCH] ARM: dts: add board dts file for Exynos4412 based SMDK board

2012-11-03 Thread Thomas Abraham
Add a minimal board dts file for Samsung Exynos4412 based SMDK board. Signed-off-by: Thomas Abraham --- This patch depends the on the following patch posted by Tomasz Figa. "ARM: dts: exynos4: Add support for Exynos4x12 SoCs" arch/arm/boot/dts/Makefile|1 + arch/arm/boot/dts

[PATCH 5/5] ARM: dts: add mct device tree node for all supported Exynos SoC's

2012-11-03 Thread Thomas Abraham
Add MCT device tree node for Exynos4210, Exynos4212, Exynos4412 and Exynos5250. Cc: Changhwan Youn Signed-off-by: Thomas Abraham --- arch/arm/boot/dts/exynos4210.dtsi |8 arch/arm/boot/dts/exynos4212.dtsi | 10 ++ arch/arm/boot/dts/exynos4412.dtsi |8 arch/ar

[PATCH 4/5] ARM: Exynos: remove static io-remapping of mct registers for Exynos5

2012-11-03 Thread Thomas Abraham
With device tree support enabled for MCT controller, the static io-remapping of the MCT controller address space is removed for Exynos5 platforms (which supports only device tree based boot). Cc: Changhwan Youn Signed-off-by: Thomas Abraham --- arch/arm/mach-exynos/common.c |5 ---

[PATCH 3/5] ARM: Exynos: add device tree support for MCT controller driver

2012-11-03 Thread Thomas Abraham
Allow the MCT controller base address and interrupts to be obtained from device tree and remove unused static definitions of these. The non-dt support for Exynos5250 is removed but retained for Exynos4210 based platforms. Cc: Changhwan Youn Signed-off-by: Thomas Abraham --- .../bindings/timer/s

[PATCH 2/5] ARM: Exynos: prepare an array of MCT interrupt numbers and use it

2012-11-03 Thread Thomas Abraham
Instead of using soc_is_xxx macro at more than one place in the MCT controller driver to decide the MCT interrpt number to be setup, populate a table of known MCT global and local timer interrupts and use the values in table to setup the MCT interrupts. This also helps in adding device tree suppor

[PATCH 1/5] ARM: Exynos: add a register base address variable in mct controller driver

2012-11-03 Thread Thomas Abraham
All the MCT register read/writes use a fixed remapped address S5P_VA_SYSTIMER. With device tree support for MCT controller, it is possible to remove the static remap of the MCT controller address space and do the remap during the initialization of the MCT controller with the physical address obtain

[PATCH 0/5] ARM: Exynos: Enable device tree support for MCT controller

2012-11-03 Thread Thomas Abraham
This patch series adds device tree support for Exynos4/5 MCT controller. This series depends on the device tree and smp support patches for Exynos4x12 posted by Tomasz Figa. This patch series has been tested on Exynos4210 based Origen board, Exynos4412 based SMDK board and Exynos5250 based SMDK boa

[PATCH v3 2/2] USB: DWC3: EXYNOS: Remove platform data for dwc3-exynos

2012-11-03 Thread Vivek Gautam
We are removing plat data which was used till now to init and exit phy. We no longer need this since dwc3-core takes care of initializing and shutting-down the phy using usb_phy_init() and usb_phy_shutdown(). Signed-off-by: Vivek Gautam --- drivers/usb/dwc3/dwc3-exynos.c | 16

[PATCH v3 1/2] USB: dwc3-exynos: Add support for device tree

2012-11-03 Thread Vivek Gautam
This patch adds support to parse probe data for dwc3-exynos driver using device tree. Signed-off-by: Vivek Gautam --- drivers/usb/dwc3/dwc3-exynos.c | 20 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/drivers/usb/dwc3/dwc3-exynos.c b/drivers/usb/dwc3/dwc3

[PATCH v3 0/2] USB: dwc3-exynos: Adding device tree support

2012-11-03 Thread Vivek Gautam
Changes from v2: - Respined for 'dwc3' branch on Felipe's usb tree. Changes from v1: - Removed setting-up of "dev.coherent_dma_mask", since of/platform.c itself takes care of it. Vivek Gautam (2): USB: dwc3-exynos: Add support for device tree USB: DWC3: EXYNOS: Remove platform data for d