mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 19:06:16 +02:00
769a390d81
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31130 3c298f89-4303-0410-b956-a3cf2f4a3e73
27 lines
1007 B
Diff
27 lines
1007 B
Diff
From 16ba44545156e4e7cc1e812ad93e562ce92fd74c Mon Sep 17 00:00:00 2001
|
|
From: Florian Fainelli <florian@openwrt.org>
|
|
Date: Wed, 25 Jan 2012 17:40:00 +0100
|
|
Subject: [PATCH 08/63] MIPS: BCM63XX: define SPI register sizes.
|
|
|
|
There are two distinct sizes for the SPI register depending on the SoC
|
|
generation (6338 & 6348 vs 6358 & 6368).
|
|
|
|
Signed-off-by: Florian Fainelli <florian@openwrt.org>
|
|
---
|
|
arch/mips/include/asm/mach-bcm63xx/bcm63xx_cpu.h | 4 ++++
|
|
1 files changed, 4 insertions(+), 0 deletions(-)
|
|
|
|
--- a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_cpu.h
|
|
+++ b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_cpu.h
|
|
@@ -135,6 +135,10 @@ enum bcm63xx_regs_set {
|
|
#define RSET_DSL_LMEM_SIZE (64 * 1024 * 4)
|
|
#define RSET_DSL_SIZE 4096
|
|
#define RSET_WDT_SIZE 12
|
|
+#define BCM_6338_RSET_SPI_SIZE 64
|
|
+#define BCM_6348_RSET_SPI_SIZE 64
|
|
+#define BCM_6358_RSET_SPI_SIZE 1804
|
|
+#define BCM_6368_RSET_SPI_SIZE 1804
|
|
#define RSET_ENET_SIZE 2048
|
|
#define RSET_ENETDMA_SIZE 2048
|
|
#define RSET_ENETSW_SIZE 65536
|