summaryrefslogtreecommitdiff
path: root/include/asm-blackfin
Commit message (Collapse)AuthorAgeLines
* Introduce phys_size_t and move phys_addr_t into asm/types.hKumar Gala2008-04-13-2/+3
| | | | | | | Also add CONFIG_PHYS_64BIT on powerpc to deal with 32-bit ppc's that have larger physical addresses like 44x, 85xx, and 86xx. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
* Blackfin: unify cpu and boot modesMike Frysinger2008-03-30-3/+3
| | | | | | | | All of the duplicated code for Blackfin processors and boot modes have been unified. After all, the core is the same for all processors, just the peripheral set differs (which gets handled in the drivers). Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* The patch introduces the CRITICAL feature of POST tests. If the test marked ↵Yuri Tikhonov2008-03-18-0/+1
| | | | | | | as POST_CRITICAL fails then the alternative, post_critical, boot-command is used. If this command is not defined then U-Boot enters into interactive mode. Signed-off-by: Dmitry Rakhchev <rda@emcraft.com> Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
* Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit ↵Shinya Kuribayashi2008-02-23-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | targets. ---------------------------------------------------------------- Olaf Hering [Wed, 17 Oct 2007 06:27:13 +0000 (23:27 -0700)] Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets. GCC can be made to warn about usage of long long types with ISO C90 (-ansi), but only with -pedantic. You can write this in a way that even then it doesn't cause warnings, namely by: #ifdef __GNUC__ __extension__ typedef __signed__ long long __s64; __extension__ typedef unsigned long long __u64; #endif The __extension__ keyword in front of this switches off any pedantic warnings for this expression. Signed-off-by: Olaf Hering <olh@suse.de> Cc: <linux-arch@vger.kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> ---------------------------------------------------------------- Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
* Coding STyle cleanup.Wolfgang Denk2008-02-15-34/+34
| | | | Signed-off-by: Wolfgang Denk <wd@denx.de>
* punt Blackfin VDSP headers and import sanitized/auto-generated onesMike Frysinger2008-02-04-12443/+58335
| | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* add missing __raw versions of Blackfin read/write io functionsMike Frysinger2008-02-04-0/+6
| | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* add the default Blackfin logo used by Blackfin boards with splash screensMike Frysinger2008-02-04-0/+2377
| | | | Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* Introduce map_physmem() and unmap_physmem()Haavard Skinnemoen2007-12-13-0/+26
| | | | | | | | | | | | | | | | map_physmem() returns a virtual address which can be used to access a given physical address without involving the cache. unmap_physmem() should be called when the virtual address returned by map_physmem() is no longer needed. This patch adds a stub implementation which simply returns the physical address cast to a uchar * for all architectures except AVR32, which converts the physical address to an uncached virtual mapping. unmap_physmem() is a no-op on all architectures, but if any architecture needs to do such mappings through the TLB, this is the hook where those TLB entries can be invalidated. Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
* [Blackfin][PATCH] Fix dynamic CPLB generation issueAubrey Li2007-04-05-895/+5
|
* [Blackfin][PATCH] minior cleanupAubrey Li2007-04-05-1/+1
|
* [Blackfin][PATCH] Fix copyright and update licenseAubrey Li2007-04-05-114/+114
|
* [Blackfin][PATCH] call real the system synchronize instructionAubrey Li2007-04-05-0/+1
|
* [Blackfin][PATCH] remove asm/page.h as we do not actually use/want any of ↵Aubrey Li2007-04-05-126/+0
| | | | these definitions nor does any other arch include it
* [Blackfin][PATCH] Add BF561 EZKIT board supportAubrey Li2007-03-20-0/+3411
|
* [Blackfin][PATCH] Add BF537 stamp board supportAubrey Li2007-03-19-0/+5128
|
* [Blackfin][PATCH] code cleanupAubrey Li2007-03-10-91/+74
|
* [Blackfin]PATCH-1/2]: Remove obsolete blackfin port and add bf533 platform ↵Aubrey.Li2007-03-09-812/+1004
| | | | support
* [PATCH v3] Add sync to ensure flash_write_cmd is fully finishedHaiying Wang2007-02-21-0/+5
| | | | | | | | | Some CPUs like PPC, BLACKFIN need sync() to ensure cfi flash write command is fully finished. The sync() is defined in each CPU's io.h file. For those CPUs which do not need sync for now, a dummy sync() is defined in their io.h as well. Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
* Coding Style cleanupWolfgang Denk2006-03-12-27/+27
|
* Add missing Blackfin files.Wolfgang Denk2006-03-12-0/+6986