bcm47xx.h 1.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Copyright (C) 2007 Aurelien Jarno <aurelien@aurel32.net>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

#ifndef __ASM_BCM47XX_H
#define __ASM_BCM47XX_H

22
#include <linux/ssb/ssb.h>
23 24
#include <linux/bcma/bcma.h>
#include <linux/bcma/bcma_soc.h>
25
#include <linux/bcm47xx_nvram.h>
26 27

enum bcm47xx_bus_type {
28
#ifdef CONFIG_BCM47XX_SSB
29
	BCM47XX_BUS_TYPE_SSB,
30
#endif
31 32 33
#ifdef CONFIG_BCM47XX_BCMA
	BCM47XX_BUS_TYPE_BCMA,
#endif
34 35 36
};

union bcm47xx_bus {
37
#ifdef CONFIG_BCM47XX_SSB
38
	struct ssb_bus ssb;
39
#endif
40 41 42
#ifdef CONFIG_BCM47XX_BCMA
	struct bcma_soc bcma;
#endif
43 44 45 46
};

extern union bcm47xx_bus bcm47xx_bus;
extern enum bcm47xx_bus_type bcm47xx_bus_type;
47

48 49
void bcm47xx_fill_sprom(struct ssb_sprom *sprom, const char *prefix,
			bool fallback);
50

51 52 53 54 55
#ifdef CONFIG_BCM47XX_SSB
void bcm47xx_fill_ssb_boardinfo(struct ssb_boardinfo *boardinfo,
				const char *prefix);
#endif

56 57
void bcm47xx_set_system_type(u16 chip_id);

58
#endif /* __ASM_BCM47XX_H */