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