sdio.c (e5451c8f8330e03ad3cfa16048b4daf961af434f) | sdio.c (b8b6069cf2087545fe53ec920e8353133e9a70bf) |
---|---|
1/* 2 * Sonics Silicon Backplane 3 * SDIO-Hostbus related functions 4 * 5 * Copyright 2009 Albert Herranz <albert_herranz@yahoo.es> 6 * 7 * Based on drivers/ssb/pcmcia.c 8 * Copyright 2006 Johannes Berg <johannes@sipsolutions.net> 9 * Copyright 2007-2008 Michael Buesch <m@bues.ch> 10 * 11 * Licensed under the GNU/GPL. See COPYING for details. 12 * 13 */ 14 | 1/* 2 * Sonics Silicon Backplane 3 * SDIO-Hostbus related functions 4 * 5 * Copyright 2009 Albert Herranz <albert_herranz@yahoo.es> 6 * 7 * Based on drivers/ssb/pcmcia.c 8 * Copyright 2006 Johannes Berg <johannes@sipsolutions.net> 9 * Copyright 2007-2008 Michael Buesch <m@bues.ch> 10 * 11 * Licensed under the GNU/GPL. See COPYING for details. 12 * 13 */ 14 |
15#include "ssb_private.h" 16 |
|
15#include <linux/ssb/ssb.h> 16#include <linux/delay.h> 17#include <linux/io.h> 18#include <linux/etherdevice.h> 19#include <linux/mmc/sdio_func.h> 20 | 17#include <linux/ssb/ssb.h> 18#include <linux/delay.h> 19#include <linux/io.h> 20#include <linux/etherdevice.h> 21#include <linux/mmc/sdio_func.h> 22 |
21#include "ssb_private.h" 22 | |
23/* Define the following to 1 to enable a printk on each coreswitch. */ 24#define SSB_VERBOSE_SDIOCORESWITCH_DEBUG 0 25 26 27/* Hardware invariants CIS tuples */ 28#define SSB_SDIO_CIS 0x80 29#define SSB_SDIO_CIS_SROMREV 0x00 30#define SSB_SDIO_CIS_ID 0x01 --- 576 unchanged lines hidden --- | 23/* Define the following to 1 to enable a printk on each coreswitch. */ 24#define SSB_VERBOSE_SDIOCORESWITCH_DEBUG 0 25 26 27/* Hardware invariants CIS tuples */ 28#define SSB_SDIO_CIS 0x80 29#define SSB_SDIO_CIS_SROMREV 0x00 30#define SSB_SDIO_CIS_ID 0x01 --- 576 unchanged lines hidden --- |