Cyril Chemparathy | 2b62997 | 2012-07-24 12:22:16 +0000 | [diff] [blame] | 1 | /* |
| 2 | * CPSW Ethernet Switch Driver |
| 3 | * |
| 4 | * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License as |
| 8 | * published by the Free Software Foundation version 2. |
| 9 | * |
| 10 | * This program is distributed "as is" WITHOUT ANY WARRANTY of any |
| 11 | * kind, whether express or implied; without even the implied warranty |
| 12 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | */ |
| 15 | |
| 16 | #ifndef _CPSW_H_ |
| 17 | #define _CPSW_H_ |
| 18 | |
| 19 | struct cpsw_slave_data { |
| 20 | u32 slave_reg_ofs; |
| 21 | u32 sliver_reg_ofs; |
Mugunthan V N | 9c653aa | 2014-02-18 07:31:52 -0500 | [diff] [blame] | 22 | int phy_addr; |
Cyril Chemparathy | 2b62997 | 2012-07-24 12:22:16 +0000 | [diff] [blame] | 23 | int phy_if; |
| 24 | }; |
| 25 | |
| 26 | enum { |
| 27 | CPSW_CTRL_VERSION_1 = 0, |
| 28 | CPSW_CTRL_VERSION_2 /* am33xx like devices */ |
| 29 | }; |
| 30 | |
| 31 | struct cpsw_platform_data { |
| 32 | u32 mdio_base; |
| 33 | u32 cpsw_base; |
Mugunthan V N | 4cc7789 | 2015-09-07 14:22:21 +0530 | [diff] [blame] | 34 | u32 mac_id; |
| 35 | u32 gmii_sel; |
Cyril Chemparathy | 2b62997 | 2012-07-24 12:22:16 +0000 | [diff] [blame] | 36 | int mdio_div; |
| 37 | int channels; /* number of cpdma channels (symmetric) */ |
| 38 | u32 cpdma_reg_ofs; /* cpdma register offset */ |
| 39 | int slaves; /* number of slave cpgmac ports */ |
| 40 | u32 ale_reg_ofs; /* address lookup engine reg offset */ |
| 41 | int ale_entries; /* ale table size */ |
| 42 | u32 host_port_reg_ofs; /* cpdma host port registers */ |
| 43 | u32 hw_stats_reg_ofs; /* cpsw hw stats counters */ |
Mugunthan V N | 2bf36ac | 2013-07-08 16:04:37 +0530 | [diff] [blame] | 44 | u32 bd_ram_ofs; /* Buffer Descriptor RAM offset */ |
Cyril Chemparathy | 2b62997 | 2012-07-24 12:22:16 +0000 | [diff] [blame] | 45 | u32 mac_control; |
| 46 | struct cpsw_slave_data *slave_data; |
| 47 | void (*control)(int enabled); |
| 48 | u32 host_port_num; |
Mugunthan V N | 7a02275 | 2014-05-22 14:37:10 +0530 | [diff] [blame] | 49 | u32 active_slave; |
Cyril Chemparathy | 2b62997 | 2012-07-24 12:22:16 +0000 | [diff] [blame] | 50 | u8 version; |
| 51 | }; |
| 52 | |
| 53 | int cpsw_register(struct cpsw_platform_data *data); |
| 54 | |
| 55 | #endif /* _CPSW_H_ */ |