-
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.
- Loading branch information
Kiyoshi Ueda
authored and
Jens Axboe
committed
Jan 28, 2008
1 parent
050c639
commit f620b98
Showing
328 changed files
with
3,894 additions
and
29,244 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: 68fbda7de07e56eb90dd6e58a162527411b388b1 | ||
refs/heads/master: 336cdb4003200a90f4fc52a4e9ccc2baa570fffb |
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,81 @@ | ||
/* | ||
* linux/arch/arm/boot/compressed/head-at91rm9200.S | ||
* | ||
* Copyright (C) 2003 SAN People | ||
* | ||
* 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. | ||
* | ||
*/ | ||
#include <asm/mach-types.h> | ||
|
||
.section ".start", "ax" | ||
|
||
@ Atmel AT91RM9200-DK : 262 | ||
mov r3, #(MACH_TYPE_AT91RM9200DK & 0xff) | ||
orr r3, r3, #(MACH_TYPE_AT91RM9200DK & 0xff00) | ||
cmp r7, r3 | ||
beq 99f | ||
|
||
@ Cogent CSB337 : 399 | ||
mov r3, #(MACH_TYPE_CSB337 & 0xff) | ||
orr r3, r3, #(MACH_TYPE_CSB337 & 0xff00) | ||
cmp r7, r3 | ||
beq 99f | ||
|
||
@ Cogent CSB637 : 648 | ||
mov r3, #(MACH_TYPE_CSB637 & 0xff) | ||
orr r3, r3, #(MACH_TYPE_CSB637 & 0xff00) | ||
cmp r7, r3 | ||
beq 99f | ||
|
||
@ Atmel AT91RM9200-EK : 705 | ||
mov r3, #(MACH_TYPE_AT91RM9200EK & 0xff) | ||
orr r3, r3, #(MACH_TYPE_AT91RM9200EK & 0xff00) | ||
cmp r7, r3 | ||
beq 99f | ||
|
||
@ Conitec Carmeva : 769 | ||
mov r3, #(MACH_TYPE_CARMEVA & 0xff) | ||
orr r3, r3, #(MACH_TYPE_CARMEVA & 0xff00) | ||
cmp r7, r3 | ||
beq 99f | ||
|
||
@ KwikByte KB920x : 612 | ||
mov r3, #(MACH_TYPE_KB9200 & 0xff) | ||
orr r3, r3, #(MACH_TYPE_KB9200 & 0xff00) | ||
cmp r7, r3 | ||
beq 99f | ||
|
||
@ Embest ATEB9200 : 923 | ||
mov r3, #(MACH_TYPE_ATEB9200 & 0xff) | ||
orr r3, r3, #(MACH_TYPE_ATEB9200 & 0xff00) | ||
cmp r7, r3 | ||
beq 99f | ||
|
||
@ Sperry-Sun KAFA : 662 | ||
mov r3, #(MACH_TYPE_KAFA & 0xff) | ||
orr r3, r3, #(MACH_TYPE_KAFA & 0xff00) | ||
cmp r7, r3 | ||
beq 99f | ||
|
||
@ picotux 200 : 963 | ||
mov r3, #(MACH_TYPE_PICOTUX2XX & 0xff) | ||
orr r3, r3, #(MACH_TYPE_PICOTUX2XX & 0xff00) | ||
cmp r7, r3 | ||
beq 99f | ||
|
||
@ Ajeco 1ARM : 1075 | ||
mov r3, #(MACH_TYPE_ONEARM & 0xff) | ||
orr r3, r3, #(MACH_TYPE_ONEARM & 0xff00) | ||
cmp r7, r3 | ||
beq 99f | ||
|
||
@ Unknown board, use the AT91RM9200DK board | ||
@ mov r7, #MACH_TYPE_AT91RM9200 | ||
mov r7, #(MACH_TYPE_AT91RM9200DK & 0xff) | ||
orr r7, r7, #(MACH_TYPE_AT91RM9200DK & 0xff00) | ||
|
||
99: |
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.