-
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: 123832 b: refs/heads/master c: a08ab63 h: refs/heads/master v: v3
- Loading branch information
Ben Dooks
committed
Dec 15, 2008
1 parent
221ca99
commit cc624f2
Showing
11 changed files
with
107 additions
and
2 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: 9bc1aaeac0118611c30edf84995ebad5adfd6822 | ||
refs/heads/master: a08ab63761730634bbbf8f361d1a058c1f4af9c5 |
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,8 @@ | ||
# arch/arm/mach-s3c6400/Kconfig | ||
# | ||
# Copyright 2008 Openmoko, Inc. | ||
# Simtec Electronics, Ben Dooks <ben@simtec.co.uk> | ||
# | ||
# Licensed under GPLv2 | ||
|
||
# Currently nothing here, this will be added later |
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,15 @@ | ||
# arch/arm/mach-s3c6400/Makefile | ||
# | ||
# Copyright 2008 Openmoko, Inc. | ||
# Copyright 2008 Simtec Electronics | ||
# | ||
# Licensed under GPLv2 | ||
|
||
obj-y := | ||
obj-m := | ||
obj-n := | ||
obj- := | ||
|
||
# Core support for S3C6400 system | ||
|
||
obj-n += blank.o |
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,2 @@ | ||
zreladdr-y := 0x50008000 | ||
params_phys-y := 0x50000100 |
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,21 @@ | ||
/* arch/arm/mach-s3c6400/include/mach/memory.h | ||
* | ||
* Copyright 2008 Openmoko, Inc. | ||
* Copyright 2008 Simtec Electronics | ||
* Ben Dooks <ben@simtec.co.uk> | ||
* http://armlinux.simtec.co.uk/ | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
*/ | ||
|
||
#ifndef __ASM_ARCH_MEMORY_H | ||
#define __ASM_ARCH_MEMORY_H | ||
|
||
#define PHYS_OFFSET UL(0x50000000) | ||
|
||
#define __virt_to_bus(x) __virt_to_phys(x) | ||
#define __bus_to_virt(x) __phys_to_virt(x) | ||
|
||
#endif |
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,8 @@ | ||
# arch/arm/mach-s3c6410/Kconfig | ||
# | ||
# Copyright 2008 Openmoko, Inc. | ||
# Copyright 2008 Simtec Electronics | ||
# | ||
# Licensed under GPLv2 | ||
|
||
# Configuration options for the S3C6410 CPU |
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,23 @@ | ||
# arch/arm/plat-s3c64xx/Kconfig | ||
# | ||
# Copyright 2008 Openmoko, Inc. | ||
# Copyright 2008 Simtec Electronics | ||
# Ben Dooks <ben@simtec.co.uk> | ||
# | ||
# Licensed under GPLv2 | ||
|
||
config PLAT_S3C64XX | ||
bool | ||
depends on ARCH_S3C64XX | ||
select PLAT_S3C | ||
default y | ||
select NO_IOPORT | ||
select ARCH_REQUIRE_GPIOLIB | ||
help | ||
Base platform code for any Samsung S3C64XX device | ||
|
||
if PLAT_S3C64XX | ||
|
||
# Configuration options shared by all S3C64XX implementations | ||
|
||
endif |
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,13 @@ | ||
# arch/arm/plat-s3c64xx/Makefile | ||
# | ||
# Copyright 2008 Openmoko, Inc. | ||
# Copyright 2008 Simtec Electronics | ||
# | ||
# Licensed under GPLv2 | ||
|
||
obj-y := | ||
obj-m := | ||
obj-n := dummy.o | ||
obj- := | ||
|
||
# Core files |