-
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: 339851 b: refs/heads/master c: 6ade6e0 h: refs/heads/master i: 339849: cb841b0 339847: 8b74493 v: v3
- Loading branch information
Michael Walle
authored and
Jason Cooper
committed
Nov 19, 2012
1 parent
c4fe397
commit 71d0c4a
Showing
853 changed files
with
11,527 additions
and
12,584 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: 0f9cb211ba5db93d488fe6b154138231fdd0e22d | ||
refs/heads/master: 6ade6e0d643bcaf973b096c4beed1dbdff52bf86 |
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
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
* linux/arch/arm/boot/compressed/head-vt8500.S | ||
* | ||
* Copyright (C) 2010 Alexey Charkov <alchark@gmail.com> | ||
* | ||
* VIA VT8500 specific tweaks. This is merged into head.S by the linker. | ||
* | ||
*/ | ||
|
||
#include <linux/linkage.h> | ||
#include <asm/mach-types.h> | ||
|
||
.section ".start", "ax" | ||
|
||
__VT8500_start: | ||
@ Compare the SCC ID register against a list of known values | ||
ldr r1, .SCCID | ||
ldr r3, [r1] | ||
|
||
@ VT8500 override | ||
ldr r4, .VT8500SCC | ||
cmp r3, r4 | ||
ldreq r7, .ID_BV07 | ||
beq .Lendvt8500 | ||
|
||
@ WM8505 override | ||
ldr r4, .WM8505SCC | ||
cmp r3, r4 | ||
ldreq r7, .ID_8505 | ||
beq .Lendvt8500 | ||
|
||
@ Otherwise, leave the bootloader's machine id untouched | ||
|
||
.SCCID: | ||
.word 0xd8120000 | ||
.VT8500SCC: | ||
.word 0x34000102 | ||
.WM8505SCC: | ||
.word 0x34260103 | ||
|
||
.ID_BV07: | ||
.word MACH_TYPE_BV07 | ||
.ID_8505: | ||
.word MACH_TYPE_WM8505_7IN_NETBOOK | ||
|
||
.Lendvt8500: |
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
Oops, something went wrong.