-
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.
Merge branch 'next/cleanup-header' of git://git.kernel.org/pub/scm/li…
…nux/kernel/git/kgene/linux-samsung into next/cleanup From Kukjin Kim: AS I commented, this makes <mach/*.h> local so that they could be removed. * 'next/cleanup-header' of git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung: (26 commits) ARM: S3C64XX: Fix missing header error with CONFIG_CPU_IDLE enabled ARM: S3C64XX: make regs-syscon-power.h local ARM: S3C64XX: make regs-sys.h local ARM: S3C64XX: make regs-srom.h local ARM: S3C64XX: make regs-modem.h local ARM: S3C64XX: make regs-gpio-memport.h local ARM: S3C64XX: make crag6410.h local ARM: S3C24XX: remove dsc.c and make regs-dsc.h local ARM: S3C24XX: remove idle.h ARM: S3C2412: cleanup regs-s3c2412.h ARM: S3C2416: remove regs-s3c2416-mem.h and regs-s3c2416.h ARM: S3C24XX: make vr1000-cpld.h, vr1000-irq.h and vr1000-map.h local ARM: S3C24XX: make otom-map.h local ARM: S3C24XX: make osiris-cpld.h and osiris-map.h local ARM: S3C24XX: make h1940.h and h1940-latch.h local ARM: S3C24XX: make gta02.h local ARM: S3C24XX: make bast-cpld.h, bast-irq.h and bast-map.h local ARM: S3C24XX: make anubis-cpld, anubis-irq and anubis-map local ARM: SAMSUNG: cleanup mach/gpio-fns.h gpio-track.h and gpio-nrs.h ARM: SAMSUNG: cleanup mach/regs-audss.h file ... Signed-off-by: Olof Johansson <olof@lixom.net>
- Loading branch information
Showing
105 changed files
with
836 additions
and
1,776 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 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 was deleted.
Oops, something went wrong.
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
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 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,53 @@ | ||
/* | ||
* Copyright (c) 2005 Simtec Electronics | ||
* http://www.simtec.co.uk/products/ | ||
* Ben Dooks <ben@simtec.co.uk> | ||
* | ||
* ANUBIS - CPLD control constants | ||
* ANUBIS - IRQ Number definitions | ||
* ANUBIS - Memory map definitions | ||
* | ||
* 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 __MACH_S3C24XX_ANUBIS_H | ||
#define __MACH_S3C24XX_ANUBIS_H __FILE__ | ||
|
||
/* CTRL2 - NAND WP control, IDE Reset assert/check */ | ||
|
||
#define ANUBIS_CTRL1_NANDSEL (0x3) | ||
|
||
/* IDREG - revision */ | ||
|
||
#define ANUBIS_IDREG_REVMASK (0x7) | ||
|
||
/* irq */ | ||
|
||
#define ANUBIS_IRQ_IDE0 IRQ_EINT2 | ||
#define ANUBIS_IRQ_IDE1 IRQ_EINT3 | ||
#define ANUBIS_IRQ_ASIX IRQ_EINT1 | ||
|
||
/* map */ | ||
|
||
/* start peripherals off after the S3C2410 */ | ||
|
||
#define ANUBIS_IOADDR(x) (S3C2410_ADDR((x) + 0x01800000)) | ||
|
||
#define ANUBIS_PA_CPLD (S3C2410_CS1 | (1<<26)) | ||
|
||
/* we put the CPLD registers next, to get them out of the way */ | ||
|
||
#define ANUBIS_VA_CTRL1 ANUBIS_IOADDR(0x00000000) | ||
#define ANUBIS_PA_CTRL1 ANUBIS_PA_CPLD | ||
|
||
#define ANUBIS_VA_IDREG ANUBIS_IOADDR(0x00300000) | ||
#define ANUBIS_PA_IDREG (ANUBIS_PA_CPLD + (3 << 23)) | ||
|
||
#define ANUBIS_IDEPRI ANUBIS_IOADDR(0x01000000) | ||
#define ANUBIS_IDEPRIAUX ANUBIS_IOADDR(0x01100000) | ||
#define ANUBIS_IDESEC ANUBIS_IOADDR(0x01200000) | ||
#define ANUBIS_IDESECAUX ANUBIS_IOADDR(0x01300000) | ||
|
||
#endif /* __MACH_S3C24XX_ANUBIS_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
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.