You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[PATCH] mips: nuke trailing whitespace
Signed-off-by: Ralf Baechle <ralf@linux-mips.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
875d43e72b
commit
42a3b4f25a
@@ -25,12 +25,12 @@
|
||||
|
||||
#define SIBYTE_BOARD_NAME "Carmel"
|
||||
|
||||
#define GPIO_PHY_INTERRUPT 2
|
||||
#define GPIO_NONMASKABLE_INT 3
|
||||
#define GPIO_CF_INSERTED 6
|
||||
#define GPIO_MONTEREY_RESET 7
|
||||
#define GPIO_QUADUART_INT 8
|
||||
#define GPIO_CF_INT 9
|
||||
#define GPIO_PHY_INTERRUPT 2
|
||||
#define GPIO_NONMASKABLE_INT 3
|
||||
#define GPIO_CF_INSERTED 6
|
||||
#define GPIO_MONTEREY_RESET 7
|
||||
#define GPIO_QUADUART_INT 8
|
||||
#define GPIO_CF_INT 9
|
||||
#define GPIO_FPGA_CCLK 10
|
||||
#define GPIO_FPGA_DOUT 11
|
||||
#define GPIO_FPGA_DIN 12
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
/* *********************************************************************
|
||||
* SB1250 Board Support Package
|
||||
*
|
||||
* Global constants and macros File: sb1250_defs.h
|
||||
*
|
||||
*
|
||||
* Global constants and macros File: sb1250_defs.h
|
||||
*
|
||||
* This file contains macros and definitions used by the other
|
||||
* include files.
|
||||
*
|
||||
* SB1250 specification level: User's manual 1/02/02
|
||||
*
|
||||
*
|
||||
* Author: Mitch Lichtenberg
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
* Copyright 2000,2001,2002,2003
|
||||
* Broadcom Corporation. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* 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,
|
||||
@@ -27,7 +27,7 @@
|
||||
*
|
||||
* 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,
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
* MA 02111-1307 USA
|
||||
********************************************************************* */
|
||||
|
||||
@@ -105,7 +105,7 @@
|
||||
#define SIBYTE_HDR_FMASK_112x_ALL 0x0000f00
|
||||
#define SIBYTE_HDR_FMASK_112x_PASS1 0x0000100
|
||||
|
||||
/* Bit mask for chip/revision. (use _ALL for all revisions of a chip). */
|
||||
/* Bit mask for chip/revision. (use _ALL for all revisions of a chip). */
|
||||
#define SIBYTE_HDR_FMASK(chip, pass) \
|
||||
(SIBYTE_HDR_FMASK_ ## chip ## _ ## pass)
|
||||
#define SIBYTE_HDR_FMASK_ALLREVS(chip) \
|
||||
@@ -150,31 +150,31 @@
|
||||
|
||||
/* *********************************************************************
|
||||
* Naming schemes for constants in these files:
|
||||
*
|
||||
* M_xxx MASK constant (identifies bits in a register).
|
||||
*
|
||||
* M_xxx MASK constant (identifies bits in a register).
|
||||
* For multi-bit fields, all bits in the field will
|
||||
* be set.
|
||||
*
|
||||
* K_xxx "Code" constant (value for data in a multi-bit
|
||||
* field). The value is right justified.
|
||||
*
|
||||
* V_xxx "Value" constant. This is the same as the
|
||||
* V_xxx "Value" constant. This is the same as the
|
||||
* corresponding "K_xxx" constant, except it is
|
||||
* shifted to the correct position in the register.
|
||||
*
|
||||
* S_xxx SHIFT constant. This is the number of bits that
|
||||
* a field value (code) needs to be shifted
|
||||
* a field value (code) needs to be shifted
|
||||
* (towards the left) to put the value in the right
|
||||
* position for the register.
|
||||
*
|
||||
* A_xxx ADDRESS constant. This will be a physical
|
||||
* A_xxx ADDRESS constant. This will be a physical
|
||||
* address. Use the PHYS_TO_K1 macro to generate
|
||||
* a K1SEG address.
|
||||
*
|
||||
* R_xxx RELATIVE offset constant. This is an offset from
|
||||
* an A_xxx constant (usually the first register in
|
||||
* a group).
|
||||
*
|
||||
*
|
||||
* G_xxx(X) GET value. This macro obtains a multi-bit field
|
||||
* from a register, masks it, and shifts it to
|
||||
* the bottom of the register (retrieving a K_xxx
|
||||
@@ -189,7 +189,7 @@
|
||||
|
||||
|
||||
/*
|
||||
* Cast to 64-bit number. Presumably the syntax is different in
|
||||
* Cast to 64-bit number. Presumably the syntax is different in
|
||||
* assembly language.
|
||||
*
|
||||
* Note: you'll need to define uint32_t and uint64_t in your headers.
|
||||
|
||||
@@ -1,24 +1,24 @@
|
||||
/* *********************************************************************
|
||||
* SB1250 Board Support Package
|
||||
*
|
||||
*
|
||||
* DMA definitions File: sb1250_dma.h
|
||||
*
|
||||
*
|
||||
* This module contains constants and macros useful for
|
||||
* programming the SB1250's DMA controllers, both the data mover
|
||||
* and the Ethernet DMA.
|
||||
*
|
||||
*
|
||||
* SB1250 specification level: User's manual 1/02/02
|
||||
*
|
||||
*
|
||||
* Author: Mitch Lichtenberg
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
* Copyright 2000,2001,2002,2003
|
||||
* Broadcom Corporation. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* 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,
|
||||
@@ -28,7 +28,7 @@
|
||||
*
|
||||
* 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,
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
* MA 02111-1307 USA
|
||||
********************************************************************* */
|
||||
|
||||
@@ -43,9 +43,9 @@
|
||||
* DMA Registers
|
||||
********************************************************************* */
|
||||
|
||||
/*
|
||||
/*
|
||||
* Ethernet and Serial DMA Configuration Register 0 (Table 7-4)
|
||||
* Registers: DMA_CONFIG0_MAC_x_RX_CH_0
|
||||
* Registers: DMA_CONFIG0_MAC_x_RX_CH_0
|
||||
* Registers: DMA_CONFIG0_MAC_x_TX_CH_0
|
||||
* Registers: DMA_CONFIG0_SER_x_RX
|
||||
* Registers: DMA_CONFIG0_SER_x_TX
|
||||
@@ -98,7 +98,7 @@
|
||||
|
||||
/*
|
||||
* Ethernet and Serial DMA Configuration Register 1 (Table 7-5)
|
||||
* Registers: DMA_CONFIG1_MAC_x_RX_CH_0
|
||||
* Registers: DMA_CONFIG1_MAC_x_RX_CH_0
|
||||
* Registers: DMA_CONFIG1_DMA_x_TX_CH_0
|
||||
* Registers: DMA_CONFIG1_SER_x_RX
|
||||
* Registers: DMA_CONFIG1_SER_x_TX
|
||||
@@ -152,11 +152,11 @@
|
||||
/*
|
||||
* DMA Descriptor Count Registers (Table 7-8)
|
||||
*/
|
||||
|
||||
|
||||
/* No bitfields */
|
||||
|
||||
|
||||
/*
|
||||
/*
|
||||
* Current Descriptor Address Register (Table 7-11)
|
||||
*/
|
||||
|
||||
@@ -275,14 +275,14 @@
|
||||
#define V_DMA_DSCRB_STATUS(x) _SB_MAKEVALUE(x,S_DMA_DSCRB_STATUS)
|
||||
#define G_DMA_DSCRB_STATUS(x) _SB_GETVALUE(x,S_DMA_DSCRB_STATUS,M_DMA_DSCRB_STATUS)
|
||||
|
||||
/*
|
||||
/*
|
||||
* Ethernet Descriptor Status Bits (Table 7-15)
|
||||
*/
|
||||
|
||||
#define M_DMA_ETHRX_BADIP4CS _SB_MAKEMASK1(51)
|
||||
#define M_DMA_ETHRX_DSCRERR _SB_MAKEMASK1(52)
|
||||
|
||||
#if SIBYTE_HDR_FEATURE(1250, PASS2) || SIBYTE_HDR_FEATURE(112x, PASS1)
|
||||
#if SIBYTE_HDR_FEATURE(1250, PASS2) || SIBYTE_HDR_FEATURE(112x, PASS1)
|
||||
/* Note: BADTCPCS is actually in DSCR_B options field */
|
||||
#define M_DMA_ETHRX_BADTCPCS _SB_MAKEMASK1(0)
|
||||
#endif /* 1250 PASS2 || 112x PASS1 */
|
||||
@@ -324,7 +324,7 @@
|
||||
|
||||
#define M_DMA_ETHTX_SOP _SB_MAKEMASK1(63)
|
||||
|
||||
/*
|
||||
/*
|
||||
* Ethernet Transmit Options (Table 7-17)
|
||||
*/
|
||||
|
||||
@@ -377,7 +377,7 @@
|
||||
* Data Mover Registers
|
||||
********************************************************************* */
|
||||
|
||||
/*
|
||||
/*
|
||||
* Data Mover Descriptor Base Address Register (Table 7-22)
|
||||
* Register: DM_DSCR_BASE_0
|
||||
* Register: DM_DSCR_BASE_1
|
||||
@@ -414,7 +414,7 @@
|
||||
#define M_DM_DSCR_BASE_ABORT _SB_MAKEMASK1(62)
|
||||
#define M_DM_DSCR_BASE_ENABL _SB_MAKEMASK1(63)
|
||||
|
||||
/*
|
||||
/*
|
||||
* Data Mover Descriptor Count Register (Table 7-25)
|
||||
*/
|
||||
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
/* *********************************************************************
|
||||
* SB1250 Board Support Package
|
||||
*
|
||||
*
|
||||
* Generic Bus Constants File: sb1250_genbus.h
|
||||
*
|
||||
* This module contains constants and macros useful for
|
||||
*
|
||||
* This module contains constants and macros useful for
|
||||
* manipulating the SB1250's Generic Bus interface
|
||||
*
|
||||
*
|
||||
* SB1250 specification level: User's manual 1/02/02
|
||||
*
|
||||
*
|
||||
* Author: Mitch Lichtenberg
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
* Copyright 2000,2001,2002,2003
|
||||
* Broadcom Corporation. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* 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,
|
||||
@@ -27,7 +27,7 @@
|
||||
*
|
||||
* 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,
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
* MA 02111-1307 USA
|
||||
********************************************************************* */
|
||||
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
/* *********************************************************************
|
||||
* SB1250 Board Support Package
|
||||
*
|
||||
*
|
||||
* Interrupt Mapper definitions File: sb1250_int.h
|
||||
*
|
||||
*
|
||||
* This module contains constants for manipulating the SB1250's
|
||||
* interrupt mapper and definitions for the interrupt sources.
|
||||
*
|
||||
*
|
||||
* SB1250 specification level: User's manual 1/02/02
|
||||
*
|
||||
*
|
||||
* Author: Mitch Lichtenberg
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
* Copyright 2000,2001,2002,2003
|
||||
* Broadcom Corporation. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* 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,
|
||||
@@ -27,7 +27,7 @@
|
||||
*
|
||||
* 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,
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
* MA 02111-1307 USA
|
||||
********************************************************************* */
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
|
||||
/*
|
||||
* Interrupt sources (Table 4-8, UM 0.2)
|
||||
*
|
||||
*
|
||||
* First, the interrupt numbers.
|
||||
*/
|
||||
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
/* *********************************************************************
|
||||
* SB1250 Board Support Package
|
||||
*
|
||||
*
|
||||
* L2 Cache constants and macros File: sb1250_l2c.h
|
||||
*
|
||||
*
|
||||
* This module contains constants useful for manipulating the
|
||||
* level 2 cache.
|
||||
*
|
||||
*
|
||||
* SB1250 specification level: User's manual 1/02/02
|
||||
*
|
||||
*
|
||||
* Author: Mitch Lichtenberg
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
* Copyright 2000,2001,2002,2003
|
||||
* Broadcom Corporation. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* 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,
|
||||
@@ -27,7 +27,7 @@
|
||||
*
|
||||
* 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,
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
* MA 02111-1307 USA
|
||||
********************************************************************* */
|
||||
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
/* *********************************************************************
|
||||
* SB1250 Board Support Package
|
||||
*
|
||||
*
|
||||
* LDT constants File: sb1250_ldt.h
|
||||
*
|
||||
* This module contains constants and macros to describe
|
||||
* the LDT interface on the SB1250.
|
||||
*
|
||||
*
|
||||
* This module contains constants and macros to describe
|
||||
* the LDT interface on the SB1250.
|
||||
*
|
||||
* SB1250 specification level: User's manual 1/02/02
|
||||
*
|
||||
*
|
||||
* Author: Mitch Lichtenberg
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
* Copyright 2000,2001,2002,2003
|
||||
* Broadcom Corporation. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* 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,
|
||||
@@ -27,7 +27,7 @@
|
||||
*
|
||||
* 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,
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
* MA 02111-1307 USA
|
||||
********************************************************************* */
|
||||
|
||||
@@ -155,7 +155,7 @@
|
||||
|
||||
/*
|
||||
* LDT Status Register (Table 8-14). Note that these constants
|
||||
* assume you've read the command and status register
|
||||
* assume you've read the command and status register
|
||||
* together (32-bit read at offset 0x04)
|
||||
*
|
||||
* These bits also apply to the secondary status
|
||||
@@ -183,8 +183,8 @@
|
||||
#define M_LDT_STATUS_DETPARERR _SB_MAKEMASK1_32(31)
|
||||
|
||||
/*
|
||||
* Bridge Control Register (Table 8-16). Note that these
|
||||
* constants assume you've read the register as a 32-bit
|
||||
* Bridge Control Register (Table 8-16). Note that these
|
||||
* constants assume you've read the register as a 32-bit
|
||||
* read (offset 0x3C)
|
||||
*/
|
||||
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
/* *********************************************************************
|
||||
* SB1250 Board Support Package
|
||||
*
|
||||
*
|
||||
* MAC constants and macros File: sb1250_mac.h
|
||||
*
|
||||
*
|
||||
* This module contains constants and macros for the SB1250's
|
||||
* ethernet controllers.
|
||||
*
|
||||
*
|
||||
* SB1250 specification level: User's manual 1/02/02
|
||||
*
|
||||
*
|
||||
* Author: Mitch Lichtenberg
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
* Copyright 2000,2001,2002,2003
|
||||
* Broadcom Corporation. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* 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,
|
||||
@@ -27,7 +27,7 @@
|
||||
*
|
||||
* 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,
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
* MA 02111-1307 USA
|
||||
********************************************************************* */
|
||||
|
||||
@@ -311,7 +311,7 @@
|
||||
|
||||
/*
|
||||
* These constants are used to configure the fields within the Frame
|
||||
* Configuration Register.
|
||||
* Configuration Register.
|
||||
*/
|
||||
|
||||
#define K_MAC_IFG_RX_10 _SB_MAKE64(0) /* See table 176, not used */
|
||||
@@ -393,7 +393,7 @@
|
||||
* Register: MAC_INT_MASK_2
|
||||
*/
|
||||
|
||||
/*
|
||||
/*
|
||||
* Use these constants to shift the appropriate channel
|
||||
* into the CH0 position so the same tests can be used
|
||||
* on each channel.
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
/* *********************************************************************
|
||||
* SB1250 Board Support Package
|
||||
*
|
||||
* Memory Controller constants File: sb1250_mc.h
|
||||
*
|
||||
*
|
||||
* Memory Controller constants File: sb1250_mc.h
|
||||
*
|
||||
* This module contains constants and macros useful for
|
||||
* programming the memory controller.
|
||||
*
|
||||
*
|
||||
* SB1250 specification level: User's manual 1/02/02
|
||||
*
|
||||
*
|
||||
* Author: Mitch Lichtenberg
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
* Copyright 2000,2001,2002,2003
|
||||
* Broadcom Corporation. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* 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,
|
||||
@@ -27,7 +27,7 @@
|
||||
*
|
||||
* 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,
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
* MA 02111-1307 USA
|
||||
********************************************************************* */
|
||||
|
||||
@@ -166,7 +166,7 @@
|
||||
|
||||
#define K_MC_REF_RATE_100MHz 0x62
|
||||
#define K_MC_REF_RATE_133MHz 0x81
|
||||
#define K_MC_REF_RATE_200MHz 0xC4
|
||||
#define K_MC_REF_RATE_200MHz 0xC4
|
||||
|
||||
#define V_MC_REF_RATE_100MHz V_MC_REF_RATE(K_MC_REF_RATE_100MHz)
|
||||
#define V_MC_REF_RATE_133MHz V_MC_REF_RATE(K_MC_REF_RATE_133MHz)
|
||||
@@ -228,7 +228,7 @@
|
||||
V_MC_ADDR_DRIVE_DEFAULT | \
|
||||
V_MC_DATA_DRIVE_DEFAULT | \
|
||||
V_MC_CLOCK_DRIVE_DEFAULT | \
|
||||
V_MC_REF_RATE_DEFAULT
|
||||
V_MC_REF_RATE_DEFAULT
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
/* *********************************************************************
|
||||
* SB1250 Board Support Package
|
||||
*
|
||||
*
|
||||
* Register Definitions File: sb1250_regs.h
|
||||
*
|
||||
*
|
||||
* This module contains the addresses of the on-chip peripherals
|
||||
* on the SB1250.
|
||||
*
|
||||
*
|
||||
* SB1250 specification level: 01/02/2002
|
||||
*
|
||||
*
|
||||
* Author: Mitch Lichtenberg
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
* Copyright 2000,2001,2002,2003
|
||||
* Broadcom Corporation. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* 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,
|
||||
@@ -27,7 +27,7 @@
|
||||
*
|
||||
* 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,
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
* MA 02111-1307 USA
|
||||
********************************************************************* */
|
||||
|
||||
@@ -40,20 +40,20 @@
|
||||
|
||||
/* *********************************************************************
|
||||
* Some general notes:
|
||||
*
|
||||
*
|
||||
* For the most part, when there is more than one peripheral
|
||||
* of the same type on the SOC, the constants below will be
|
||||
* offsets from the base of each peripheral. For example,
|
||||
* the MAC registers are described as offsets from the first
|
||||
* MAC register, and there will be a MAC_REGISTER() macro
|
||||
* to calculate the base address of a given MAC.
|
||||
*
|
||||
* to calculate the base address of a given MAC.
|
||||
*
|
||||
* The information in this file is based on the SB1250 SOC
|
||||
* manual version 0.2, July 2000.
|
||||
********************************************************************* */
|
||||
|
||||
|
||||
/* *********************************************************************
|
||||
/* *********************************************************************
|
||||
* Memory Controller Registers
|
||||
********************************************************************* */
|
||||
|
||||
@@ -101,7 +101,7 @@
|
||||
#define R_MC_TEST_ECC 0x0000000420
|
||||
#define R_MC_MCLK_CFG 0x0000000500
|
||||
|
||||
/* *********************************************************************
|
||||
/* *********************************************************************
|
||||
* L2 Cache Control Registers
|
||||
********************************************************************* */
|
||||
|
||||
@@ -126,7 +126,7 @@
|
||||
#define A_L2_EEC_ADDRESS A_L2_ECC_TAG
|
||||
|
||||
|
||||
/* *********************************************************************
|
||||
/* *********************************************************************
|
||||
* PCI Interface Registers
|
||||
********************************************************************* */
|
||||
|
||||
@@ -134,7 +134,7 @@
|
||||
#define A_PCI_TYPE01_HEADER 0x00DE000800
|
||||
|
||||
|
||||
/* *********************************************************************
|
||||
/* *********************************************************************
|
||||
* Ethernet DMA and MACs
|
||||
********************************************************************* */
|
||||
|
||||
@@ -184,7 +184,7 @@
|
||||
(R_MAC_DMA_CHANNEL_BASE(txrx,chan) + \
|
||||
(reg))
|
||||
|
||||
/*
|
||||
/*
|
||||
* DMA channel registers, relative to A_MAC_DMA_CHANNEL_BASE
|
||||
*/
|
||||
|
||||
@@ -259,7 +259,7 @@
|
||||
#define MAC_CHMAP_COUNT 4
|
||||
|
||||
|
||||
/* *********************************************************************
|
||||
/* *********************************************************************
|
||||
* DUART Registers
|
||||
********************************************************************* */
|
||||
|
||||
@@ -363,7 +363,7 @@
|
||||
#endif /* 1250 PASS2 || 112x PASS1 */
|
||||
|
||||
|
||||
/* *********************************************************************
|
||||
/* *********************************************************************
|
||||
* Synchronous Serial Registers
|
||||
********************************************************************* */
|
||||
|
||||
@@ -397,7 +397,7 @@
|
||||
(reg))
|
||||
|
||||
|
||||
/*
|
||||
/*
|
||||
* DMA channel registers, relative to A_SER_DMA_CHANNEL_BASE
|
||||
*/
|
||||
|
||||
@@ -457,7 +457,7 @@
|
||||
#define R_SER_RMON_RX_ERRORS 0x000001F0
|
||||
#define R_SER_RMON_RX_BADADDR 0x000001F8
|
||||
|
||||
/* *********************************************************************
|
||||
/* *********************************************************************
|
||||
* Generic Bus Registers
|
||||
********************************************************************* */
|
||||
|
||||
@@ -513,7 +513,7 @@
|
||||
#define R_IO_PCMCIA_CFG 0x0A60
|
||||
#define R_IO_PCMCIA_STATUS 0x0A70
|
||||
|
||||
/* *********************************************************************
|
||||
/* *********************************************************************
|
||||
* GPIO Registers
|
||||
********************************************************************* */
|
||||
|
||||
@@ -537,7 +537,7 @@
|
||||
#define R_GPIO_PIN_CLR 0x30
|
||||
#define R_GPIO_PIN_SET 0x38
|
||||
|
||||
/* *********************************************************************
|
||||
/* *********************************************************************
|
||||
* SMBus Registers
|
||||
********************************************************************* */
|
||||
|
||||
@@ -573,7 +573,7 @@
|
||||
#define R_SMB_CONTROL 0x0000000060
|
||||
#define R_SMB_PEC 0x0000000070
|
||||
|
||||
/* *********************************************************************
|
||||
/* *********************************************************************
|
||||
* Timer Registers
|
||||
********************************************************************* */
|
||||
|
||||
@@ -641,7 +641,7 @@
|
||||
#endif /* 1250 PASS2 || 112x PASS1 */
|
||||
|
||||
|
||||
/* *********************************************************************
|
||||
/* *********************************************************************
|
||||
* System Control Registers
|
||||
********************************************************************* */
|
||||
|
||||
@@ -649,7 +649,7 @@
|
||||
#define A_SCD_SYSTEM_CFG 0x0010020008
|
||||
#define A_SCD_SYSTEM_MANUF 0x0010038000
|
||||
|
||||
/* *********************************************************************
|
||||
/* *********************************************************************
|
||||
* System Address Trap Registers
|
||||
********************************************************************* */
|
||||
|
||||
@@ -672,7 +672,7 @@
|
||||
#endif /* 1250 PASS2 || 112x PASS1 */
|
||||
|
||||
|
||||
/* *********************************************************************
|
||||
/* *********************************************************************
|
||||
* System Interrupt Mapper Registers
|
||||
********************************************************************* */
|
||||
|
||||
@@ -701,7 +701,7 @@
|
||||
#define R_IMR_INTERRUPT_MAP_BASE 0x0200
|
||||
#define R_IMR_INTERRUPT_MAP_COUNT 64
|
||||
|
||||
/* *********************************************************************
|
||||
/* *********************************************************************
|
||||
* System Performance Counter Registers
|
||||
********************************************************************* */
|
||||
|
||||
@@ -711,7 +711,7 @@
|
||||
#define A_SCD_PERF_CNT_2 0x00100204E0
|
||||
#define A_SCD_PERF_CNT_3 0x00100204E8
|
||||
|
||||
/* *********************************************************************
|
||||
/* *********************************************************************
|
||||
* System Bus Watcher Registers
|
||||
********************************************************************* */
|
||||
|
||||
@@ -726,13 +726,13 @@
|
||||
#define A_BUS_L2_ERRORS 0x00100208C0
|
||||
#define A_BUS_MEM_IO_ERRORS 0x00100208C8
|
||||
|
||||
/* *********************************************************************
|
||||
/* *********************************************************************
|
||||
* System Debug Controller Registers
|
||||
********************************************************************* */
|
||||
|
||||
#define A_SCD_JTAG_BASE 0x0010000000
|
||||
|
||||
/* *********************************************************************
|
||||
/* *********************************************************************
|
||||
* System Trace Buffer Registers
|
||||
********************************************************************* */
|
||||
|
||||
@@ -755,7 +755,7 @@
|
||||
#define A_SCD_TRACE_SEQUENCE_6 0x0010020A90
|
||||
#define A_SCD_TRACE_SEQUENCE_7 0x0010020A98
|
||||
|
||||
/* *********************************************************************
|
||||
/* *********************************************************************
|
||||
* System Generic DMA Registers
|
||||
********************************************************************* */
|
||||
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
/* *********************************************************************
|
||||
* SB1250 Board Support Package
|
||||
*
|
||||
*
|
||||
* SCD Constants and Macros File: sb1250_scd.h
|
||||
*
|
||||
*
|
||||
* This module contains constants and macros useful for
|
||||
* manipulating the System Control and Debug module on the 1250.
|
||||
*
|
||||
*
|
||||
* SB1250 specification level: User's manual 1/02/02
|
||||
*
|
||||
*
|
||||
* Author: Mitch Lichtenberg
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
* Copyright 2000,2001,2002,2003
|
||||
* Broadcom Corporation. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* 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,
|
||||
@@ -27,7 +27,7 @@
|
||||
*
|
||||
* 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,
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
* MA 02111-1307 USA
|
||||
********************************************************************* */
|
||||
|
||||
@@ -130,40 +130,40 @@
|
||||
/* System Manufacturing Register
|
||||
* Register: SCD_SYSTEM_MANUF
|
||||
*/
|
||||
|
||||
|
||||
/* Wafer ID: bits 31:0 */
|
||||
#define S_SYS_WAFERID1_200 _SB_MAKE64(0)
|
||||
#define M_SYS_WAFERID1_200 _SB_MAKEMASK(32,S_SYS_WAFERID1_200)
|
||||
#define V_SYS_WAFERID1_200(x) _SB_MAKEVALUE(x,S_SYS_WAFERID1_200)
|
||||
#define G_SYS_WAFERID1_200(x) _SB_GETVALUE(x,S_SYS_WAFERID1_200,M_SYS_WAFERID1_200)
|
||||
|
||||
|
||||
#define S_SYS_BIN _SB_MAKE64(32)
|
||||
#define M_SYS_BIN _SB_MAKEMASK(4,S_SYS_BIN)
|
||||
#define V_SYS_BIN _SB_MAKEVALUE(x,S_SYS_BIN)
|
||||
#define G_SYS_BIN _SB_GETVALUE(x,S_SYS_BIN,M_SYS_BIN)
|
||||
|
||||
|
||||
/* Wafer ID: bits 39:36 */
|
||||
#define S_SYS_WAFERID2_200 _SB_MAKE64(36)
|
||||
#define M_SYS_WAFERID2_200 _SB_MAKEMASK(4,S_SYS_WAFERID2_200)
|
||||
#define V_SYS_WAFERID2_200(x) _SB_MAKEVALUE(x,S_SYS_WAFERID2_200)
|
||||
#define G_SYS_WAFERID2_200(x) _SB_GETVALUE(x,S_SYS_WAFERID2_200,M_SYS_WAFERID2_200)
|
||||
|
||||
|
||||
/* Wafer ID: bits 39:0 */
|
||||
#define S_SYS_WAFERID_300 _SB_MAKE64(0)
|
||||
#define M_SYS_WAFERID_300 _SB_MAKEMASK(40,S_SYS_WAFERID_300)
|
||||
#define V_SYS_WAFERID_300(x) _SB_MAKEVALUE(x,S_SYS_WAFERID_300)
|
||||
#define G_SYS_WAFERID_300(x) _SB_GETVALUE(x,S_SYS_WAFERID_300,M_SYS_WAFERID_300)
|
||||
|
||||
|
||||
#define S_SYS_XPOS _SB_MAKE64(40)
|
||||
#define M_SYS_XPOS _SB_MAKEMASK(6,S_SYS_XPOS)
|
||||
#define V_SYS_XPOS(x) _SB_MAKEVALUE(x,S_SYS_XPOS)
|
||||
#define G_SYS_XPOS(x) _SB_GETVALUE(x,S_SYS_XPOS,M_SYS_XPOS)
|
||||
|
||||
|
||||
#define S_SYS_YPOS _SB_MAKE64(46)
|
||||
#define M_SYS_YPOS _SB_MAKEMASK(6,S_SYS_YPOS)
|
||||
#define V_SYS_YPOS(x) _SB_MAKEVALUE(x,S_SYS_YPOS)
|
||||
#define G_SYS_YPOS(x) _SB_GETVALUE(x,S_SYS_YPOS,M_SYS_YPOS)
|
||||
|
||||
|
||||
/*
|
||||
* System Config Register (Table 4-2)
|
||||
* Register: SCD_SYSTEM_CFG
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
/* *********************************************************************
|
||||
* SB1250 Board Support Package
|
||||
*
|
||||
*
|
||||
* SMBUS Constants File: sb1250_smbus.h
|
||||
*
|
||||
* This module contains constants and macros useful for
|
||||
*
|
||||
* This module contains constants and macros useful for
|
||||
* manipulating the SB1250's SMbus devices.
|
||||
*
|
||||
*
|
||||
* SB1250 specification level: 01/02/2002
|
||||
*
|
||||
*
|
||||
* Author: Mitch Lichtenberg
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
* Copyright 2000,2001,2002,2003
|
||||
* Broadcom Corporation. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* 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,
|
||||
@@ -27,7 +27,7 @@
|
||||
*
|
||||
* 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,
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
* MA 02111-1307 USA
|
||||
********************************************************************* */
|
||||
|
||||
|
||||
@@ -7,17 +7,17 @@
|
||||
* manipulating the SB1250's Synchronous Serial
|
||||
*
|
||||
* SB1250 specification level: User's manual 1/02/02
|
||||
*
|
||||
*
|
||||
* Author: Mitch Lichtenberg
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
* Copyright 2000,2001,2002,2003
|
||||
* Broadcom Corporation. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* 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,
|
||||
@@ -27,7 +27,7 @@
|
||||
*
|
||||
* 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,
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
* MA 02111-1307 USA
|
||||
********************************************************************* */
|
||||
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
/* *********************************************************************
|
||||
* SB1250 Board Support Package
|
||||
*
|
||||
*
|
||||
* UART Constants File: sb1250_uart.h
|
||||
*
|
||||
* This module contains constants and macros useful for
|
||||
*
|
||||
* This module contains constants and macros useful for
|
||||
* manipulating the SB1250's UARTs
|
||||
*
|
||||
* SB1250 specification level: User's manual 1/02/02
|
||||
*
|
||||
*
|
||||
* Author: Mitch Lichtenberg
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
*********************************************************************
|
||||
*
|
||||
* Copyright 2000,2001,2002,2003
|
||||
* Broadcom Corporation. All rights reserved.
|
||||
*
|
||||
* 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
|
||||
*
|
||||
* 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,
|
||||
@@ -27,7 +27,7 @@
|
||||
*
|
||||
* 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,
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
||||
* MA 02111-1307 USA
|
||||
********************************************************************* */
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
|
||||
#include "sb1250_defs.h"
|
||||
|
||||
/* **********************************************************************
|
||||
/* **********************************************************************
|
||||
* DUART Registers
|
||||
********************************************************************** */
|
||||
|
||||
@@ -145,7 +145,7 @@
|
||||
#define V_DUART_MISC_CMD_START_BREAK V_DUART_MISC_CMD(K_DUART_MISC_CMD_START_BREAK)
|
||||
#define V_DUART_MISC_CMD_STOP_BREAK V_DUART_MISC_CMD(K_DUART_MISC_CMD_STOP_BREAK)
|
||||
|
||||
#define M_DUART_CMD_RESERVED _SB_MAKEMASK1(7)
|
||||
#define M_DUART_CMD_RESERVED _SB_MAKEMASK1(7)
|
||||
|
||||
/*
|
||||
* DUART Status Register (Table 10-6)
|
||||
@@ -165,7 +165,7 @@
|
||||
|
||||
/*
|
||||
* DUART Baud Rate Register (Table 10-7)
|
||||
* Register: DUART_CLK_SEL_A
|
||||
* Register: DUART_CLK_SEL_A
|
||||
* Register: DUART_CLK_SEL_B
|
||||
*/
|
||||
|
||||
@@ -332,7 +332,7 @@
|
||||
(chan == 0 ? M_DUART_OUT_PIN_CLR0 : M_DUART_OUT_PIN_CLR1)
|
||||
|
||||
#if SIBYTE_HDR_FEATURE(1250, PASS2) || SIBYTE_HDR_FEATURE(112x, PASS1)
|
||||
/*
|
||||
/*
|
||||
* Full Interrupt Control Register
|
||||
*/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user