Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
zmii.h
Go to the documentation of this file.
1 /*
2  * drivers/net/ethernet/ibm/emac/zmii.h
3  *
4  * Driver for PowerPC 4xx on-chip ethernet controller, ZMII bridge support.
5  *
6  * Copyright 2007 Benjamin Herrenschmidt, IBM Corp.
8  *
9  * Based on the arch/ppc version of the driver:
10  *
11  * Copyright (c) 2004, 2005 Zultys Technologies.
12  * Eugene Surovegin <[email protected]> or <[email protected]>
13  *
14  * Based on original work by
15  * Armin Kuster <[email protected]>
16  * Copyright 2001 MontaVista Softare Inc.
17  *
18  * This program is free software; you can redistribute it and/or modify it
19  * under the terms of the GNU General Public License as published by the
20  * Free Software Foundation; either version 2 of the License, or (at your
21  * option) any later version.
22  *
23  */
24 #ifndef __IBM_NEWEMAC_ZMII_H
25 #define __IBM_NEWEMAC_ZMII_H
26 
27 /* ZMII bridge registers */
28 struct zmii_regs {
29  u32 fer; /* Function enable reg */
30  u32 ssr; /* Speed select reg */
31  u32 smiirs; /* SMII status reg */
32 };
33 
34 /* ZMII device */
35 struct zmii_instance {
37 
38  /* Only one EMAC whacks us at a time */
39  struct mutex lock;
40 
41  /* subset of PHY_MODE_XXXX */
42  int mode;
43 
44  /* number of EMACs using this ZMII bridge */
45  int users;
46 
47  /* FER value left by firmware */
49 
50  /* OF device instance */
52 };
53 
54 #ifdef CONFIG_IBM_EMAC_ZMII
55 
56 extern int zmii_init(void);
57 extern void zmii_exit(void);
58 extern int zmii_attach(struct platform_device *ofdev, int input, int *mode);
59 extern void zmii_detach(struct platform_device *ofdev, int input);
60 extern void zmii_get_mdio(struct platform_device *ofdev, int input);
61 extern void zmii_put_mdio(struct platform_device *ofdev, int input);
62 extern void zmii_set_speed(struct platform_device *ofdev, int input, int speed);
63 extern int zmii_get_regs_len(struct platform_device *ocpdev);
64 extern void *zmii_dump_regs(struct platform_device *ofdev, void *buf);
65 
66 #else
67 # define zmii_init() 0
68 # define zmii_exit() do { } while(0)
69 # define zmii_attach(x,y,z) (-ENXIO)
70 # define zmii_detach(x,y) do { } while(0)
71 # define zmii_get_mdio(x,y) do { } while(0)
72 # define zmii_put_mdio(x,y) do { } while(0)
73 # define zmii_set_speed(x,y,z) do { } while(0)
74 # define zmii_get_regs_len(x) 0
75 # define zmii_dump_regs(x,buf) (buf)
76 #endif /* !CONFIG_IBM_EMAC_ZMII */
77 
78 #endif /* __IBM_NEWEMAC_ZMII_H */