-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
arm: vt8500: Update arch-vt8500 to devicetree support.
Merged existing board files to a single dt-capable file. Converted irq and timer code to devicetree. Removed existing device files that are no longer required with devicetree support. All existing platform devices are converted to devicetree nodes except PWM. Removed restart.c and moved code into vt8500.c to remove duplicate PMC code. Signed-off-by: Tony Prisk <linux@prisktech.co.nz> Acked-by: Arnd Bergmann <arnd@arndb.de>
- Loading branch information
Tony Prisk
committed
Sep 21, 2012
1 parent
4e48b1c
commit e9a91de
Showing
20 changed files
with
405 additions
and
1,548 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1 @@ | ||
obj-y += devices.o gpio.o irq.o timer.o restart.o | ||
|
||
obj-$(CONFIG_VTWM_VERSION_VT8500) += devices-vt8500.o | ||
obj-$(CONFIG_VTWM_VERSION_WM8505) += devices-wm8505.o | ||
|
||
obj-$(CONFIG_MACH_BV07) += bv07.o | ||
obj-$(CONFIG_MACH_WM8505_7IN_NETBOOK) += wm8505_7in.o | ||
obj-$(CONFIG_ARCH_VT8500) += irq.o timer.o vt8500.o |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* linux/arch/arm/mach-vt8500/dt_common.h | ||
* | ||
* Copyright (C) 2012 Tony Prisk <linux@prisktech.co.nz> | ||
* | ||
* This software is licensed under the terms of the GNU General Public | ||
* License version 2, as published by the Free Software Foundation, and | ||
* may be copied, distributed, and modified under those terms. | ||
* | ||
* 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. | ||
* | ||
*/ | ||
|
||
#ifndef __ARCH_ARM_MACH_VT8500_DT_COMMON_H | ||
#define __ARCH_ARM_MACH_VT8500_DT_COMMON_H | ||
|
||
#include <linux/of.h> | ||
|
||
void __init vt8500_timer_init(void); | ||
int __init vt8500_irq_init(struct device_node *node, | ||
struct device_node *parent); | ||
|
||
/* defined in drivers/clk/clk-vt8500.c */ | ||
void __init vtwm_clk_init(void __iomem *pmc_base); | ||
|
||
#endif |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.