]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/powerpc/cpu/mpc8260/commproc.c
powerpc: t1024: Fix SRDS_MAX_LANES value
[people/ms/u-boot.git] / arch / powerpc / cpu / mpc8260 / commproc.c
1 /*
2 * This file is based on "arch/powerpc/8260_io/commproc.c" - here is it's
3 * copyright notice:
4 *
5 * General Purpose functions for the global management of the
6 * 8260 Communication Processor Module.
7 * Copyright (c) 1999 Dan Malek (dmalek@jlc.net)
8 * Copyright (c) 2000 MontaVista Software, Inc (source@mvista.com)
9 * 2.3.99 Updates
10 *
11 * In addition to the individual control of the communication
12 * channels, there are a few functions that globally affect the
13 * communication processor.
14 *
15 * Buffer descriptors must be allocated from the dual ported memory
16 * space. The allocator for that is here. When the communication
17 * process is reset, we reclaim the memory available. There is
18 * currently no deallocator for this memory.
19 */
20 #include <common.h>
21 #include <asm/cpm_8260.h>
22
23 DECLARE_GLOBAL_DATA_PTR;
24
25 void
26 m8260_cpm_reset(void)
27 {
28 volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
29 volatile ulong count;
30
31 /* Reclaim the DP memory for our use.
32 */
33 gd->arch.dp_alloc_base = CPM_DATAONLY_BASE;
34 gd->arch.dp_alloc_top = gd->arch.dp_alloc_base + CPM_DATAONLY_SIZE;
35
36 /*
37 * Reset CPM
38 */
39 immr->im_cpm.cp_cpcr = CPM_CR_RST;
40 count = 0;
41 do { /* Spin until command processed */
42 __asm__ __volatile__ ("eieio");
43 } while ((immr->im_cpm.cp_cpcr & CPM_CR_FLG) && ++count < 1000000);
44
45 #ifdef CONFIG_HARD_I2C
46 immr->im_dprambase16[PROFF_I2C_BASE / sizeof(u16)] = 0;
47 #endif
48 }
49
50 /* Allocate some memory from the dual ported ram.
51 * To help protocols with object alignment restrictions, we do that
52 * if they ask.
53 */
54 uint
55 m8260_cpm_dpalloc(uint size, uint align)
56 {
57 volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
58 uint retloc;
59 uint align_mask, off;
60 uint savebase;
61
62 align_mask = align - 1;
63 savebase = gd->arch.dp_alloc_base;
64
65 off = gd->arch.dp_alloc_base & align_mask;
66 if (off != 0)
67 gd->arch.dp_alloc_base += (align - off);
68
69 if ((off = size & align_mask) != 0)
70 size += align - off;
71
72 if ((gd->arch.dp_alloc_base + size) >= gd->arch.dp_alloc_top) {
73 gd->arch.dp_alloc_base = savebase;
74 panic("m8260_cpm_dpalloc: ran out of dual port ram!");
75 }
76
77 retloc = gd->arch.dp_alloc_base;
78 gd->arch.dp_alloc_base += size;
79
80 memset((void *)&immr->im_dprambase[retloc], 0, size);
81
82 return(retloc);
83 }
84
85 /* We also own one page of host buffer space for the allocation of
86 * UART "fifos" and the like.
87 */
88 uint
89 m8260_cpm_hostalloc(uint size, uint align)
90 {
91 /* the host might not even have RAM yet - just use dual port RAM */
92 return (m8260_cpm_dpalloc(size, align));
93 }
94
95 /* Set a baud rate generator. This needs lots of work. There are
96 * eight BRGs, which can be connected to the CPM channels or output
97 * as clocks. The BRGs are in two different block of internal
98 * memory mapped space.
99 * The baud rate clock is the system clock divided by something.
100 * It was set up long ago during the initial boot phase and is
101 * is given to us.
102 * Baud rate clocks are zero-based in the driver code (as that maps
103 * to port numbers). Documentation uses 1-based numbering.
104 */
105 #define BRG_INT_CLK gd->arch.brg_clk
106 #define BRG_UART_CLK (BRG_INT_CLK / 16)
107
108 /* This function is used by UARTs, or anything else that uses a 16x
109 * oversampled clock.
110 */
111 void
112 m8260_cpm_setbrg(uint brg, uint rate)
113 {
114 volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
115 volatile uint *bp;
116 uint cd = BRG_UART_CLK / rate;
117
118 if ((BRG_UART_CLK % rate) < (rate / 2))
119 cd--;
120 if (brg < 4) {
121 bp = (uint *)&immr->im_brgc1;
122 }
123 else {
124 bp = (uint *)&immr->im_brgc5;
125 brg -= 4;
126 }
127 bp += brg;
128 *bp = (cd << 1) | CPM_BRG_EN;
129 }
130
131 /* This function is used to set high speed synchronous baud rate
132 * clocks.
133 */
134 void
135 m8260_cpm_fastbrg(uint brg, uint rate, int div16)
136 {
137 volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
138 volatile uint *bp;
139
140 /* This is good enough to get SMCs running.....
141 */
142 if (brg < 4) {
143 bp = (uint *)&immr->im_brgc1;
144 }
145 else {
146 bp = (uint *)&immr->im_brgc5;
147 brg -= 4;
148 }
149 bp += brg;
150 *bp = (((((BRG_INT_CLK+rate-1)/rate)-1)&0xfff)<<1)|CPM_BRG_EN;
151 if (div16)
152 *bp |= CPM_BRG_DIV16;
153 }
154
155 /* This function is used to set baud rate generators using an external
156 * clock source and 16x oversampling.
157 */
158
159 void
160 m8260_cpm_extcbrg(uint brg, uint rate, uint extclk, int pinsel)
161 {
162 volatile immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
163 volatile uint *bp;
164
165 if (brg < 4) {
166 bp = (uint *)&immr->im_brgc1;
167 }
168 else {
169 bp = (uint *)&immr->im_brgc5;
170 brg -= 4;
171 }
172 bp += brg;
173 *bp = ((((((extclk/16)+rate-1)/rate)-1)&0xfff)<<1)|CPM_BRG_EN;
174 if (pinsel == 0)
175 *bp |= CPM_BRG_EXTC_CLK3_9;
176 else
177 *bp |= CPM_BRG_EXTC_CLK5_15;
178 }