Skeleton of VideoCore IV support for the Raspberry Pi.
authorDavid Given <dg@cowlark.com>
Thu, 16 May 2013 23:03:38 +0000 (00:03 +0100)
committerDavid Given <dg@cowlark.com>
Thu, 16 May 2013 23:03:38 +0000 (00:03 +0100)
commit32ebc502c86047797d72122a98e329f2ca03a05e
tree61f8ac2a738e161592d4f73a37549f069360e005
parente5f6d5acfa1c2ea733f46a248f3127ed0abd41e4
Skeleton of VideoCore IV support for the Raspberry Pi.

--HG--
branch : dtrg-videocore
rename : mach/powerpc/as/.distr => mach/vc4/as/.distr
rename : mach/powerpc/as/mach0.c => mach/vc4/as/mach0.c
rename : mach/powerpc/as/mach1.c => mach/vc4/as/mach1.c
rename : mach/powerpc/as/mach2.c => mach/vc4/as/mach2.c
rename : mach/powerpc/as/mach3.c => mach/vc4/as/mach3.c
rename : mach/powerpc/as/mach4.c => mach/vc4/as/mach4.c
rename : mach/powerpc/as/mach5.c => mach/vc4/as/mach5.c
rename : mach/i86/build.mk => mach/vc4/build.mk
rename : mach/powerpc/libem/powerpc.h => mach/vc4/libem/videocore.h
rename : mach/i86/libend/.distr => mach/vc4/libend/.distr
rename : mach/i86/libend/edata.s => mach/vc4/libend/edata.s
rename : mach/i86/libend/em_end.s => mach/vc4/libend/em_end.s
rename : mach/i86/libend/end.s => mach/vc4/libend/end.s
rename : mach/i86/libend/etext.s => mach/vc4/libend/etext.s
rename : mach/powerpc/ncg/.distr => mach/vc4/ncg/.distr
rename : mach/powerpc/ncg/mach.c => mach/vc4/ncg/mach.c
rename : mach/powerpc/ncg/mach.h => mach/vc4/ncg/mach.h
rename : mach/powerpc/ncg/table => mach/vc4/ncg/table
rename : plat/pc86/descr => plat/rpi/descr
42 files changed:
mach/vc4/as/.distr [new file with mode: 0644]
mach/vc4/as/binary.h [new file with mode: 0644]
mach/vc4/as/mach0.c [new file with mode: 0644]
mach/vc4/as/mach1.c [new file with mode: 0644]
mach/vc4/as/mach2.c [new file with mode: 0644]
mach/vc4/as/mach3.c [new file with mode: 0644]
mach/vc4/as/mach4.c [new file with mode: 0644]
mach/vc4/as/mach5.c [new file with mode: 0644]
mach/vc4/build.mk [new file with mode: 0644]
mach/vc4/libem/dummy.s [new file with mode: 0644]
mach/vc4/libem/videocore.h [new file with mode: 0644]
mach/vc4/libend/.distr [new file with mode: 0644]
mach/vc4/libend/edata.s [new file with mode: 0644]
mach/vc4/libend/em_end.s [new file with mode: 0644]
mach/vc4/libend/end.s [new file with mode: 0644]
mach/vc4/libend/etext.s [new file with mode: 0644]
mach/vc4/ncg/.distr [new file with mode: 0644]
mach/vc4/ncg/mach.c [new file with mode: 0644]
mach/vc4/ncg/mach.h [new file with mode: 0644]
mach/vc4/ncg/table [new file with mode: 0644]
mach/vc4/test/opcodes.s [new file with mode: 0644]
plat/rpi/build.mk [new file with mode: 0644]
plat/rpi/descr [new file with mode: 0644]
plat/rpi/include/ack/config.h [new file with mode: 0644]
plat/rpi/include/unistd.h [new file with mode: 0644]
plat/rpi/libsys/_hol0.s [new file with mode: 0644]
plat/rpi/libsys/_sys_rawread.s [new file with mode: 0644]
plat/rpi/libsys/_sys_rawwrite.s [new file with mode: 0644]
plat/rpi/libsys/brk.c [new file with mode: 0644]
plat/rpi/libsys/close.c [new file with mode: 0644]
plat/rpi/libsys/creat.c [new file with mode: 0644]
plat/rpi/libsys/errno.s [new file with mode: 0644]
plat/rpi/libsys/getpid.c [new file with mode: 0644]
plat/rpi/libsys/isatty.c [new file with mode: 0644]
plat/rpi/libsys/kill.c [new file with mode: 0644]
plat/rpi/libsys/libsys.h [new file with mode: 0644]
plat/rpi/libsys/lseek.c [new file with mode: 0644]
plat/rpi/libsys/open.c [new file with mode: 0644]
plat/rpi/libsys/read.c [new file with mode: 0644]
plat/rpi/libsys/signal.c [new file with mode: 0644]
plat/rpi/libsys/time.c [new file with mode: 0644]
plat/rpi/libsys/write.c [new file with mode: 0644]