]> git.sur5r.net Git - u-boot/blob - cpu/ppc4xx/fdt.c
ppc4xx: Add freqUART to CPU speed detection
[u-boot] / cpu / ppc4xx / fdt.c
1 /*
2  * (C) Copyright 2007
3  * Stefan Roese, DENX Software Engineering, sr@denx.de.
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  * MA 02111-1307 USA
22  */
23
24 /* define DEBUG for debugging output (obviously ;-)) */
25 #if 0
26 #define DEBUG
27 #endif
28
29 #include <common.h>
30 #include <watchdog.h>
31 #include <command.h>
32 #include <asm/cache.h>
33 #include <ppc4xx.h>
34
35 #if defined(CONFIG_OF_LIBFDT)
36 #include <libfdt.h>
37 #include <libfdt_env.h>
38
39 static void do_fixup(void *fdt, const char *node, const char *prop,
40                      const void *val, int len, int create)
41 {
42 #if defined(DEBUG)
43         int i;
44         debug("Updating property '%s/%s' = ", node, prop);
45         for (i = 0; i < len; i++)
46                 debug(" %.2x", *(u8*)(val+i));
47         debug("\n");
48 #endif
49         int rc = fdt_find_and_setprop(fdt, node, prop, val, len, create);
50         if (rc)
51                 printf("Unable to update property %s:%s, err=%s\n",
52                        node, prop, fdt_strerror(rc));
53 }
54
55 static void do_fixup_macaddr(void *fdt, int offset, const void *val, int i)
56 {
57         int rc;
58
59         debug("Updating node EMAC%d\n", i);
60
61         rc = fdt_setprop(fdt, offset, "mac-address", val, 6);
62         if (rc)
63                 printf("Unable to update property %s, err=%s\n",
64                        "mac-address", fdt_strerror(rc));
65         rc = fdt_setprop(fdt, offset, "local-mac-address", val, 6);
66         if (rc)
67                 printf("Unable to update property %s, err=%s\n",
68                        "local-mac-address", fdt_strerror(rc));
69 }
70
71 static void do_fixup_u32(void *fdt, const char *node, const char *prop,
72                          u32 val, int create)
73 {
74         val = cpu_to_fdt32(val);
75         do_fixup(fdt, node, prop, &val, sizeof(val), create);
76 }
77
78 static void do_fixup_uart(void *fdt, int offset, int i, bd_t *bd)
79 {
80         int rc;
81         u32 val;
82         PPC4xx_SYS_INFO sys_info;
83
84         get_sys_info(&sys_info);
85
86         debug("Updating node UART%d\n", i);
87
88 #if defined(CFG_EXT_SERIAL_CLOCK)
89         val = cpu_to_fdt32(CFG_EXT_SERIAL_CLOCK);
90 #else
91         val = cpu_to_fdt32(sys_info.freqUART);
92 #endif
93         rc = fdt_setprop(fdt, offset, "clock-frequency", &val, 4);
94         if (rc)
95                 printf("Unable to update node UART, err=%s\n", fdt_strerror(rc));
96
97         val = cpu_to_fdt32(bd->bi_baudrate);
98         rc = fdt_setprop(fdt, offset, "current-speed", &val, 4);
99         if (rc)
100                 printf("Unable to update node UART, err=%s\n", fdt_strerror(rc));
101 }
102
103 void ft_cpu_setup(void *blob, bd_t *bd)
104 {
105         char * cpu_path = "/cpus/" OF_CPU;
106         sys_info_t sys_info;
107         int offset;
108         int i;
109         int tmp[2];
110
111         get_sys_info (&sys_info);
112
113         do_fixup_u32(blob, cpu_path, "timebase-frequency", bd->bi_intfreq, 1);
114         do_fixup_u32(blob, cpu_path, "clock-frequency", bd->bi_intfreq, 1);
115         do_fixup_u32(blob, "/plb", "clock-frequency", sys_info.freqPLB, 1);
116         do_fixup_u32(blob, "/plb/opb", "clock-frequency", sys_info.freqOPB, 1);
117         do_fixup_u32(blob, "/plb/opb/ebc", "clock-frequency", sys_info.freqEBC, 1);
118
119         /* update, or add and update /memory node */
120         offset = fdt_find_node_by_path(blob, "/memory");
121         if (offset < 0) {
122                 offset = fdt_add_subnode(blob, 0, "memory");
123                 if (offset < 0)
124                         debug("failed to add /memory node: %s\n",
125                               fdt_strerror(offset));
126         }
127         if (offset >= 0) {
128                 fdt_setprop(blob, offset, "device_type",
129                             "memory", sizeof("memory"));
130                 tmp[0] = cpu_to_fdt32(bd->bi_memstart);
131                 tmp[1] = cpu_to_fdt32(bd->bi_memsize);
132                 fdt_setprop(blob, offset, "reg", tmp, sizeof(tmp));
133                 debug("Updating /memory node to %d:%d\n",
134                       bd->bi_memstart, bd->bi_memsize);
135         }
136
137         /*
138          * Setup all baudrates for the UARTs
139          */
140         offset = 0;
141         for (i = 0; i < 4; i++) {
142                 offset = fdt_find_node_by_type(blob, offset, "serial");
143                 if (offset < 0)
144                         break;
145
146                 do_fixup_uart(blob, offset, i, bd);
147         }
148
149         /*
150          * Setup all MAC addresses in fdt
151          */
152         offset = 0;
153         for (i = 0; i < 4; i++) {
154                 offset = fdt_find_node_by_type(blob, offset, "network");
155                 if (offset < 0)
156                         break;
157
158                 switch (i) {
159                 case 0:
160                         do_fixup_macaddr(blob, offset, bd->bi_enetaddr, 0);
161                         break;
162 #ifdef CONFIG_HAS_ETH1
163                 case 1:
164                         do_fixup_macaddr(blob, offset, bd->bi_enet1addr, 1);
165                         break;
166 #endif
167 #ifdef CONFIG_HAS_ETH2
168                 case 2:
169                         do_fixup_macaddr(blob, offset, bd->bi_enet2addr, 2);
170                         break;
171 #endif
172 #ifdef CONFIG_HAS_ETH3
173                 case 3:
174                         do_fixup_macaddr(blob, offset, bd->bi_enet3addr, 3);
175                         break;
176 #endif
177                 }
178         }
179 }
180 #endif /* CONFIG_OF_LIBFDT */