2 * drivers/net/ibm_emac/ibm_emac_zmii.h
4 * Driver for PowerPC 4xx on-chip ethernet controller, ZMII bridge support.
6 * Copyright (c) 2004, 2005 Zultys Technologies.
7 * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net>
9 * Based on original work by
10 * Armin Kuster <akuster@mvista.com>
11 * Copyright 2001 MontaVista Softare Inc.
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2 of the License, or (at your
16 * option) any later version.
19 #ifndef _IBM_EMAC_ZMII_H_
20 #define _IBM_EMAC_ZMII_H_
22 #include <linux/config.h>
23 #include <linux/init.h>
26 /* ZMII bridge registers */
28 u32 fer
; /* Function enable reg */
29 u32 ssr
; /* Speed select reg */
30 u32 smiirs
; /* SMII status reg */
35 struct zmii_regs
*base
;
36 int mode
; /* subset of PHY_MODE_XXXX */
37 int users
; /* number of EMACs using this ZMII bridge */
38 u32 fer_save
; /* FER value left by firmware */
41 #ifdef CONFIG_IBM_EMAC_ZMII
42 int zmii_attach(void *emac
) __init
;
44 void __zmii_fini(struct ocp_device
*ocpdev
, int input
) __exit
;
45 static inline void zmii_fini(struct ocp_device
*ocpdev
, int input
)
48 __zmii_fini(ocpdev
, input
);
51 void __zmii_enable_mdio(struct ocp_device
*ocpdev
, int input
);
52 static inline void zmii_enable_mdio(struct ocp_device
*ocpdev
, int input
)
55 __zmii_enable_mdio(ocpdev
, input
);
58 void __zmii_set_speed(struct ocp_device
*ocpdev
, int input
, int speed
);
59 static inline void zmii_set_speed(struct ocp_device
*ocpdev
, int input
,
63 __zmii_set_speed(ocpdev
, input
, speed
);
66 int __zmii_get_regs_len(struct ocp_device
*ocpdev
);
67 static inline int zmii_get_regs_len(struct ocp_device
*ocpdev
)
69 return ocpdev
? __zmii_get_regs_len(ocpdev
) : 0;
72 void *zmii_dump_regs(struct ocp_device
*ocpdev
, void *buf
);
75 # define zmii_attach(x) 0
76 # define zmii_fini(x,y) ((void)0)
77 # define zmii_enable_mdio(x,y) ((void)0)
78 # define zmii_set_speed(x,y,z) ((void)0)
79 # define zmii_get_regs_len(x) 0
80 # define zmii_dump_regs(x,buf) (buf)
81 #endif /* !CONFIG_IBM_EMAC_ZMII */
83 #endif /* _IBM_EMAC_ZMII_H_ */