Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2008 |
| 3 | * Sergei Poselenov, Emcraft Systems, sposelenov@emcraft.com. |
| 4 | * |
| 5 | * Copyright 2004 Freescale Semiconductor. |
| 6 | * (C) Copyright 2002,2003, Motorola Inc. |
| 7 | * Xianghua Xiao, (X.Xiao@motorola.com) |
| 8 | * |
| 9 | * (C) Copyright 2002 Scott McNutt <smcnutt@artesyncp.com> |
| 10 | * |
| 11 | * See file CREDITS for list of people who contributed to this |
| 12 | * project. |
| 13 | * |
| 14 | * This program is free software; you can redistribute it and/or |
| 15 | * modify it under the terms of the GNU General Public License as |
| 16 | * published by the Free Software Foundation; either version 2 of |
| 17 | * the License, or (at your option) any later version. |
| 18 | * |
| 19 | * This program is distributed in the hope that it will be useful, |
| 20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 22 | * GNU General Public License for more details. |
| 23 | * |
| 24 | * You should have received a copy of the GNU General Public License |
| 25 | * along with this program; if not, write to the Free Software |
| 26 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 27 | * MA 02111-1307 USA |
| 28 | */ |
| 29 | |
| 30 | #include <common.h> |
| 31 | #include <pci.h> |
| 32 | #include <asm/processor.h> |
| 33 | #include <asm/immap_85xx.h> |
| 34 | #include <ioports.h> |
| 35 | #include <flash.h> |
Sergei Poselenov | e18575d | 2008-05-07 15:10:49 +0200 | [diff] [blame] | 36 | #include <libfdt.h> |
| 37 | #include <fdt_support.h> |
Andy Fleming | e1eb0e2 | 2008-06-10 18:49:34 -0500 | [diff] [blame] | 38 | #include <asm/io.h> |
u-boot@bugs.denx.de | fb661ea | 2008-09-11 15:40:01 +0200 | [diff] [blame] | 39 | #include <i2c.h> |
| 40 | #include <mb862xx.h> |
| 41 | #include <video_fb.h> |
Sergei Poselenov | 59abd15 | 2008-06-06 15:42:41 +0200 | [diff] [blame] | 42 | #include "upm_table.h" |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 43 | |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 44 | DECLARE_GLOBAL_DATA_PTR; |
| 45 | |
| 46 | extern flash_info_t flash_info[]; /* FLASH chips info */ |
u-boot@bugs.denx.de | fb661ea | 2008-09-11 15:40:01 +0200 | [diff] [blame] | 47 | extern GraphicDevice mb862xx; |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 48 | |
| 49 | void local_bus_init (void); |
| 50 | ulong flash_get_size (ulong base, int banknum); |
| 51 | |
| 52 | int checkboard (void) |
| 53 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 54 | volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 55 | |
Sergei Poselenov | 5e1882d | 2008-05-27 13:47:00 +0200 | [diff] [blame] | 56 | char *src; |
| 57 | int f; |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 58 | char *s = getenv("serial#"); |
| 59 | |
| 60 | puts("Board: Socrates"); |
| 61 | if (s != NULL) { |
| 62 | puts(", serial# "); |
| 63 | puts(s); |
| 64 | } |
| 65 | putc('\n'); |
| 66 | |
| 67 | #ifdef CONFIG_PCI |
Andy Fleming | e1eb0e2 | 2008-06-10 18:49:34 -0500 | [diff] [blame] | 68 | /* Check the PCI_clk sel bit */ |
| 69 | if (in_be32(&gur->porpllsr) & (1<<15)) { |
Sergei Poselenov | 5e1882d | 2008-05-27 13:47:00 +0200 | [diff] [blame] | 70 | src = "SYSCLK"; |
| 71 | f = CONFIG_SYS_CLK_FREQ; |
| 72 | } else { |
| 73 | src = "PCI_CLK"; |
| 74 | f = CONFIG_PCI_CLK_FREQ; |
| 75 | } |
| 76 | printf ("PCI1: 32 bit, %d MHz (%s)\n", f/1000000, src); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 77 | #else |
| 78 | printf ("PCI1: disabled\n"); |
| 79 | #endif |
| 80 | |
| 81 | /* |
| 82 | * Initialize local bus. |
| 83 | */ |
| 84 | local_bus_init (); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 85 | return 0; |
| 86 | } |
| 87 | |
| 88 | int misc_init_r (void) |
| 89 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 90 | volatile ccsr_lbc_t *memctl = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 91 | |
| 92 | /* |
| 93 | * Adjust flash start and offset to detected values |
| 94 | */ |
| 95 | gd->bd->bi_flashstart = 0 - gd->bd->bi_flashsize; |
| 96 | gd->bd->bi_flashoffset = 0; |
| 97 | |
| 98 | /* |
| 99 | * Check if boot FLASH isn't max size |
| 100 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 101 | if (gd->bd->bi_flashsize < (0 - CONFIG_SYS_FLASH0)) { |
| 102 | memctl->or0 = gd->bd->bi_flashstart | (CONFIG_SYS_OR0_PRELIM & 0x00007fff); |
| 103 | memctl->br0 = gd->bd->bi_flashstart | (CONFIG_SYS_BR0_PRELIM & 0x00007fff); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 104 | |
| 105 | /* |
| 106 | * Re-check to get correct base address |
| 107 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 108 | flash_get_size(gd->bd->bi_flashstart, CONFIG_SYS_MAX_FLASH_BANKS - 1); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | /* |
| 112 | * Check if only one FLASH bank is available |
| 113 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 114 | if (gd->bd->bi_flashsize != CONFIG_SYS_MAX_FLASH_BANKS * (0 - CONFIG_SYS_FLASH0)) { |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 115 | memctl->or1 = 0; |
| 116 | memctl->br1 = 0; |
| 117 | |
| 118 | /* |
| 119 | * Re-do flash protection upon new addresses |
| 120 | */ |
| 121 | flash_protect (FLAG_PROTECT_CLEAR, |
| 122 | gd->bd->bi_flashstart, 0xffffffff, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 123 | &flash_info[CONFIG_SYS_MAX_FLASH_BANKS - 1]); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 124 | |
| 125 | /* Monitor protection ON by default */ |
| 126 | flash_protect (FLAG_PROTECT_SET, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 127 | CONFIG_SYS_MONITOR_BASE, CONFIG_SYS_MONITOR_BASE + monitor_flash_len - 1, |
| 128 | &flash_info[CONFIG_SYS_MAX_FLASH_BANKS - 1]); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 129 | |
| 130 | /* Environment protection ON by default */ |
| 131 | flash_protect (FLAG_PROTECT_SET, |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 132 | CONFIG_ENV_ADDR, |
| 133 | CONFIG_ENV_ADDR + CONFIG_ENV_SECT_SIZE - 1, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 134 | &flash_info[CONFIG_SYS_MAX_FLASH_BANKS - 1]); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 135 | |
| 136 | /* Redundant environment protection ON by default */ |
| 137 | flash_protect (FLAG_PROTECT_SET, |
Jean-Christophe PLAGNIOL-VILLARD | 0e8d158 | 2008-09-10 22:48:06 +0200 | [diff] [blame] | 138 | CONFIG_ENV_ADDR_REDUND, |
Wolfgang Denk | dfcd7f2 | 2009-05-15 00:16:03 +0200 | [diff] [blame] | 139 | CONFIG_ENV_ADDR_REDUND + CONFIG_ENV_SECT_SIZE - 1, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 140 | &flash_info[CONFIG_SYS_MAX_FLASH_BANKS - 1]); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | return 0; |
| 144 | } |
| 145 | |
| 146 | /* |
| 147 | * Initialize Local Bus |
| 148 | */ |
| 149 | void local_bus_init (void) |
| 150 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 151 | volatile ccsr_lbc_t *lbc = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR); |
| 152 | volatile ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR); |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 153 | sys_info_t sysinfo; |
| 154 | uint clkdiv; |
| 155 | uint lbc_mhz; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 156 | uint lcrr = CONFIG_SYS_LBC_LCRR; |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 157 | |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 158 | get_sys_info (&sysinfo); |
Trent Piepho | a5d212a | 2008-12-03 15:16:34 -0800 | [diff] [blame] | 159 | clkdiv = lbc->lcrr & LCRR_CLKDIV; |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 160 | lbc_mhz = sysinfo.freqSystemBus / 1000000 / clkdiv; |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 161 | |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 162 | /* Disable PLL bypass for Local Bus Clock >= 66 MHz */ |
| 163 | if (lbc_mhz >= 66) |
| 164 | lcrr &= ~LCRR_DBYP; /* DLL Enabled */ |
| 165 | else |
| 166 | lcrr |= LCRR_DBYP; /* DLL Bypass */ |
| 167 | |
| 168 | out_be32 (&lbc->lcrr, lcrr); |
| 169 | asm ("sync;isync;msync"); |
| 170 | |
| 171 | out_be32 (&lbc->ltesr, 0xffffffff); /* Clear LBC error interrupts */ |
| 172 | out_be32 (&lbc->lteir, 0xffffffff); /* Enable LBC error interrupts */ |
| 173 | out_be32 (&ecm->eedr, 0xffffffff); /* Clear ecm errors */ |
| 174 | out_be32 (&ecm->eeer, 0xffffffff); /* Enable ecm errors */ |
| 175 | |
| 176 | /* Init UPMA for FPGA access */ |
| 177 | out_be32 (&lbc->mamr, 0x44440); /* Use a customer-supplied value */ |
| 178 | upmconfig (UPMA, (uint *)UPMTableA, sizeof(UPMTableA)/sizeof(int)); |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 179 | |
u-boot@bugs.denx.de | fb661ea | 2008-09-11 15:40:01 +0200 | [diff] [blame] | 180 | /* Init UPMB for Lime controller access */ |
| 181 | out_be32 (&lbc->mbmr, 0x444440); /* Use a customer-supplied value */ |
| 182 | upmconfig (UPMB, (uint *)UPMTableB, sizeof(UPMTableB)/sizeof(int)); |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | #if defined(CONFIG_PCI) |
| 186 | /* |
| 187 | * Initialize PCI Devices, report devices found. |
| 188 | */ |
| 189 | |
| 190 | #ifndef CONFIG_PCI_PNP |
| 191 | static struct pci_config_table pci_mpc85xxads_config_table[] = { |
| 192 | {PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, |
| 193 | PCI_IDSEL_NUMBER, PCI_ANY_ID, |
| 194 | pci_cfgfunc_config_device, {PCI_ENET0_IOADDR, |
| 195 | PCI_ENET0_MEMADDR, |
| 196 | PCI_COMMAND_MEMORY | |
| 197 | PCI_COMMAND_MASTER}}, |
| 198 | {} |
| 199 | }; |
| 200 | #endif |
| 201 | |
| 202 | |
| 203 | static struct pci_controller hose = { |
| 204 | #ifndef CONFIG_PCI_PNP |
| 205 | config_table:pci_mpc85xxads_config_table, |
| 206 | #endif |
| 207 | }; |
| 208 | |
| 209 | #endif /* CONFIG_PCI */ |
| 210 | |
| 211 | |
| 212 | void pci_init_board (void) |
| 213 | { |
| 214 | #ifdef CONFIG_PCI |
| 215 | pci_mpc85xx_init (&hose); |
| 216 | #endif /* CONFIG_PCI */ |
| 217 | } |
| 218 | |
| 219 | #ifdef CONFIG_BOARD_EARLY_INIT_R |
| 220 | int board_early_init_r (void) |
| 221 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 222 | volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 223 | |
| 224 | /* set and reset the GPIO pin 2 which will reset the W83782G chip */ |
| 225 | out_8((unsigned char*)&gur->gpoutdr, 0x3F ); |
| 226 | out_be32((unsigned int*)&gur->gpiocr, 0x200 ); /* enable GPOut */ |
| 227 | udelay(200); |
| 228 | out_8( (unsigned char*)&gur->gpoutdr, 0x1F ); |
| 229 | |
Sergei Poselenov | 5d108ac | 2008-04-30 11:42:50 +0200 | [diff] [blame] | 230 | return (0); |
| 231 | } |
| 232 | #endif /* CONFIG_BOARD_EARLY_INIT_R */ |
Sergei Poselenov | e18575d | 2008-05-07 15:10:49 +0200 | [diff] [blame] | 233 | |
| 234 | #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) |
| 235 | void |
| 236 | ft_board_setup(void *blob, bd_t *bd) |
| 237 | { |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 238 | u32 val[12]; |
| 239 | int rc, i = 0; |
Sergei Poselenov | e18575d | 2008-05-07 15:10:49 +0200 | [diff] [blame] | 240 | |
| 241 | ft_cpu_setup(blob, bd); |
| 242 | |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 243 | /* Fixup NOR FLASH mapping */ |
| 244 | val[i++] = 0; /* chip select number */ |
| 245 | val[i++] = 0; /* always 0 */ |
| 246 | val[i++] = gd->bd->bi_flashstart; |
| 247 | val[i++] = gd->bd->bi_flashsize; |
| 248 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 249 | if (mb862xx.frameAdrs == CONFIG_SYS_LIME_BASE) { |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 250 | /* Fixup LIME mapping */ |
| 251 | val[i++] = 2; /* chip select number */ |
| 252 | val[i++] = 0; /* always 0 */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 253 | val[i++] = CONFIG_SYS_LIME_BASE; |
| 254 | val[i++] = CONFIG_SYS_LIME_SIZE; |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 255 | } |
| 256 | |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 257 | /* Fixup FPGA mapping */ |
| 258 | val[i++] = 3; /* chip select number */ |
| 259 | val[i++] = 0; /* always 0 */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 260 | val[i++] = CONFIG_SYS_FPGA_BASE; |
| 261 | val[i++] = CONFIG_SYS_FPGA_SIZE; |
Sergei Poselenov | e18575d | 2008-05-07 15:10:49 +0200 | [diff] [blame] | 262 | |
| 263 | rc = fdt_find_and_setprop(blob, "/localbus", "ranges", |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 264 | val, i * sizeof(u32), 1); |
Sergei Poselenov | e18575d | 2008-05-07 15:10:49 +0200 | [diff] [blame] | 265 | if (rc) |
Detlev Zundel | 3e79b58 | 2008-08-15 15:42:12 +0200 | [diff] [blame] | 266 | printf("Unable to update localbus ranges, err=%s\n", |
Sergei Poselenov | e18575d | 2008-05-07 15:10:49 +0200 | [diff] [blame] | 267 | fdt_strerror(rc)); |
| 268 | } |
| 269 | #endif /* defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) */ |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 270 | |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 271 | #define DEFAULT_BRIGHTNESS 25 |
| 272 | #define BACKLIGHT_ENABLE (1 << 31) |
| 273 | |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 274 | static const gdc_regs init_regs [] = |
| 275 | { |
| 276 | {0x0100, 0x00010f00}, |
| 277 | {0x0020, 0x801901df}, |
| 278 | {0x0024, 0x00000000}, |
| 279 | {0x0028, 0x00000000}, |
| 280 | {0x002c, 0x00000000}, |
| 281 | {0x0110, 0x00000000}, |
| 282 | {0x0114, 0x00000000}, |
| 283 | {0x0118, 0x01df0320}, |
| 284 | {0x0004, 0x041f0000}, |
| 285 | {0x0008, 0x031f031f}, |
| 286 | {0x000c, 0x017f0349}, |
| 287 | {0x0010, 0x020c0000}, |
| 288 | {0x0014, 0x01df01e9}, |
| 289 | {0x0018, 0x00000000}, |
| 290 | {0x001c, 0x01e00320}, |
| 291 | {0x0100, 0x80010f00}, |
| 292 | {0x0, 0x0} |
| 293 | }; |
| 294 | |
| 295 | const gdc_regs *board_get_regs (void) |
| 296 | { |
| 297 | return init_regs; |
| 298 | } |
| 299 | |
u-boot@bugs.denx.de | fb661ea | 2008-09-11 15:40:01 +0200 | [diff] [blame] | 300 | int lime_probe(void) |
| 301 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 302 | volatile ccsr_lbc_t *memctl = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR); |
u-boot@bugs.denx.de | fb661ea | 2008-09-11 15:40:01 +0200 | [diff] [blame] | 303 | uint cfg_br2; |
| 304 | uint cfg_or2; |
Wolfgang Grandegger | c28d3bb | 2009-10-23 12:03:13 +0200 | [diff] [blame] | 305 | int type; |
u-boot@bugs.denx.de | fb661ea | 2008-09-11 15:40:01 +0200 | [diff] [blame] | 306 | |
| 307 | cfg_br2 = memctl->br2; |
| 308 | cfg_or2 = memctl->or2; |
| 309 | |
| 310 | /* Configure GPCM for CS2 */ |
| 311 | memctl->br2 = 0; |
| 312 | memctl->or2 = 0xfc000410; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 313 | memctl->br2 = (CONFIG_SYS_LIME_BASE) | 0x00001901; |
u-boot@bugs.denx.de | fb661ea | 2008-09-11 15:40:01 +0200 | [diff] [blame] | 314 | |
Wolfgang Grandegger | c28d3bb | 2009-10-23 12:03:13 +0200 | [diff] [blame] | 315 | /* Get controller type */ |
| 316 | type = mb862xx_probe(CONFIG_SYS_LIME_BASE); |
u-boot@bugs.denx.de | fb661ea | 2008-09-11 15:40:01 +0200 | [diff] [blame] | 317 | |
| 318 | /* Restore previous CS2 configuration */ |
| 319 | memctl->br2 = 0; |
| 320 | memctl->or2 = cfg_or2; |
| 321 | memctl->br2 = cfg_br2; |
Wolfgang Grandegger | c28d3bb | 2009-10-23 12:03:13 +0200 | [diff] [blame] | 322 | |
| 323 | return (type == MB862XX_TYPE_LIME) ? 1 : 0; |
u-boot@bugs.denx.de | fb661ea | 2008-09-11 15:40:01 +0200 | [diff] [blame] | 324 | } |
| 325 | |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 326 | /* Returns Lime base address */ |
| 327 | unsigned int board_video_init (void) |
| 328 | { |
u-boot@bugs.denx.de | fb661ea | 2008-09-11 15:40:01 +0200 | [diff] [blame] | 329 | if (!lime_probe()) |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 330 | return 0; |
| 331 | |
Wolfgang Grandegger | c28d3bb | 2009-10-23 12:03:13 +0200 | [diff] [blame] | 332 | mb862xx.winSizeX = 800; |
| 333 | mb862xx.winSizeY = 480; |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 334 | mb862xx.gdfIndex = GDF_15BIT_555RGB; |
| 335 | mb862xx.gdfBytesPP = 2; |
| 336 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 337 | return CONFIG_SYS_LIME_BASE; |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | #define W83782D_REG_CFG 0x40 |
| 341 | #define W83782D_REG_BANK_SEL 0x4e |
| 342 | #define W83782D_REG_ADCCLK 0x4b |
| 343 | #define W83782D_REG_BEEP_CTRL 0x4d |
| 344 | #define W83782D_REG_BEEP_CTRL2 0x57 |
| 345 | #define W83782D_REG_PWMOUT1 0x5b |
| 346 | #define W83782D_REG_VBAT 0x5d |
| 347 | |
| 348 | static int w83782d_hwmon_init(void) |
| 349 | { |
| 350 | u8 buf; |
| 351 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 352 | if (i2c_read(CONFIG_SYS_I2C_W83782G_ADDR, W83782D_REG_CFG, 1, &buf, 1)) |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 353 | return -1; |
| 354 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 355 | i2c_reg_write(CONFIG_SYS_I2C_W83782G_ADDR, W83782D_REG_CFG, 0x80); |
| 356 | i2c_reg_write(CONFIG_SYS_I2C_W83782G_ADDR, W83782D_REG_BANK_SEL, 0); |
| 357 | i2c_reg_write(CONFIG_SYS_I2C_W83782G_ADDR, W83782D_REG_ADCCLK, 0x40); |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 358 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 359 | buf = i2c_reg_read(CONFIG_SYS_I2C_W83782G_ADDR, W83782D_REG_BEEP_CTRL); |
| 360 | i2c_reg_write(CONFIG_SYS_I2C_W83782G_ADDR, W83782D_REG_BEEP_CTRL, |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 361 | buf | 0x80); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 362 | i2c_reg_write(CONFIG_SYS_I2C_W83782G_ADDR, W83782D_REG_BEEP_CTRL2, 0); |
| 363 | i2c_reg_write(CONFIG_SYS_I2C_W83782G_ADDR, W83782D_REG_PWMOUT1, 0x47); |
| 364 | i2c_reg_write(CONFIG_SYS_I2C_W83782G_ADDR, W83782D_REG_VBAT, 0x01); |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 365 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 366 | buf = i2c_reg_read(CONFIG_SYS_I2C_W83782G_ADDR, W83782D_REG_CFG); |
| 367 | i2c_reg_write(CONFIG_SYS_I2C_W83782G_ADDR, W83782D_REG_CFG, |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 368 | (buf & 0xf4) | 0x01); |
| 369 | return 0; |
| 370 | } |
| 371 | |
| 372 | static void board_backlight_brightness(int br) |
| 373 | { |
| 374 | u32 reg; |
| 375 | u8 buf; |
| 376 | u8 old_buf; |
| 377 | |
| 378 | /* Select bank 0 */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 379 | if (i2c_read(CONFIG_SYS_I2C_W83782G_ADDR, 0x4e, 1, &old_buf, 1)) |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 380 | goto err; |
| 381 | else |
| 382 | buf = old_buf & 0xf8; |
| 383 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 384 | if (i2c_write(CONFIG_SYS_I2C_W83782G_ADDR, 0x4e, 1, &buf, 1)) |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 385 | goto err; |
| 386 | |
| 387 | if (br > 0) { |
| 388 | /* PWMOUT1 duty cycle ctrl */ |
| 389 | buf = 255 / (100 / br); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 390 | if (i2c_write(CONFIG_SYS_I2C_W83782G_ADDR, 0x5b, 1, &buf, 1)) |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 391 | goto err; |
| 392 | |
| 393 | /* LEDs on */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 394 | reg = in_be32((void *)(CONFIG_SYS_FPGA_BASE + 0x0c)); |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 395 | if (!(reg & BACKLIGHT_ENABLE)); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 396 | out_be32((void *)(CONFIG_SYS_FPGA_BASE + 0x0c), |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 397 | reg | BACKLIGHT_ENABLE); |
| 398 | } else { |
| 399 | buf = 0; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 400 | if (i2c_write(CONFIG_SYS_I2C_W83782G_ADDR, 0x5b, 1, &buf, 1)) |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 401 | goto err; |
| 402 | |
| 403 | /* LEDs off */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 404 | reg = in_be32((void *)(CONFIG_SYS_FPGA_BASE + 0x0c)); |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 405 | reg &= ~BACKLIGHT_ENABLE; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 406 | out_be32((void *)(CONFIG_SYS_FPGA_BASE + 0x0c), reg); |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 407 | } |
| 408 | /* Restore previous bank setting */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 409 | if (i2c_write(CONFIG_SYS_I2C_W83782G_ADDR, 0x4e, 1, &old_buf, 1)) |
Anatolij Gustschin | e64987a | 2008-08-15 15:42:13 +0200 | [diff] [blame] | 410 | goto err; |
| 411 | |
| 412 | return; |
| 413 | err: |
| 414 | printf("W83782G I2C access failed\n"); |
| 415 | } |
| 416 | |
| 417 | void board_backlight_switch (int flag) |
| 418 | { |
| 419 | char * param; |
| 420 | int rc; |
| 421 | |
| 422 | if (w83782d_hwmon_init()) |
| 423 | printf ("hwmon IC init failed\n"); |
| 424 | |
| 425 | if (flag) { |
| 426 | param = getenv("brightness"); |
| 427 | rc = param ? simple_strtol(param, NULL, 10) : -1; |
| 428 | if (rc < 0) |
| 429 | rc = DEFAULT_BRIGHTNESS; |
| 430 | } else { |
| 431 | rc = 0; |
| 432 | } |
| 433 | board_backlight_brightness(rc); |
| 434 | } |
| 435 | |
| 436 | #if defined(CONFIG_CONSOLE_EXTRA_INFO) |
| 437 | /* |
| 438 | * Return text to be printed besides the logo. |
| 439 | */ |
| 440 | void video_get_info_str (int line_number, char *info) |
| 441 | { |
| 442 | if (line_number == 1) { |
| 443 | strcpy (info, " Board: Socrates"); |
| 444 | } else { |
| 445 | info [0] = '\0'; |
| 446 | } |
| 447 | } |
| 448 | #endif |