1 /* 2 * Copyright (C) 2007 Aurelien Jarno <aurelien@aurel32.net> 3 * 4 * This program is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU General Public License 6 * as published by the Free Software Foundation; either version 2 7 * of the License, or (at your option) any later version. 8 * 9 * This program is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * GNU General Public License for more details. 13 * 14 * You should have received a copy of the GNU General Public License 15 * along with this program; if not, write to the Free Software 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 17 */ 18 19 #ifndef __ASM_BCM47XX_H 20 #define __ASM_BCM47XX_H 21 22 #include <linux/ssb/ssb.h> 23 #include <linux/bcma/bcma.h> 24 #include <linux/bcma/bcma_soc.h> 25 26 enum bcm47xx_bus_type { 27 #ifdef CONFIG_BCM47XX_SSB 28 BCM47XX_BUS_TYPE_SSB, 29 #endif 30 #ifdef CONFIG_BCM47XX_BCMA 31 BCM47XX_BUS_TYPE_BCMA, 32 #endif 33 }; 34 35 union bcm47xx_bus { 36 #ifdef CONFIG_BCM47XX_SSB 37 struct ssb_bus ssb; 38 #endif 39 #ifdef CONFIG_BCM47XX_BCMA 40 struct bcma_soc bcma; 41 #endif 42 }; 43 44 extern union bcm47xx_bus bcm47xx_bus; 45 extern enum bcm47xx_bus_type bcm47xx_bus_type; 46 47 void bcm47xx_fill_sprom(struct ssb_sprom *sprom, const char *prefix, 48 bool fallback); 49 50 #ifdef CONFIG_BCM47XX_SSB 51 void bcm47xx_fill_ssb_boardinfo(struct ssb_boardinfo *boardinfo, 52 const char *prefix); 53 #endif 54 #ifdef CONFIG_BCM47XX_BCMA 55 void bcm47xx_fill_bcma_boardinfo(struct bcma_boardinfo *boardinfo, 56 const char *prefix); 57 #endif 58 59 #endif /* __ASM_BCM47XX_H */ 60