xref: /qemu/include/hw/m68k/mcf_fec.h (revision f91005e195e7e1485e60cb121731589960f1a3c9)
16ac38ed4SThomas Huth /*
26ac38ed4SThomas Huth  * Definitions for the ColdFire Fast Ethernet Controller emulation.
36ac38ed4SThomas Huth  *
46ac38ed4SThomas Huth  * This code is free software; you can redistribute it and/or modify
56ac38ed4SThomas Huth  * it under the terms of the GNU General Public License as published by
66ac38ed4SThomas Huth  * the Free Software Foundation; either version 2 of the License, or
76ac38ed4SThomas Huth  * (at your option) any later version.
86ac38ed4SThomas Huth  */
96ac38ed4SThomas Huth 
10*f91005e1SMarkus Armbruster #ifndef HW_M68K_MCF_FEC_H
11*f91005e1SMarkus Armbruster #define HW_M68K_MCF_FEC_H
12*f91005e1SMarkus Armbruster 
136ac38ed4SThomas Huth #define TYPE_MCF_FEC_NET "mcf-fec"
146ac38ed4SThomas Huth #define MCF_FEC_NET(obj) OBJECT_CHECK(mcf_fec_state, (obj), TYPE_MCF_FEC_NET)
156ac38ed4SThomas Huth 
166ac38ed4SThomas Huth #define FEC_NUM_IRQ 13
17*f91005e1SMarkus Armbruster 
18*f91005e1SMarkus Armbruster #endif
19