summaryrefslogtreecommitdiffstats
path: root/target/linux/brcm-2.4/patches/014-bcm5354.patch
blob: fed89caf72d992aeb42aaadd42be67224c4a883b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
--- a/arch/mips/bcm947xx/include/sbchipc.h	2007-11-23 12:12:01.000000000 -0500
+++ b/arch/mips/bcm947xx/include/sbchipc.h	2007-11-25 06:16:42.000000000 -0500
@@ -188,6 +188,7 @@
 #define CAP_JTAGP		0x00400000	/* JTAG Master Present */
 #define CAP_ROM			0x00800000	/* Internal boot rom active */
 #define CAP_BKPLN64		0x08000000	/* 64-bit backplane */
+#define CAP_PMU 0x10000000 /* PMU Present, rev >= 20 */
 
 /* PLL type */
 #define PLL_NONE		0x00000000
@@ -199,6 +200,9 @@
 #define PLL_TYPE6		0x00028000	/* 100/200 or 120/240 only */
 #define PLL_TYPE7		0x00038000	/* 25Mhz, 4 dividers */
 
+/* watchdog clock */
+#define WATCHDOG_CLOCK_5354 32000 /* Hz */
+
 /* corecontrol */
 #define CC_UARTCLKO		0x00000001	/* Drive UART with internal clock */
 #define	CC_SE			0x00000002	/* sync clk out enable (corerev >= 3) */
--- a/arch/mips/bcm947xx/include/bcmdevs.h	2007-11-23 12:12:01.000000000 -0500
+++ b/arch/mips/bcm947xx/include/bcmdevs.h	2007-11-25 05:58:20.000000000 -0500
@@ -121,6 +121,7 @@
 #define BCM5365_CHIP_ID		0x5365          /* 5365 chipcommon chipid */
 #define	BCM5350_CHIP_ID		0x5350		/* bcm5350 chipcommon chipid */
 #define	BCM5352_CHIP_ID		0x5352		/* bcm5352 chipcommon chipid */
+#define	BCM5354_CHIP_ID		0x5354		/* bcm5354 chipcommon chipid */
 
 #define	BCM4320_CHIP_ID		0x4320		/* bcm4320 chipcommon chipid */
 
--- a/arch/mips/bcm947xx/sbmips.c	2007-11-23 12:12:02.000000000 -0500
+++ b/arch/mips/bcm947xx/sbmips.c	2007-11-25 05:40:40.000000000 -0500
@@ -290,6 +290,12 @@
 		n = R_REG(osh, &eir->clockcontrol_n);
 		m = R_REG(osh, &eir->clockcontrol_sb);
 	} else if ((cc = (chipcregs_t *) sb_setcore(sbh, SB_CC, 0))) {
+   /* 5354 chip uses a non programmable PLL of frequency 240MHz */
+   if (sb_chip(sbh) == BCM5354_CHIP_ID) {
+     rate = 240000000;
+     goto out;
+   }
+
 		pll_type = R_REG(osh, &cc->capabilities) & CAP_PLL_MASK;
 		n = R_REG(osh, &cc->clockcontrol_n);
 		if ((pll_type == PLL_TYPE2) ||
@@ -612,6 +618,15 @@
 		clockcontrol_pci = &eir->clockcontrol_pci;
 		clockcontrol_m2 = &cc->clockcontrol_m2;
 	} else if ((cc = (chipcregs_t *) sb_setcore(sbh, SB_CC, 0))) {
+
+   /* 5354 chipcommon pll setting can't be changed.
+    * The PMU on power up comes up with the default clk frequency
+    * of 240MHz
+    */
+  if (sb_chip(sbh) == BCM5354_CHIP_ID) {
+    ret = TRUE;
+    goto done;
+  }
 		pll_type = R_REG(osh, &cc->capabilities) & CAP_PLL_MASK;
 		if (pll_type == PLL_TYPE6) {
 			clockcontrol_n = NULL;
--- a/arch/mips/bcm947xx/sbutils.c	2007-11-23 12:12:02.000000000 -0500
+++ b/arch/mips/bcm947xx/sbutils.c	2007-11-25 06:22:43.000000000 -0500
@@ -791,8 +791,14 @@
 	/* readback */
 	if (regoff >= SBCONFIGOFF)
 		w = R_SBREG(si, r);
-	else
+	else {
+   if ((si->sb.chip == BCM5354_CHIP_ID) &&
+       (coreidx == SB_CC_IDX) &&
+       (regoff == OFFSETOF(chipcregs_t, watchdog))) {
+         w = val;
+   } else
 		w = R_REG(si->osh, r);
+ }
 
 	if (!fast) {
 		/* restore core index */
@@ -1902,6 +1908,15 @@
 		n = R_REG(si->osh, &eir->clockcontrol_n);
 		m = R_REG(si->osh, &eir->clockcontrol_sb);
 	} else if ((cc = (chipcregs_t *) sb_setcore(sbh, SB_CC, 0))) {
+
+   if (R_REG(si->osh, &cc->capabilities) & CAP_PMU) {
+      if (sb_chip(sbh) == BCM5354_CHIP_ID) {
+        /* 5354 has a constant sb clock of 120MHz */
+        rate = 120000000;
+        goto end;
+      } else
+     ASSERT(0);
+   }
 		pll_type = R_REG(si->osh, &cc->capabilities) & CAP_PLL_MASK;
 		if (pll_type == PLL_NONE) {
 			INTR_RESTORE(si, intr_val);
@@ -1929,6 +1944,7 @@
 			rate = rate / 2;
 	}
 
+end:
 	/* switch back to previous core */
 	sb_setcoreidx(sbh, idx);
 
--- a/arch/mips/bcm947xx/hndchipc.c	2007-11-23 12:12:02.000000000 -0500
+++ b/arch/mips/bcm947xx/hndchipc.c	2007-11-25 06:31:15.000000000 -0500
@@ -93,6 +93,9 @@
 		chipcregs_t *cc = (chipcregs_t *) regs;
 		uint32 rev, cap, pll, baud_base, div;
 
+  /* Default value */
+  div = 48;
+
 		/* Determine core revision and capabilities */
 		rev = sb_corerev(sbh);
 		cap = R_REG(osh, &cc->capabilities);
@@ -108,22 +111,29 @@
 			                          R_REG(osh, &cc->clockcontrol_m2));
 			div = 1;
 		} else {
-			/* Fixed ALP clock */
-			if (rev >= 11 && rev != 15) {
-				baud_base = 20000000;
+/* 5354 chip common uart uses a constant clock
+ * frequency of 25MHz */
+         if (sb_corerev(sbh) == 20) {
+                 /* Set the override bit so we don't divide it */
+                 W_REG(osh, &cc->corecontrol, CC_UARTCLKO);
+                 baud_base = 25000000;
+         } else if (rev >= 11 && rev != 15) {
+                 /* Fixed ALP clock */
+//                 baud_base = sb_alp_clock(sbh);
+                 baud_base = 20000000;
 				div = 1;
 				/* Set the override bit so we don't divide it */
 				W_REG(osh, &cc->corecontrol, CC_UARTCLKO);
-			}
+			
 			/* Internal backplane clock */
-			else if (rev >= 3) {
-				baud_base = sb_clock(sbh);
-				div = 2;	/* Minimum divisor */
-				W_REG(osh, &cc->clkdiv,
+   } else if (rev >= 3) {
+				  baud_base = sb_clock(sbh);
+				  div = 2;	/* Minimum divisor */
+				  W_REG(osh, &cc->clkdiv,
 				      ((R_REG(osh, &cc->clkdiv) & ~CLKD_UART) | div));
-			}
+
 			/* Fixed internal backplane clock */
-			else {
+   } else {
 				baud_base = 88000000;
 				div = 48;
 			}