summaryrefslogtreecommitdiffstats
path: root/sys/dev/bxe/bxe_include.h
diff options
context:
space:
mode:
authordavidch <davidch@FreeBSD.org>2013-09-20 20:18:49 +0000
committerdavidch <davidch@FreeBSD.org>2013-09-20 20:18:49 +0000
commite226cdd9b86260d8a329201e38a0ea97b4cd4c39 (patch)
treef12f72cd242d820f494bbb63bc49b513084ced43 /sys/dev/bxe/bxe_include.h
parent0e1e730ce790f1bb4ce55cde187809b020a3313b (diff)
downloadFreeBSD-src-e226cdd9b86260d8a329201e38a0ea97b4cd4c39.zip
FreeBSD-src-e226cdd9b86260d8a329201e38a0ea97b4cd4c39.tar.gz
Substantial rewrite of bxe(4) to add support for the BCM57712 and
BCM578XX controllers. Approved by: re MFC after: 4 weeks
Diffstat (limited to 'sys/dev/bxe/bxe_include.h')
-rw-r--r--sys/dev/bxe/bxe_include.h163
1 files changed, 0 insertions, 163 deletions
diff --git a/sys/dev/bxe/bxe_include.h b/sys/dev/bxe/bxe_include.h
deleted file mode 100644
index 67673f5..0000000
--- a/sys/dev/bxe/bxe_include.h
+++ /dev/null
@@ -1,163 +0,0 @@
-/*-
- * Copyright (c) 2007-2011 Broadcom Corporation. All rights reserved.
- *
- * Gary Zambrano <zambrano@broadcom.com>
- * David Christensen <davidch@broadcom.com>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- *
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. Neither the name of Broadcom Corporation nor the name of its contributors
- * may be used to endorse or promote products derived from this software
- * without specific prior written consent.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS'
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
- * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
- * THE POSSIBILITY OF SUCH DAMAGE.
- */
-
- /*$FreeBSD$*/
-
-#ifndef _BXE_INCLUDE_H
-#define _BXE_INCLUDE_H
-
-#include <sys/param.h>
-#include <sys/types.h>
-#include <sys/endian.h>
-
-#include <machine/bus.h>
-
-/*
- * Convert FreeBSD byte order to match generated code usage.
- */
-#if BYTE_ORDER == BIG_ENDIAN
-#define __BIG_ENDIAN 1
-#undef __LITTLE_ENDIAN
-#else
-#undef __BIG_ENDIAN
-#define __LITTLE_ENDIAN 1
-#endif
-
-#include "bxe_debug.h"
-#include "bxe_reg.h"
-#include "bxe_fw_defs.h"
-#include "bxe_hsi.h"
-#include "bxe_link.h"
-
-/*
- * Convenience definitions used in multiple files.
- */
-#define BXE_PRINTF(fmt, args...) \
- do { \
- device_printf(sc->dev, fmt, ##args); \
- }while(0)
-
-
-#ifdef BXE_DEBUG
-
-#define REG_WR(sc, offset, val) \
- bxe_reg_write32(sc, offset, val)
-#define REG_WR8(sc, offset, val) \
- bxe_reg_write8(sc, offset, val)
-#define REG_WR16(sc, offset, val) \
- bxe_reg_write16(sc, offset, val)
-#define REG_WR32(sc, offset, val) \
- bxe_reg_write32(sc, offset, val)
-
-#define REG_RD(sc, offset) \
- bxe_reg_read32(sc, offset)
-#define REG_RD8(sc, offset) \
- bxe_reg_read8(sc, offset)
-#define REG_RD16(sc, offset) \
- bxe_reg_read16(sc, offset)
-#define REG_RD32(sc, offset) \
- bxe_reg_read32(sc, offset)
-
-#define REG_RD_IND(sc, offset) \
- bxe_reg_rd_ind(sc, offset)
-#define REG_WR_IND(sc, offset, val) \
- bxe_reg_wr_ind(sc, offset, val)
-
-#else
-
-#define REG_WR(sc, offset, val) \
- bus_space_write_4(sc->bxe_btag, sc->bxe_bhandle, offset, val)
-#define REG_WR8(sc, offset, val) \
- bus_space_write_1(sc->bxe_btag, sc->bxe_bhandle, offset, val)
-#define REG_WR16(sc, offset, val) \
- bus_space_write_2(sc->bxe_btag, sc->bxe_bhandle, offset, val)
-#define REG_WR32(sc, offset, val) \
- bus_space_write_4(sc->bxe_btag, sc->bxe_bhandle, offset, val)
-
-#define REG_RD(sc, offset) \
- bus_space_read_4(sc->bxe_btag, sc->bxe_bhandle, offset)
-#define REG_RD8(sc, offset) \
- bus_space_read_1(sc->bxe_btag, sc->bxe_bhandle, offset)
-#define REG_RD16(sc, offset) \
- bus_space_read_2(sc->bxe_btag, sc->bxe_bhandle, offset)
-#define REG_RD32(sc, offset) \
- bus_space_read_4(sc->bxe_btag, sc->bxe_bhandle, offset)
-
-#define REG_RD_IND(sc, offset) \
- bxe_reg_rd_ind(sc, offset)
-#define REG_WR_IND(sc, offset, val) \
- bxe_reg_wr_ind(sc, offset, val)
-
-#endif /* BXE_DEBUG */
-
-
-#define REG_RD_DMAE(sc, offset, val, len32) \
- do { \
- bxe_read_dmae(sc, offset, len32); \
- memcpy(val, BXE_SP(sc, wb_data[0]), len32 * 4); \
- } while (0)
-
-
-#define REG_WR_DMAE(sc, offset, val, len32) \
- do { \
- memcpy(BXE_SP(sc, wb_data[0]), val, len32 * 4); \
- bxe_write_dmae(sc, BXE_SP_MAPPING(sc, wb_data), \
- offset, len32); \
- } while (0)
-
-
-#define SHMEM_ADDR(sc, field) (sc->common.shmem_base + \
- offsetof(struct shmem_region, field))
-
-#define SHMEM_RD(sc, field) \
- REG_RD(sc, SHMEM_ADDR(sc, field))
-#define SHMEM_RD16(sc, field) \
- REG_RD16(sc, SHMEM_ADDR(sc, field))
-
-#define SHMEM_WR(sc, field, val) \
- REG_WR(sc, SHMEM_ADDR(sc, field), val)
-
-#define SHMEM2_ADDR(sc, field) (sc->common.shmem2_base + \
- offsetof(struct shmem2_region, field))
-#define SHMEM2_RD(sc, field) REG_RD(sc, SHMEM2_ADDR(sc, field))
-#define SHMEM2_WR(sc, field, val) REG_WR(sc, SHMEM2_ADDR(sc, field), val)
-
-
-#define EMAC_RD(sc, reg) \
- REG_RD(sc, emac_base + (uint32_t) reg)
-#define EMAC_WR(sc, reg, val) \
- REG_WR(sc, emac_base + (uint32_t) reg, val)
-
-#define BMAC_WR(sc, reg, val) \
- REG_WR(sc, GRCBASE_NIG + bmac_addr + reg, val)
-
-#endif /* _BXE_INCLUDE_H */
OpenPOWER on IntegriCloud