| Age | Commit message (Collapse) | Author |
|
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 <[email protected]>
Cc: <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
----------------------------------------------------------------
Signed-off-by: Shinya Kuribayashi <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off-by: Ben Warren <[email protected]>
Signed-off by: John Rigby <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
Signed-off by: John Rigby <[email protected]>
|
|
Add CF specific modules header files
Signed-off-by: TsiChung Liew <[email protected]>
Signed-off-by: John Rigby <[email protected]>
|
|
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 <[email protected]>
|
|
This adds implementations of __raw_read[bwl] and __raw_write[bwl] to
m68k, ppc, nios and nios2. The m68k and ppc implementations were taken
from Linux.
Signed-off-by: Haavard Skinnemoen <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
|
|
DECLARE_GLOBAL_DATA_PTR for time.c
Signed-off-by: TsiChungLiew <[email protected]>
|
|
Signed-off-by: TsiChungLiew <[email protected]>
|
|
Signed-off-by: Stefan Roese <[email protected]>
|
|
Seperated from mcfuart.h
Signed-off-by: TsiChungLiew <[email protected]>
|
|
Seperated from mcftimer.h
Signed-off-by: TsiChungLiew <[email protected]>
|
|
Since it is already in m68k folder, un-necessary to pad mcf. Replaced immap_5329.h and m5329.h to immap.h
Signed-off-by: TsiChungLiew <[email protected]>
|
|
Removed new uart structure and defines to uart.h
Signed-off-by: TsiChungLiew <[email protected]>
|
|
New timer structure and defines will move to new timer.h
Signed-off-by: TsiChungLiew <[email protected]>
|
|
Removed whitespace
Signed-off-by: TsiChungLiew <[email protected]>
|
|
Replaced whitespace with tabs
Signed-off-by: TsiChungLiew <[email protected]>
|
|
to new header file.
Create new header file to include immap_5xxx.h and m5xxx.h and to share among drivers without update in driver file each processor is added. Moved peripherals base address and defines from configs file to immap.h.
Signed-off-by: TsiChungLiew <[email protected]>
|
|
Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
rtc/mcfrtc.c
Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
lib_m68k/time.c, net/eth.c and rtc/Makefile
Signed-off-by: TsiChung Liew <[email protected]>
|
|
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 <[email protected]>
|
|
Identification Register (CIR).
|
|
|
|
|
|
|
|
relocate ichache_State to ram
u-boot can run from internal flash
Add EB+MCF-EV123 board support.
Add m68k Boards to MAKEALL
Patch from Jens Scharsig, 08 Aug 2005
|
|
|
|
|
|
|
|
|
|
|
|
On OMAP1610 platforms check if booting from RAM(CS0) or flash(CS3).
Set flash base accordingly, and decide whether to do or skip board
specific setup steps.
* Patch by Josef Baumgartner, 26 May 2004:
Add missing define in include/asm-m68k/global_data.h
|