aboutsummaryrefslogtreecommitdiff
path: root/drivers/systemace.c
AgeCommit message (Collapse)AuthorFilesLines
2007-05-16Coding Style Cleanup, new CHANGELOGWolfgang Denk1-1/+1
2007-04-21[PATCH] SystemACE support for MicroblazeMichal Simek1-0/+6
2007-02-27Minor code cleanup.Wolfgang Denk1-4/+4
2007-02-22[PATCH] Change systemace driver to select 8 & 16bit modeStefan Roese1-5/+2
As suggested by Grant Likely this patch enables the Xilinx SystemACE driver to select 8 or 16bit mode upon startup. Signed-off-by: Stefan Roese <sr@denx.de>
2007-02-21[PATCH] Fix problem in systemace driver (ace_writew instead of ace_write)Stefan Roese1-4/+4
Signed-off-by: Stefan Roese <sr@denx.de>
2007-02-20[PATCH] Update SystemACE driver for 16bit accessStefan Roese1-3/+11
This patch removes some problems when the Xilinx SystemACE driver is used with 16bit access on an big endian platform (like the AMCC Katmai). Signed-off-by: Stefan Roese <sr@denx.de>
2007-02-20[PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write ↵Grant Likely1-4/+3
buffer pointers Block device read/write is anonymous data; there is no need to use a typed pointer. void * is fine. Also add a hook for block_read functions Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
2007-02-20[PATCH 7_9] Replace ace_readw_ace_writeb functions with macrosGrant Likely1-26/+10
Register read/write does not need to be wrapped in a full function. The patch replaces them with macros. Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
2007-02-20[PATCH 6_9] Move common_cmd_ace.c to drivers_systemace.cGrant Likely1-0/+264
The code in this file is not a command; it is a device driver. Put it in the correct place. There are zero functional changes in this patch, it only moves the file. Signed-off-by: Grant Likely <grant.likely@secretlab.ca>