-
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.
yaml --- r: 355466 b: refs/heads/master c: c38cd87 h: refs/heads/master v: v3
- Loading branch information
Arnd Bergmann
committed
Feb 15, 2013
1 parent
707bb34
commit 4f0b4f0
Showing
13 changed files
with
93 additions
and
38 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: dad2d9e666cbd733afff855f5224dd7e8a7996d3 | ||
refs/heads/master: c38cd8729c90495687ad027a993099d9972ffbf1 |
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 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 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 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 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 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 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 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,17 +1,12 @@ | ||
config ARCH_VT8500 | ||
bool | ||
bool "VIA/WonderMedia 85xx" if ARCH_MULTI_V5 | ||
default ARCH_VT8500_SINGLE | ||
select ARCH_HAS_CPUFREQ | ||
select ARCH_REQUIRE_GPIOLIB | ||
select CLKDEV_LOOKUP | ||
select CPU_ARM926T | ||
select GENERIC_CLOCKEVENTS | ||
select GENERIC_GPIO | ||
select HAVE_CLK | ||
help | ||
Support for VIA/WonderMedia VT8500/WM85xx System-on-Chip. | ||
|
||
config ARCH_WM8505 | ||
bool "VIA/Wondermedia 85xx and WM8650" | ||
depends on ARCH_MULTI_V5 | ||
select ARCH_VT8500 | ||
select CPU_ARM926T | ||
help |
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 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,26 @@ | ||
/* | ||
* arch/arm/mach-vt8500/include/mach/timex.h | ||
* | ||
* Copyright (C) 2010 Alexey Charkov <alchark@gmail.com> | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 2 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* 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. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program; if not, write to the Free Software | ||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
*/ | ||
|
||
#ifndef MACH_TIMEX_H | ||
#define MACH_TIMEX_H | ||
|
||
#define CLOCK_TICK_RATE (3000000) | ||
|
||
#endif /* MACH_TIMEX_H */ |
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,37 @@ | ||
/* arch/arm/mach-vt8500/include/mach/uncompress.h | ||
* | ||
* Copyright (C) 2010 Alexey Charkov <alchark@gmail.com> | ||
* | ||
* Based on arch/arm/mach-dove/include/mach/uncompress.h | ||
* | ||
* 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. | ||
* | ||
*/ | ||
|
||
#define UART0_PHYS 0xd8200000 | ||
#define UART0_ADDR(x) *(volatile unsigned char *)(UART0_PHYS + x) | ||
|
||
static void putc(const char c) | ||
{ | ||
while (UART0_ADDR(0x1c) & 0x2) | ||
/* Tx busy, wait and poll */; | ||
|
||
UART0_ADDR(0) = c; | ||
} | ||
|
||
static void flush(void) | ||
{ | ||
} | ||
|
||
/* | ||
* nothing to do | ||
*/ | ||
#define arch_decomp_setup() | ||
#define arch_decomp_wdog() |
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