summaryrefslogtreecommitdiff
path: root/drivers/systemace.c
AgeCommit message (Collapse)Author
2007-05-16Coding Style Cleanup, new CHANGELOGWolfgang Denk
2007-04-21[PATCH] SystemACE support for MicroblazeMichal Simek
2007-02-27Minor code cleanup.Wolfgang Denk
2007-02-22[PATCH] Change systemace driver to select 8 & 16bit modeStefan Roese
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 Roese
Signed-off-by: Stefan Roese <sr@denx.de>
2007-02-20[PATCH] Update SystemACE driver for 16bit accessStefan Roese
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 Likely
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 Likely
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 Likely
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>