staging: brcm80211: replace DHD_DEBUG macro with BCMDBG
The common Makefile for both brcm80211 drivers defines the macro BCMDBG upon select Kconfig item BRCMDBG. The fullmac source add another macro DHD_DEBUG with the same meaning. This is removed and all conditional code now checks for BCMDBG definition. Signed-off-by: Arend van Spriel <arend@broadcom.com> Reviewed-by: Roland Vossen <rvossen@broadcom.com> Reviewed-by: Franky Lin <frankyl@broadcom.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
ca9c786dc2
commit
762c2a36d1
@ -22,7 +22,7 @@ ccflags-y := \
|
|||||||
-DBRCMF_SDALIGN=64 \
|
-DBRCMF_SDALIGN=64 \
|
||||||
-DMAX_HDR_READ=64
|
-DMAX_HDR_READ=64
|
||||||
|
|
||||||
ccflags-$(CONFIG_BRCMDBG) += -DDHD_DEBUG -DSHOW_EVENTS
|
ccflags-$(CONFIG_BRCMDBG) += -DSHOW_EVENTS
|
||||||
|
|
||||||
ccflags-y += \
|
ccflags-y += \
|
||||||
-Idrivers/staging/brcm80211/brcmfmac \
|
-Idrivers/staging/brcm80211/brcmfmac \
|
||||||
|
@ -57,7 +57,7 @@ brcmf_sdioh_interrupt_query(struct sdioh_info *si, bool *onoff);
|
|||||||
extern int
|
extern int
|
||||||
brcmf_sdioh_interrupt_set(struct sdioh_info *si, bool enable_disable);
|
brcmf_sdioh_interrupt_set(struct sdioh_info *si, bool enable_disable);
|
||||||
|
|
||||||
#if defined(DHD_DEBUG)
|
#if defined(BCMDBG)
|
||||||
extern bool brcmf_sdioh_interrupt_pending(struct sdioh_info *si);
|
extern bool brcmf_sdioh_interrupt_pending(struct sdioh_info *si);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -160,7 +160,7 @@ int brcmf_sdcard_intr_dereg(void *sdh)
|
|||||||
return SDIOH_API_SUCCESS(status) ? 0 : -EIO;
|
return SDIOH_API_SUCCESS(status) ? 0 : -EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(DHD_DEBUG)
|
#if defined(BCMDBG)
|
||||||
bool brcmf_sdcard_intr_pending(void *sdh)
|
bool brcmf_sdcard_intr_pending(void *sdh)
|
||||||
{
|
{
|
||||||
struct brcmf_sdio *bcmsdh = (struct brcmf_sdio *) sdh;
|
struct brcmf_sdio *bcmsdh = (struct brcmf_sdio *) sdh;
|
||||||
|
@ -330,7 +330,7 @@ brcmf_sdioh_interrupt_query(struct sdioh_info *sd, bool *onoff)
|
|||||||
return SDIOH_API_RC_SUCCESS;
|
return SDIOH_API_RC_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(DHD_DEBUG)
|
#if defined(BCMDBG)
|
||||||
extern bool brcmf_sdioh_interrupt_pending(struct sdioh_info *sd)
|
extern bool brcmf_sdioh_interrupt_pending(struct sdioh_info *sd)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -777,10 +777,10 @@ extern atomic_t brcmf_mmc_suspend;
|
|||||||
/* Watchdog timer interval */
|
/* Watchdog timer interval */
|
||||||
extern uint brcmf_watchdog_ms;
|
extern uint brcmf_watchdog_ms;
|
||||||
|
|
||||||
#if defined(DHD_DEBUG)
|
#if defined(BCMDBG)
|
||||||
/* Console output poll interval */
|
/* Console output poll interval */
|
||||||
extern uint brcmf_console_ms;
|
extern uint brcmf_console_ms;
|
||||||
#endif /* defined(DHD_DEBUG) */
|
#endif /* defined(BCMDBG) */
|
||||||
|
|
||||||
/* Use interrupts */
|
/* Use interrupts */
|
||||||
extern uint brcmf_intr;
|
extern uint brcmf_intr;
|
||||||
@ -933,9 +933,9 @@ extern int brcmf_custom_get_mac_address(unsigned char *buf);
|
|||||||
extern void brcmf_os_sdunlock_sndup_rxq(dhd_pub_t *pub);
|
extern void brcmf_os_sdunlock_sndup_rxq(dhd_pub_t *pub);
|
||||||
extern void brcmf_os_sdlock_eventq(dhd_pub_t *pub);
|
extern void brcmf_os_sdlock_eventq(dhd_pub_t *pub);
|
||||||
extern void brcmf_os_sdunlock_eventq(dhd_pub_t *pub);
|
extern void brcmf_os_sdunlock_eventq(dhd_pub_t *pub);
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
extern int brcmf_write_to_file(dhd_pub_t *dhd, u8 *buf, int size);
|
extern int brcmf_write_to_file(dhd_pub_t *dhd, u8 *buf, int size);
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
#if defined(OOB_INTR_ONLY)
|
#if defined(OOB_INTR_ONLY)
|
||||||
extern int brcmf_customer_oob_irq_map(unsigned long *irq_flags_ptr);
|
extern int brcmf_customer_oob_irq_map(unsigned long *irq_flags_ptr);
|
||||||
#endif /* defined(OOB_INTR_ONLY) */
|
#endif /* defined(OOB_INTR_ONLY) */
|
||||||
|
@ -58,11 +58,11 @@ brcmf_sdbrcm_bus_rxctl(struct dhd_bus *bus, unsigned char *msg, uint msglen);
|
|||||||
/* Watchdog timer function */
|
/* Watchdog timer function */
|
||||||
extern bool brcmf_sdbrcm_bus_watchdog(dhd_pub_t *dhd);
|
extern bool brcmf_sdbrcm_bus_watchdog(dhd_pub_t *dhd);
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
/* Device console input function */
|
/* Device console input function */
|
||||||
extern int
|
extern int
|
||||||
brcmf_sdbrcm_bus_console_in(dhd_pub_t *dhd, unsigned char *msg, uint msglen);
|
brcmf_sdbrcm_bus_console_in(dhd_pub_t *dhd, unsigned char *msg, uint msglen);
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
|
|
||||||
/* Deferred processing for the bus, return true requests reschedule */
|
/* Deferred processing for the bus, return true requests reschedule */
|
||||||
extern bool dhd_bus_dpc(struct dhd_bus *bus);
|
extern bool dhd_bus_dpc(struct dhd_bus *bus);
|
||||||
|
@ -39,7 +39,7 @@ char brcmf_nv_path[MOD_PARAM_PATHLEN];
|
|||||||
#define EPI_VERSION_STR "4.218.248.5"
|
#define EPI_VERSION_STR "4.218.248.5"
|
||||||
#define MSGTRACE_VERSION 1
|
#define MSGTRACE_VERSION 1
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
const char brcmf_version[] =
|
const char brcmf_version[] =
|
||||||
"Dongle Host Driver, version " EPI_VERSION_STR "\nCompiled on " __DATE__
|
"Dongle Host Driver, version " EPI_VERSION_STR "\nCompiled on " __DATE__
|
||||||
" at " __TIME__;
|
" at " __TIME__;
|
||||||
@ -55,7 +55,7 @@ enum {
|
|||||||
IOV_BCMERROR,
|
IOV_BCMERROR,
|
||||||
IOV_WDTICK,
|
IOV_WDTICK,
|
||||||
IOV_DUMP,
|
IOV_DUMP,
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
IOV_CONS,
|
IOV_CONS,
|
||||||
IOV_DCONSOLE_POLL,
|
IOV_DCONSOLE_POLL,
|
||||||
#endif
|
#endif
|
||||||
@ -71,10 +71,10 @@ enum {
|
|||||||
const struct brcmu_iovar brcmf_iovars[] = {
|
const struct brcmu_iovar brcmf_iovars[] = {
|
||||||
{"version", IOV_VERSION, 0, IOVT_BUFFER, sizeof(brcmf_version)}
|
{"version", IOV_VERSION, 0, IOVT_BUFFER, sizeof(brcmf_version)}
|
||||||
,
|
,
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
{"msglevel", IOV_MSGLEVEL, 0, IOVT_UINT32, 0}
|
{"msglevel", IOV_MSGLEVEL, 0, IOVT_UINT32, 0}
|
||||||
,
|
,
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
{"bcmerrorstr", IOV_BCMERRORSTR, 0, IOVT_BUFFER, BCME_STRLEN}
|
{"bcmerrorstr", IOV_BCMERRORSTR, 0, IOVT_BUFFER, BCME_STRLEN}
|
||||||
,
|
,
|
||||||
{"bcmerror", IOV_BCMERROR, 0, IOVT_INT8, 0}
|
{"bcmerror", IOV_BCMERROR, 0, IOVT_INT8, 0}
|
||||||
@ -83,7 +83,7 @@ const struct brcmu_iovar brcmf_iovars[] = {
|
|||||||
,
|
,
|
||||||
{"dump", IOV_DUMP, 0, IOVT_BUFFER, DHD_IOCTL_MAXLEN}
|
{"dump", IOV_DUMP, 0, IOVT_BUFFER, DHD_IOCTL_MAXLEN}
|
||||||
,
|
,
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
{"dconpoll", IOV_DCONSOLE_POLL, 0, IOVT_UINT32, 0}
|
{"dconpoll", IOV_DCONSOLE_POLL, 0, IOVT_UINT32, 0}
|
||||||
,
|
,
|
||||||
{"cons", IOV_CONS, 0, IOVT_BUFFER, 0}
|
{"cons", IOV_CONS, 0, IOVT_BUFFER, 0}
|
||||||
@ -255,7 +255,7 @@ brcmf_c_doiovar(dhd_pub_t *dhd_pub, const struct brcmu_iovar *vi, u32 actionid,
|
|||||||
bcmerror = brcmf_c_dump(dhd_pub, arg, len);
|
bcmerror = brcmf_c_dump(dhd_pub, arg, len);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
case IOV_GVAL(IOV_DCONSOLE_POLL):
|
case IOV_GVAL(IOV_DCONSOLE_POLL):
|
||||||
int_val = (s32) brcmf_console_ms;
|
int_val = (s32) brcmf_console_ms;
|
||||||
memcpy(arg, &int_val, val_size);
|
memcpy(arg, &int_val, val_size);
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
#ifndef _dhd_dbg_
|
#ifndef _dhd_dbg_
|
||||||
#define _dhd_dbg_
|
#define _dhd_dbg_
|
||||||
|
|
||||||
#if defined(DHD_DEBUG)
|
#if defined(BCMDBG)
|
||||||
|
|
||||||
#define DHD_ERROR(args) \
|
#define DHD_ERROR(args) \
|
||||||
do {if ((brcmf_msg_level & DHD_ERROR_VAL) && (net_ratelimit())) \
|
do {if ((brcmf_msg_level & DHD_ERROR_VAL) && (net_ratelimit())) \
|
||||||
@ -61,7 +61,7 @@
|
|||||||
#define DHD_BTA_ON() (brcmf_msg_level & DHD_BTA_VAL)
|
#define DHD_BTA_ON() (brcmf_msg_level & DHD_BTA_VAL)
|
||||||
#define DHD_ISCAN_ON() (brcmf_msg_level & DHD_ISCAN_VAL)
|
#define DHD_ISCAN_ON() (brcmf_msg_level & DHD_ISCAN_VAL)
|
||||||
|
|
||||||
#else /* (defined BCMDBG) || (defined DHD_DEBUG) */
|
#else /* (defined BCMDBG) || (defined BCMDBG) */
|
||||||
|
|
||||||
#define DHD_ERROR(args) do {if (net_ratelimit()) printk args; } while (0)
|
#define DHD_ERROR(args) do {if (net_ratelimit()) printk args; } while (0)
|
||||||
#define DHD_TRACE(args)
|
#define DHD_TRACE(args)
|
||||||
@ -90,7 +90,7 @@
|
|||||||
#define DHD_EVENT_ON() 0
|
#define DHD_EVENT_ON() 0
|
||||||
#define DHD_BTA_ON() 0
|
#define DHD_BTA_ON() 0
|
||||||
#define DHD_ISCAN_ON() 0
|
#define DHD_ISCAN_ON() 0
|
||||||
#endif /* defined(DHD_DEBUG) */
|
#endif /* defined(BCMDBG) */
|
||||||
|
|
||||||
#define DHD_LOG(args)
|
#define DHD_LOG(args)
|
||||||
|
|
||||||
|
@ -262,11 +262,11 @@ module_param(brcmf_sysioc, uint, 0);
|
|||||||
uint brcmf_watchdog_ms = 10;
|
uint brcmf_watchdog_ms = 10;
|
||||||
module_param(brcmf_watchdog_ms, uint, 0);
|
module_param(brcmf_watchdog_ms, uint, 0);
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
/* Console poll interval */
|
/* Console poll interval */
|
||||||
uint brcmf_console_ms;
|
uint brcmf_console_ms;
|
||||||
module_param(brcmf_console_ms, uint, 0);
|
module_param(brcmf_console_ms, uint, 0);
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
|
|
||||||
/* ARP offload agent mode : Enable ARP Host Auto-Reply
|
/* ARP offload agent mode : Enable ARP Host Auto-Reply
|
||||||
and ARP Peer Auto-Reply */
|
and ARP Peer Auto-Reply */
|
||||||
@ -357,7 +357,7 @@ module_param(brcmf_pktgen_len, uint, 0);
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Version string to report */
|
/* Version string to report */
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
#define DHD_COMPILED "\nCompiled in " SRCBASE
|
#define DHD_COMPILED "\nCompiled in " SRCBASE
|
||||||
#else
|
#else
|
||||||
#define DHD_COMPILED
|
#define DHD_COMPILED
|
||||||
@ -2632,7 +2632,7 @@ void brcmf_netdev_os_wd_timer(struct net_device *ndev, uint wdtick)
|
|||||||
brcmf_os_wd_timer(&dhd->pub, wdtick);
|
brcmf_os_wd_timer(&dhd->pub, wdtick);
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
int brcmf_write_to_file(dhd_pub_t *dhd, u8 *buf, int size)
|
int brcmf_write_to_file(dhd_pub_t *dhd, u8 *buf, int size)
|
||||||
{
|
{
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
@ -2666,7 +2666,7 @@ exit:
|
|||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
|
|
||||||
#if defined(BCMDBG)
|
#if defined(BCMDBG)
|
||||||
void osl_assert(char *exp, char *file, int line)
|
void osl_assert(char *exp, char *file, int line)
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
#define SET_REG(r, mask, val) \
|
#define SET_REG(r, mask, val) \
|
||||||
W_REG((r), ((R_REG(r) & ~(mask)) | (val)))
|
W_REG((r), ((R_REG(r) & ~(mask)) | (val)))
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
|
|
||||||
/* ARM trap handling */
|
/* ARM trap handling */
|
||||||
|
|
||||||
@ -160,7 +160,7 @@ struct rte_console {
|
|||||||
char cbuf[CBUF_LEN];
|
char cbuf[CBUF_LEN];
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
#include <chipcommon.h>
|
#include <chipcommon.h>
|
||||||
|
|
||||||
#include "sbsdio.h"
|
#include "sbsdio.h"
|
||||||
@ -408,7 +408,7 @@ DHD_SPINWAIT_SLEEP_INIT(sdioh_spinwait_sleep);
|
|||||||
#define CORE_SB(base, field) \
|
#define CORE_SB(base, field) \
|
||||||
(base + SBCONFIGOFF + offsetof(sbconfig_t, field))
|
(base + SBCONFIGOFF + offsetof(sbconfig_t, field))
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
/* Device console log buffer state */
|
/* Device console log buffer state */
|
||||||
struct dhd_console {
|
struct dhd_console {
|
||||||
uint count; /* Poll interval msec counter */
|
uint count; /* Poll interval msec counter */
|
||||||
@ -418,7 +418,7 @@ struct dhd_console {
|
|||||||
u8 *buf; /* Log buffer (host copy) */
|
u8 *buf; /* Log buffer (host copy) */
|
||||||
uint last; /* Last buffer read index */
|
uint last; /* Last buffer read index */
|
||||||
};
|
};
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
|
|
||||||
struct sdpcm_shared {
|
struct sdpcm_shared {
|
||||||
u32 flags;
|
u32 flags;
|
||||||
@ -514,10 +514,10 @@ typedef struct dhd_bus {
|
|||||||
uint polltick; /* Tick counter */
|
uint polltick; /* Tick counter */
|
||||||
uint pollcnt; /* Count of active polls */
|
uint pollcnt; /* Count of active polls */
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
struct dhd_console console; /* Console output polling support */
|
struct dhd_console console; /* Console output polling support */
|
||||||
uint console_addr; /* Console address from shared struct */
|
uint console_addr; /* Console address from shared struct */
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
|
|
||||||
uint regfails; /* Count of R_REG/W_REG failures */
|
uint regfails; /* Count of R_REG/W_REG failures */
|
||||||
|
|
||||||
@ -636,10 +636,10 @@ typedef volatile struct _sbconfig {
|
|||||||
|
|
||||||
#define DHD_NOPMU(dhd) (false)
|
#define DHD_NOPMU(dhd) (false)
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
static int qcount[NUMPRIO];
|
static int qcount[NUMPRIO];
|
||||||
static int tx_packets[NUMPRIO];
|
static int tx_packets[NUMPRIO];
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
|
|
||||||
/* Deferred transmit */
|
/* Deferred transmit */
|
||||||
const uint brcmf_deferred_tx = 1;
|
const uint brcmf_deferred_tx = 1;
|
||||||
@ -748,10 +748,10 @@ static void brcmf_sdbrcm_checkdied(dhd_bus_t *bus, void *pkt, uint seq);
|
|||||||
static void brcmf_sdbrcm_sdtest_set(dhd_bus_t *bus, bool start);
|
static void brcmf_sdbrcm_sdtest_set(dhd_bus_t *bus, bool start);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
static int brcmf_sdbrcm_checkdied(dhd_bus_t *bus, u8 *data, uint size);
|
static int brcmf_sdbrcm_checkdied(dhd_bus_t *bus, u8 *data, uint size);
|
||||||
static int brcmf_sdbrcm_mem_dump(dhd_bus_t *bus);
|
static int brcmf_sdbrcm_mem_dump(dhd_bus_t *bus);
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
static int brcmf_sdbrcm_download_state(dhd_bus_t *bus, bool enter);
|
static int brcmf_sdbrcm_download_state(dhd_bus_t *bus, bool enter);
|
||||||
|
|
||||||
static void brcmf_sdbrcm_release(dhd_bus_t *bus);
|
static void brcmf_sdbrcm_release(dhd_bus_t *bus);
|
||||||
@ -922,14 +922,14 @@ static int brcmf_sdbrcm_htclk(dhd_bus_t *bus, bool on, bool pendok)
|
|||||||
bus->clkstate = CLK_AVAIL;
|
bus->clkstate = CLK_AVAIL;
|
||||||
DHD_INFO(("CLKCTL: turned ON\n"));
|
DHD_INFO(("CLKCTL: turned ON\n"));
|
||||||
|
|
||||||
#if defined(DHD_DEBUG)
|
#if defined(BCMDBG)
|
||||||
if (bus->alp_only != true) {
|
if (bus->alp_only != true) {
|
||||||
if (SBSDIO_ALPONLY(clkctl)) {
|
if (SBSDIO_ALPONLY(clkctl)) {
|
||||||
DHD_ERROR(("%s: HT Clock should be on.\n",
|
DHD_ERROR(("%s: HT Clock should be on.\n",
|
||||||
__func__));
|
__func__));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif /* defined (DHD_DEBUG) */
|
#endif /* defined (BCMDBG) */
|
||||||
|
|
||||||
bus->activity = true;
|
bus->activity = true;
|
||||||
} else {
|
} else {
|
||||||
@ -973,9 +973,9 @@ static int brcmf_sdbrcm_sdclk(dhd_bus_t *bus, bool on)
|
|||||||
/* Transition SD and backplane clock readiness */
|
/* Transition SD and backplane clock readiness */
|
||||||
static int brcmf_sdbrcm_clkctl(dhd_bus_t *bus, uint target, bool pendok)
|
static int brcmf_sdbrcm_clkctl(dhd_bus_t *bus, uint target, bool pendok)
|
||||||
{
|
{
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
uint oldstate = bus->clkstate;
|
uint oldstate = bus->clkstate;
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
|
|
||||||
DHD_TRACE(("%s: Enter\n", __func__));
|
DHD_TRACE(("%s: Enter\n", __func__));
|
||||||
|
|
||||||
@ -1020,9 +1020,9 @@ static int brcmf_sdbrcm_clkctl(dhd_bus_t *bus, uint target, bool pendok)
|
|||||||
brcmf_os_wd_timer(bus->dhd, 0);
|
brcmf_os_wd_timer(bus->dhd, 0);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
DHD_INFO(("brcmf_sdbrcm_clkctl: %d -> %d\n", oldstate, bus->clkstate));
|
DHD_INFO(("brcmf_sdbrcm_clkctl: %d -> %d\n", oldstate, bus->clkstate));
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -1227,7 +1227,7 @@ static int brcmf_sdbrcm_txpkt(dhd_bus_t *bus, struct sk_buff *pkt, uint chan,
|
|||||||
put_unaligned_le32(swheader, frame + SDPCM_FRAMETAG_LEN);
|
put_unaligned_le32(swheader, frame + SDPCM_FRAMETAG_LEN);
|
||||||
put_unaligned_le32(0, frame + SDPCM_FRAMETAG_LEN + sizeof(swheader));
|
put_unaligned_le32(0, frame + SDPCM_FRAMETAG_LEN + sizeof(swheader));
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
tx_packets[pkt->priority]++;
|
tx_packets[pkt->priority]++;
|
||||||
if (DHD_BYTES_ON() &&
|
if (DHD_BYTES_ON() &&
|
||||||
(((DHD_CTL_ON() && (chan == SDPCM_CONTROL_CHANNEL)) ||
|
(((DHD_CTL_ON() && (chan == SDPCM_CONTROL_CHANNEL)) ||
|
||||||
@ -1372,7 +1372,7 @@ int brcmf_sdbrcm_bus_txdata(struct dhd_bus *bus, struct sk_buff *pkt)
|
|||||||
if (pktq_len(&bus->txq) >= TXHI)
|
if (pktq_len(&bus->txq) >= TXHI)
|
||||||
brcmf_txflowcontrol(bus->dhd, 0, ON);
|
brcmf_txflowcontrol(bus->dhd, 0, ON);
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
if (pktq_plen(&bus->txq, prec) > qcount[prec])
|
if (pktq_plen(&bus->txq, prec) > qcount[prec])
|
||||||
qcount[prec] = pktq_plen(&bus->txq, prec);
|
qcount[prec] = pktq_plen(&bus->txq, prec);
|
||||||
#endif
|
#endif
|
||||||
@ -1564,7 +1564,7 @@ brcmf_sdbrcm_bus_txctl(struct dhd_bus *bus, unsigned char *msg, uint msglen)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (ret == -1) {
|
if (ret == -1) {
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
if (DHD_BYTES_ON() && DHD_CTL_ON()) {
|
if (DHD_BYTES_ON() && DHD_CTL_ON()) {
|
||||||
printk(KERN_DEBUG "Tx Frame:\n");
|
printk(KERN_DEBUG "Tx Frame:\n");
|
||||||
print_hex_dump_bytes("", DUMP_PREFIX_OFFSET,
|
print_hex_dump_bytes("", DUMP_PREFIX_OFFSET,
|
||||||
@ -1661,21 +1661,21 @@ int brcmf_sdbrcm_bus_rxctl(struct dhd_bus *bus, unsigned char *msg, uint msglen)
|
|||||||
__func__, rxlen, msglen));
|
__func__, rxlen, msglen));
|
||||||
} else if (timeleft == 0) {
|
} else if (timeleft == 0) {
|
||||||
DHD_ERROR(("%s: resumed on timeout\n", __func__));
|
DHD_ERROR(("%s: resumed on timeout\n", __func__));
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
brcmf_os_sdlock(bus->dhd);
|
brcmf_os_sdlock(bus->dhd);
|
||||||
brcmf_sdbrcm_checkdied(bus, NULL, 0);
|
brcmf_sdbrcm_checkdied(bus, NULL, 0);
|
||||||
brcmf_os_sdunlock(bus->dhd);
|
brcmf_os_sdunlock(bus->dhd);
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
} else if (pending == true) {
|
} else if (pending == true) {
|
||||||
DHD_CTL(("%s: cancelled\n", __func__));
|
DHD_CTL(("%s: cancelled\n", __func__));
|
||||||
return -ERESTARTSYS;
|
return -ERESTARTSYS;
|
||||||
} else {
|
} else {
|
||||||
DHD_CTL(("%s: resumed for unknown reason?\n", __func__));
|
DHD_CTL(("%s: resumed for unknown reason?\n", __func__));
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
brcmf_os_sdlock(bus->dhd);
|
brcmf_os_sdlock(bus->dhd);
|
||||||
brcmf_sdbrcm_checkdied(bus, NULL, 0);
|
brcmf_sdbrcm_checkdied(bus, NULL, 0);
|
||||||
brcmf_os_sdunlock(bus->dhd);
|
brcmf_os_sdunlock(bus->dhd);
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
}
|
}
|
||||||
|
|
||||||
if (rxlen)
|
if (rxlen)
|
||||||
@ -1695,7 +1695,7 @@ enum {
|
|||||||
IOV_SDCIS,
|
IOV_SDCIS,
|
||||||
IOV_MEMBYTES,
|
IOV_MEMBYTES,
|
||||||
IOV_MEMSIZE,
|
IOV_MEMSIZE,
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
IOV_CHECKDIED,
|
IOV_CHECKDIED,
|
||||||
#endif
|
#endif
|
||||||
IOV_DOWNLOAD,
|
IOV_DOWNLOAD,
|
||||||
@ -1739,7 +1739,7 @@ const struct brcmu_iovar dhdsdio_iovars[] = {
|
|||||||
{"alignctl", IOV_ALIGNCTL, 0, IOVT_BOOL, 0},
|
{"alignctl", IOV_ALIGNCTL, 0, IOVT_BOOL, 0},
|
||||||
{"sdalign", IOV_SDALIGN, 0, IOVT_BOOL, 0},
|
{"sdalign", IOV_SDALIGN, 0, IOVT_BOOL, 0},
|
||||||
{"devreset", IOV_DEVRESET, 0, IOVT_BOOL, 0},
|
{"devreset", IOV_DEVRESET, 0, IOVT_BOOL, 0},
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
{"sdreg", IOV_SDREG, 0, IOVT_BUFFER, sizeof(struct brcmf_sdreg)}
|
{"sdreg", IOV_SDREG, 0, IOVT_BUFFER, sizeof(struct brcmf_sdreg)}
|
||||||
,
|
,
|
||||||
{"sbreg", IOV_SBREG, 0, IOVT_BUFFER, sizeof(struct brcmf_sdreg)}
|
{"sbreg", IOV_SBREG, 0, IOVT_BUFFER, sizeof(struct brcmf_sdreg)}
|
||||||
@ -1756,11 +1756,9 @@ const struct brcmu_iovar dhdsdio_iovars[] = {
|
|||||||
,
|
,
|
||||||
{"cpu", IOV_CPU, 0, IOVT_BOOL, 0}
|
{"cpu", IOV_CPU, 0, IOVT_BOOL, 0}
|
||||||
,
|
,
|
||||||
#ifdef DHD_DEBUG
|
|
||||||
{"checkdied", IOV_CHECKDIED, 0, IOVT_BUFFER, 0}
|
{"checkdied", IOV_CHECKDIED, 0, IOVT_BUFFER, 0}
|
||||||
,
|
,
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
#endif /* DHD_DEBUG */
|
|
||||||
#ifdef SDTEST
|
#ifdef SDTEST
|
||||||
{"extloop", IOV_EXTLOOP, 0, IOVT_BOOL, 0}
|
{"extloop", IOV_EXTLOOP, 0, IOVT_BOOL, 0}
|
||||||
,
|
,
|
||||||
@ -1873,13 +1871,13 @@ void brcmf_sdbrcm_bus_dump(dhd_pub_t *dhdp, struct brcmu_strbuf *strbuf)
|
|||||||
bus->pktgen_fail);
|
bus->pktgen_fail);
|
||||||
}
|
}
|
||||||
#endif /* SDTEST */
|
#endif /* SDTEST */
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
brcmu_bprintf(strbuf, "dpc_sched %d host interrupt%spending\n",
|
brcmu_bprintf(strbuf, "dpc_sched %d host interrupt%spending\n",
|
||||||
bus->dpc_sched,
|
bus->dpc_sched,
|
||||||
(brcmf_sdcard_intr_pending(bus->sdh) ? " " : " not "));
|
(brcmf_sdcard_intr_pending(bus->sdh) ? " " : " not "));
|
||||||
brcmu_bprintf(strbuf, "blocksize %d roundup %d\n", bus->blocksize,
|
brcmu_bprintf(strbuf, "blocksize %d roundup %d\n", bus->blocksize,
|
||||||
bus->roundup);
|
bus->roundup);
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
brcmu_bprintf(strbuf,
|
brcmu_bprintf(strbuf,
|
||||||
"clkstate %d activity %d idletime %d idlecount %d sleeping %d\n",
|
"clkstate %d activity %d idletime %d idlecount %d sleeping %d\n",
|
||||||
bus->clkstate, bus->activity, bus->idletime, bus->idlecount,
|
bus->clkstate, bus->activity, bus->idletime, bus->idlecount,
|
||||||
@ -2015,7 +2013,7 @@ xfer_done:
|
|||||||
return bcmerror;
|
return bcmerror;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
static int brcmf_sdbrcm_readshared(dhd_bus_t *bus, struct sdpcm_shared *sh)
|
static int brcmf_sdbrcm_readshared(dhd_bus_t *bus, struct sdpcm_shared *sh)
|
||||||
{
|
{
|
||||||
u32 addr;
|
u32 addr;
|
||||||
@ -2183,12 +2181,12 @@ static int brcmf_sdbrcm_checkdied(dhd_bus_t *bus, u8 *data, uint size)
|
|||||||
if (sdpcm_shared.flags & (SDPCM_SHARED_ASSERT | SDPCM_SHARED_TRAP))
|
if (sdpcm_shared.flags & (SDPCM_SHARED_ASSERT | SDPCM_SHARED_TRAP))
|
||||||
DHD_ERROR(("%s: %s\n", __func__, strbuf.origbuf));
|
DHD_ERROR(("%s: %s\n", __func__, strbuf.origbuf));
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
if (sdpcm_shared.flags & SDPCM_SHARED_TRAP) {
|
if (sdpcm_shared.flags & SDPCM_SHARED_TRAP) {
|
||||||
/* Mem dump to a file on device */
|
/* Mem dump to a file on device */
|
||||||
brcmf_sdbrcm_mem_dump(bus);
|
brcmf_sdbrcm_mem_dump(bus);
|
||||||
}
|
}
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
|
|
||||||
done:
|
done:
|
||||||
kfree(mbuffer);
|
kfree(mbuffer);
|
||||||
@ -2321,7 +2319,7 @@ break2:
|
|||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
|
|
||||||
int brcmf_sdbrcm_downloadvars(dhd_bus_t *bus, void *arg, int len)
|
int brcmf_sdbrcm_downloadvars(dhd_bus_t *bus, void *arg, int len)
|
||||||
{
|
{
|
||||||
@ -2581,16 +2579,16 @@ brcmf_sdbrcm_doiovar(dhd_bus_t *bus, const struct brcmu_iovar *vi, u32 actionid,
|
|||||||
memcpy(arg, &int_val, val_size);
|
memcpy(arg, &int_val, val_size);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
case IOV_GVAL(IOV_VARS):
|
case IOV_GVAL(IOV_VARS):
|
||||||
if (bus->varsz < (uint) len)
|
if (bus->varsz < (uint) len)
|
||||||
memcpy(arg, bus->vars, bus->varsz);
|
memcpy(arg, bus->vars, bus->varsz);
|
||||||
else
|
else
|
||||||
bcmerror = -EOVERFLOW;
|
bcmerror = -EOVERFLOW;
|
||||||
break;
|
break;
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
case IOV_GVAL(IOV_SDREG):
|
case IOV_GVAL(IOV_SDREG):
|
||||||
{
|
{
|
||||||
struct brcmf_sdreg *sd_ptr;
|
struct brcmf_sdreg *sd_ptr;
|
||||||
@ -2713,7 +2711,7 @@ brcmf_sdbrcm_doiovar(dhd_bus_t *bus, const struct brcmu_iovar *vi, u32 actionid,
|
|||||||
case IOV_SVAL(IOV_TXMINMAX):
|
case IOV_SVAL(IOV_TXMINMAX):
|
||||||
dhd_txminmax = (uint) int_val;
|
dhd_txminmax = (uint) int_val;
|
||||||
break;
|
break;
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
|
|
||||||
#ifdef SDTEST
|
#ifdef SDTEST
|
||||||
case IOV_GVAL(IOV_EXTLOOP):
|
case IOV_GVAL(IOV_EXTLOOP):
|
||||||
@ -2779,9 +2777,9 @@ static int brcmf_sdbrcm_write_vars(dhd_bus_t *bus)
|
|||||||
u32 varaddr;
|
u32 varaddr;
|
||||||
u8 *vbuffer;
|
u8 *vbuffer;
|
||||||
u32 varsizew;
|
u32 varsizew;
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
char *nvram_ularray;
|
char *nvram_ularray;
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
|
|
||||||
/* Even if there are no vars are to be written, we still
|
/* Even if there are no vars are to be written, we still
|
||||||
need to set the ramsize. */
|
need to set the ramsize. */
|
||||||
@ -2798,7 +2796,7 @@ static int brcmf_sdbrcm_write_vars(dhd_bus_t *bus)
|
|||||||
/* Write the vars list */
|
/* Write the vars list */
|
||||||
bcmerror =
|
bcmerror =
|
||||||
brcmf_sdbrcm_membytes(bus, true, varaddr, vbuffer, varsize);
|
brcmf_sdbrcm_membytes(bus, true, varaddr, vbuffer, varsize);
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
/* Verify NVRAM bytes */
|
/* Verify NVRAM bytes */
|
||||||
DHD_INFO(("Compare NVRAM dl & ul; varsize=%d\n", varsize));
|
DHD_INFO(("Compare NVRAM dl & ul; varsize=%d\n", varsize));
|
||||||
nvram_ularray = kmalloc(varsize, GFP_ATOMIC);
|
nvram_ularray = kmalloc(varsize, GFP_ATOMIC);
|
||||||
@ -2825,7 +2823,7 @@ static int brcmf_sdbrcm_write_vars(dhd_bus_t *bus)
|
|||||||
__func__));
|
__func__));
|
||||||
|
|
||||||
kfree(nvram_ularray);
|
kfree(nvram_ularray);
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
|
|
||||||
kfree(vbuffer);
|
kfree(vbuffer);
|
||||||
}
|
}
|
||||||
@ -3335,7 +3333,7 @@ brcmf_sdbrcm_read_control(dhd_bus_t *bus, u8 *hdr, uint len, uint doff)
|
|||||||
|
|
||||||
gotpkt:
|
gotpkt:
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
if (DHD_BYTES_ON() && DHD_CTL_ON()) {
|
if (DHD_BYTES_ON() && DHD_CTL_ON()) {
|
||||||
printk(KERN_DEBUG "RxCtrl:\n");
|
printk(KERN_DEBUG "RxCtrl:\n");
|
||||||
print_hex_dump_bytes("", DUMP_PREFIX_OFFSET, bus->rxctl, len);
|
print_hex_dump_bytes("", DUMP_PREFIX_OFFSET, bus->rxctl, len);
|
||||||
@ -3524,7 +3522,7 @@ static u8 brcmf_sdbrcm_rxglom(dhd_bus_t *bus, u8 rxseq)
|
|||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
if (DHD_GLOM_ON()) {
|
if (DHD_GLOM_ON()) {
|
||||||
printk(KERN_DEBUG "SUPERFRAME:\n");
|
printk(KERN_DEBUG "SUPERFRAME:\n");
|
||||||
print_hex_dump_bytes("", DUMP_PREFIX_OFFSET,
|
print_hex_dump_bytes("", DUMP_PREFIX_OFFSET,
|
||||||
@ -3608,7 +3606,7 @@ static u8 brcmf_sdbrcm_rxglom(dhd_bus_t *bus, u8 rxseq)
|
|||||||
check = get_unaligned_le16(dptr + sizeof(u16));
|
check = get_unaligned_le16(dptr + sizeof(u16));
|
||||||
chan = SDPCM_PACKET_CHANNEL(&dptr[SDPCM_FRAMETAG_LEN]);
|
chan = SDPCM_PACKET_CHANNEL(&dptr[SDPCM_FRAMETAG_LEN]);
|
||||||
doff = SDPCM_DOFFSET_VALUE(&dptr[SDPCM_FRAMETAG_LEN]);
|
doff = SDPCM_DOFFSET_VALUE(&dptr[SDPCM_FRAMETAG_LEN]);
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
if (DHD_GLOM_ON()) {
|
if (DHD_GLOM_ON()) {
|
||||||
printk(KERN_DEBUG "subframe:\n");
|
printk(KERN_DEBUG "subframe:\n");
|
||||||
print_hex_dump_bytes("", DUMP_PREFIX_OFFSET,
|
print_hex_dump_bytes("", DUMP_PREFIX_OFFSET,
|
||||||
@ -3686,7 +3684,7 @@ static u8 brcmf_sdbrcm_rxglom(dhd_bus_t *bus, u8 rxseq)
|
|||||||
bus->rx_badseq++;
|
bus->rx_badseq++;
|
||||||
rxseq = seq;
|
rxseq = seq;
|
||||||
}
|
}
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
if (DHD_BYTES_ON() && DHD_DATA_ON()) {
|
if (DHD_BYTES_ON() && DHD_DATA_ON()) {
|
||||||
printk(KERN_DEBUG "Rx Subframe Data:\n");
|
printk(KERN_DEBUG "Rx Subframe Data:\n");
|
||||||
print_hex_dump_bytes("", DUMP_PREFIX_OFFSET,
|
print_hex_dump_bytes("", DUMP_PREFIX_OFFSET,
|
||||||
@ -3727,7 +3725,7 @@ static u8 brcmf_sdbrcm_rxglom(dhd_bus_t *bus, u8 rxseq)
|
|||||||
plast = pfirst;
|
plast = pfirst;
|
||||||
num++;
|
num++;
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
if (DHD_GLOM_ON()) {
|
if (DHD_GLOM_ON()) {
|
||||||
DHD_GLOM(("%s subframe %d to stack, %p(%p/%d) "
|
DHD_GLOM(("%s subframe %d to stack, %p(%p/%d) "
|
||||||
"nxt/lnk %p/%p\n",
|
"nxt/lnk %p/%p\n",
|
||||||
@ -3738,7 +3736,7 @@ static u8 brcmf_sdbrcm_rxglom(dhd_bus_t *bus, u8 rxseq)
|
|||||||
pfirst->data,
|
pfirst->data,
|
||||||
min_t(int, pfirst->len, 32));
|
min_t(int, pfirst->len, 32));
|
||||||
}
|
}
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
}
|
}
|
||||||
if (num) {
|
if (num) {
|
||||||
brcmf_os_sdunlock(bus->dhd);
|
brcmf_os_sdunlock(bus->dhd);
|
||||||
@ -3775,7 +3773,7 @@ brcmf_sdbrcm_readframes(dhd_bus_t *bus, uint maxframes, bool *finished)
|
|||||||
int ifidx = 0;
|
int ifidx = 0;
|
||||||
uint rxcount = 0; /* Total frames read */
|
uint rxcount = 0; /* Total frames read */
|
||||||
|
|
||||||
#if defined(DHD_DEBUG) || defined(SDTEST)
|
#if defined(BCMDBG) || defined(SDTEST)
|
||||||
bool sdtest = false; /* To limit message spew from test mode */
|
bool sdtest = false; /* To limit message spew from test mode */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -4035,7 +4033,7 @@ brcmf_sdbrcm_readframes(dhd_bus_t *bus, uint maxframes, bool *finished)
|
|||||||
}
|
}
|
||||||
bus->tx_max = txmax;
|
bus->tx_max = txmax;
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
if (DHD_BYTES_ON() && DHD_DATA_ON()) {
|
if (DHD_BYTES_ON() && DHD_DATA_ON()) {
|
||||||
printk(KERN_DEBUG "Rx Data:\n");
|
printk(KERN_DEBUG "Rx Data:\n");
|
||||||
print_hex_dump_bytes("", DUMP_PREFIX_OFFSET,
|
print_hex_dump_bytes("", DUMP_PREFIX_OFFSET,
|
||||||
@ -4098,7 +4096,7 @@ brcmf_sdbrcm_readframes(dhd_bus_t *bus, uint maxframes, bool *finished)
|
|||||||
brcmf_sdbrcm_rxfail(bus, true, true);
|
brcmf_sdbrcm_rxfail(bus, true, true);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
if (DHD_BYTES_ON() || DHD_HDRS_ON()) {
|
if (DHD_BYTES_ON() || DHD_HDRS_ON()) {
|
||||||
printk(KERN_DEBUG "RxHdr:\n");
|
printk(KERN_DEBUG "RxHdr:\n");
|
||||||
print_hex_dump_bytes("", DUMP_PREFIX_OFFSET,
|
print_hex_dump_bytes("", DUMP_PREFIX_OFFSET,
|
||||||
@ -4270,7 +4268,7 @@ brcmf_sdbrcm_readframes(dhd_bus_t *bus, uint maxframes, bool *finished)
|
|||||||
skb_push(pkt, firstread);
|
skb_push(pkt, firstread);
|
||||||
memcpy(pkt->data, bus->rxhdr, firstread);
|
memcpy(pkt->data, bus->rxhdr, firstread);
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
if (DHD_BYTES_ON() && DHD_DATA_ON()) {
|
if (DHD_BYTES_ON() && DHD_DATA_ON()) {
|
||||||
printk(KERN_DEBUG "Rx Data:\n");
|
printk(KERN_DEBUG "Rx Data:\n");
|
||||||
print_hex_dump_bytes("", DUMP_PREFIX_OFFSET,
|
print_hex_dump_bytes("", DUMP_PREFIX_OFFSET,
|
||||||
@ -4284,7 +4282,7 @@ deliver:
|
|||||||
if (SDPCM_GLOMDESC(&bus->rxhdr[SDPCM_FRAMETAG_LEN])) {
|
if (SDPCM_GLOMDESC(&bus->rxhdr[SDPCM_FRAMETAG_LEN])) {
|
||||||
DHD_GLOM(("%s: glom descriptor, %d bytes:\n",
|
DHD_GLOM(("%s: glom descriptor, %d bytes:\n",
|
||||||
__func__, len));
|
__func__, len));
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
if (DHD_GLOM_ON()) {
|
if (DHD_GLOM_ON()) {
|
||||||
printk(KERN_DEBUG "Glom Data:\n");
|
printk(KERN_DEBUG "Glom Data:\n");
|
||||||
print_hex_dump_bytes("",
|
print_hex_dump_bytes("",
|
||||||
@ -4332,13 +4330,13 @@ deliver:
|
|||||||
brcmf_os_sdlock(bus->dhd);
|
brcmf_os_sdlock(bus->dhd);
|
||||||
}
|
}
|
||||||
rxcount = maxframes - rxleft;
|
rxcount = maxframes - rxleft;
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
/* Message if we hit the limit */
|
/* Message if we hit the limit */
|
||||||
if (!rxleft && !sdtest)
|
if (!rxleft && !sdtest)
|
||||||
DHD_DATA(("%s: hit rx limit of %d frames\n", __func__,
|
DHD_DATA(("%s: hit rx limit of %d frames\n", __func__,
|
||||||
maxframes));
|
maxframes));
|
||||||
else
|
else
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
DHD_DATA(("%s: processed %d frames\n", __func__, rxcount));
|
DHD_DATA(("%s: processed %d frames\n", __func__, rxcount));
|
||||||
/* Back off rxseq if awaiting rtx, update rx_seq */
|
/* Back off rxseq if awaiting rtx, update rx_seq */
|
||||||
if (bus->rxskip)
|
if (bus->rxskip)
|
||||||
@ -4446,7 +4444,7 @@ bool brcmf_sdbrcm_dpc(dhd_bus_t *bus)
|
|||||||
int err;
|
int err;
|
||||||
u8 clkctl, devctl = 0;
|
u8 clkctl, devctl = 0;
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
/* Check for inconsistent device control */
|
/* Check for inconsistent device control */
|
||||||
devctl = brcmf_sdcard_cfg_read(sdh, SDIO_FUNC_1,
|
devctl = brcmf_sdcard_cfg_read(sdh, SDIO_FUNC_1,
|
||||||
SBSDIO_DEVICE_CTL, &err);
|
SBSDIO_DEVICE_CTL, &err);
|
||||||
@ -4457,7 +4455,7 @@ bool brcmf_sdbrcm_dpc(dhd_bus_t *bus)
|
|||||||
} else {
|
} else {
|
||||||
ASSERT(devctl & SBSDIO_DEVCTL_CA_INT_ONLY);
|
ASSERT(devctl & SBSDIO_DEVCTL_CA_INT_ONLY);
|
||||||
}
|
}
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
|
|
||||||
/* Read CSR, if clock on switch to AVAIL, else ignore */
|
/* Read CSR, if clock on switch to AVAIL, else ignore */
|
||||||
clkctl = brcmf_sdcard_cfg_read(sdh, SDIO_FUNC_1,
|
clkctl = brcmf_sdcard_cfg_read(sdh, SDIO_FUNC_1,
|
||||||
@ -4840,7 +4838,7 @@ static void brcmf_sdbrcm_pktgen(dhd_bus_t *bus)
|
|||||||
*data++ =
|
*data++ =
|
||||||
SDPCM_TEST_FILL(fillbyte, (u8) bus->pktgen_sent);
|
SDPCM_TEST_FILL(fillbyte, (u8) bus->pktgen_sent);
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
if (DHD_BYTES_ON() && DHD_DATA_ON()) {
|
if (DHD_BYTES_ON() && DHD_DATA_ON()) {
|
||||||
data = (u8 *) (pkt->data) + SDPCM_HDRLEN;
|
data = (u8 *) (pkt->data) + SDPCM_HDRLEN;
|
||||||
printk(KERN_DEBUG "brcmf_sdbrcm_pktgen: Tx Data:\n");
|
printk(KERN_DEBUG "brcmf_sdbrcm_pktgen: Tx Data:\n");
|
||||||
@ -5051,7 +5049,7 @@ extern bool brcmf_sdbrcm_bus_watchdog(dhd_pub_t *dhdp)
|
|||||||
/* Update interrupt tracking */
|
/* Update interrupt tracking */
|
||||||
bus->lastintrs = bus->intrcount;
|
bus->lastintrs = bus->intrcount;
|
||||||
}
|
}
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
/* Poll for console output periodically */
|
/* Poll for console output periodically */
|
||||||
if (dhdp->busstate == DHD_BUS_DATA && brcmf_console_ms != 0) {
|
if (dhdp->busstate == DHD_BUS_DATA && brcmf_console_ms != 0) {
|
||||||
bus->console.count += brcmf_watchdog_ms;
|
bus->console.count += brcmf_watchdog_ms;
|
||||||
@ -5064,7 +5062,7 @@ extern bool brcmf_sdbrcm_bus_watchdog(dhd_pub_t *dhdp)
|
|||||||
stop trying */
|
stop trying */
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
|
|
||||||
#ifdef SDTEST
|
#ifdef SDTEST
|
||||||
/* Generate packets if configured */
|
/* Generate packets if configured */
|
||||||
@ -5094,7 +5092,7 @@ extern bool brcmf_sdbrcm_bus_watchdog(dhd_pub_t *dhdp)
|
|||||||
return bus->ipend;
|
return bus->ipend;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
extern int brcmf_sdbrcm_bus_console_in(dhd_pub_t *dhdp, unsigned char *msg,
|
extern int brcmf_sdbrcm_bus_console_in(dhd_pub_t *dhdp, unsigned char *msg,
|
||||||
uint msglen)
|
uint msglen)
|
||||||
{
|
{
|
||||||
@ -5158,7 +5156,7 @@ done:
|
|||||||
|
|
||||||
return rv;
|
return rv;
|
||||||
}
|
}
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
|
|
||||||
static bool brcmf_sdbrcm_chipmatch(u16 chipid)
|
static bool brcmf_sdbrcm_chipmatch(u16 chipid)
|
||||||
{
|
{
|
||||||
@ -5336,11 +5334,11 @@ brcmf_sdbrcm_probe_attach(struct dhd_bus *bus, void *sdh, void *regsva,
|
|||||||
if (brcmf_sdbrcm_set_siaddr_window(bus, SI_ENUM_BASE))
|
if (brcmf_sdbrcm_set_siaddr_window(bus, SI_ENUM_BASE))
|
||||||
DHD_ERROR(("%s: FAILED to return to SI_ENUM_BASE\n", __func__));
|
DHD_ERROR(("%s: FAILED to return to SI_ENUM_BASE\n", __func__));
|
||||||
|
|
||||||
#ifdef DHD_DEBUG
|
#ifdef BCMDBG
|
||||||
printk(KERN_DEBUG "F1 signature read @0x18000000=0x%4x\n",
|
printk(KERN_DEBUG "F1 signature read @0x18000000=0x%4x\n",
|
||||||
brcmf_sdcard_reg_read(bus->sdh, SI_ENUM_BASE, 4));
|
brcmf_sdcard_reg_read(bus->sdh, SI_ENUM_BASE, 4));
|
||||||
|
|
||||||
#endif /* DHD_DEBUG */
|
#endif /* BCMDBG */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Force PLL off until brcmf_sdbrcm_chip_attach()
|
* Force PLL off until brcmf_sdbrcm_chip_attach()
|
||||||
|
@ -87,7 +87,7 @@ extern int brcmf_sdcard_intr_disable(void *sdh);
|
|||||||
extern int brcmf_sdcard_intr_reg(void *sdh, bcmsdh_cb_fn_t fn, void *argh);
|
extern int brcmf_sdcard_intr_reg(void *sdh, bcmsdh_cb_fn_t fn, void *argh);
|
||||||
extern int brcmf_sdcard_intr_dereg(void *sdh);
|
extern int brcmf_sdcard_intr_dereg(void *sdh);
|
||||||
|
|
||||||
#if defined(DHD_DEBUG)
|
#if defined(BCMDBG)
|
||||||
/* Query pending interrupt status from the host controller */
|
/* Query pending interrupt status from the host controller */
|
||||||
extern bool brcmf_sdcard_intr_pending(void *sdh);
|
extern bool brcmf_sdcard_intr_pending(void *sdh);
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user