2008-06-02 05:33:11 +04:00
|
|
|
/*
|
|
|
|
* Common declarations for the Zaurii.
|
|
|
|
*
|
|
|
|
* This file is licensed under the GNU GPL.
|
|
|
|
*/
|
2008-06-02 05:20:15 +04:00
|
|
|
#ifndef QEMU_SHARPSL_H
|
|
|
|
#define QEMU_SHARPSL_H
|
|
|
|
|
2008-06-02 05:33:11 +04:00
|
|
|
#define zaurus_printf(format, ...) \
|
2017-11-09 01:56:31 +03:00
|
|
|
fprintf(stderr, "%s: " format, __func__, ##__VA_ARGS__)
|
2008-06-02 05:33:11 +04:00
|
|
|
|
2008-06-02 05:20:15 +04:00
|
|
|
/* zaurus.c */
|
|
|
|
|
|
|
|
#define SL_PXA_PARAM_BASE 0xa0000a00
|
2012-10-23 14:30:10 +04:00
|
|
|
void sl_bootparam_write(hwaddr ptr);
|
2008-06-02 05:20:15 +04:00
|
|
|
|
|
|
|
#endif
|