Newer
Older
barebox / include / dm9000.h
@Jean-Christophe PLAGNIOL-VILLARD Jean-Christophe PLAGNIOL-VILLARD on 22 Aug 2010 258 bytes dm9000: allow to specify that no srom is present

#ifndef __DM9000_H__
#define __DM9000_H__

#define DM9000_WIDTH_8		1
#define DM9000_WIDTH_16		2
#define DM9000_WIDTH_32		3

struct dm9000_platform_data {
	unsigned long iobase;
	unsigned long iodata;
	int buswidth;
	int srom;
};

#endif /* __DM9000_H__ */