Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 1 | /* |
| 2 | * |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 3 | * Common functions for OMAP4/5 based boards |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 4 | * |
| 5 | * (C) Copyright 2010 |
| 6 | * Texas Instruments, <www.ti.com> |
| 7 | * |
| 8 | * Author : |
| 9 | * Aneesh V <aneesh@ti.com> |
| 10 | * Steve Sakoman <steve@sakoman.com> |
| 11 | * |
| 12 | * See file CREDITS for list of people who contributed to this |
| 13 | * project. |
| 14 | * |
| 15 | * This program is free software; you can redistribute it and/or |
| 16 | * modify it under the terms of the GNU General Public License as |
| 17 | * published by the Free Software Foundation; either version 2 of |
| 18 | * the License, or (at your option) any later version. |
| 19 | * |
| 20 | * This program is distributed in the hope that it will be useful, |
| 21 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 22 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 23 | * GNU General Public License for more details. |
| 24 | * |
| 25 | * You should have received a copy of the GNU General Public License |
| 26 | * along with this program; if not, write to the Free Software |
| 27 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 28 | * MA 02111-1307 USA |
| 29 | */ |
| 30 | #include <common.h> |
Tom Rini | 47f7bca | 2012-08-13 12:03:19 -0700 | [diff] [blame] | 31 | #include <spl.h> |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 32 | #include <asm/arch/sys_proto.h> |
Aneesh V | 7ca3f9c | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 33 | #include <asm/sizes.h> |
Sricharan | bb772a5 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 34 | #include <asm/emif.h> |
SRICHARAN R | 01b753f | 2013-02-04 04:22:00 +0000 | [diff] [blame] | 35 | #include <asm/omap_common.h> |
Lokesh Vutla | d4d986e | 2013-02-12 01:33:45 +0000 | [diff] [blame] | 36 | #include <linux/compiler.h> |
R Sricharan | de63ac2 | 2013-03-04 20:04:45 +0000 | [diff] [blame] | 37 | #include <asm/cache.h> |
| 38 | #include <asm/system.h> |
| 39 | |
| 40 | #define ARMV7_DCACHE_WRITEBACK 0xe |
| 41 | #define ARMV7_DOMAIN_CLIENT 1 |
| 42 | #define ARMV7_DOMAIN_MASK (0x3 << 0) |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 43 | |
Nishanth Menon | 93e3568 | 2010-11-19 11:19:40 -0500 | [diff] [blame] | 44 | DECLARE_GLOBAL_DATA_PTR; |
| 45 | |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 46 | void do_set_mux(u32 base, struct pad_conf_entry const *array, int size) |
| 47 | { |
| 48 | int i; |
| 49 | struct pad_conf_entry *pad = (struct pad_conf_entry *) array; |
| 50 | |
| 51 | for (i = 0; i < size; i++, pad++) |
| 52 | writew(pad->val, base + pad->offset); |
| 53 | } |
| 54 | |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 55 | static void set_mux_conf_regs(void) |
| 56 | { |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 57 | switch (omap_hw_init_context()) { |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 58 | case OMAP_INIT_CONTEXT_SPL: |
| 59 | set_muxconf_regs_essential(); |
| 60 | break; |
| 61 | case OMAP_INIT_CONTEXT_UBOOT_AFTER_SPL: |
Sricharan | 78f455c | 2011-11-15 09:50:03 -0500 | [diff] [blame] | 62 | #ifdef CONFIG_SYS_ENABLE_PADS_ALL |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 63 | set_muxconf_regs_non_essential(); |
Sricharan | 78f455c | 2011-11-15 09:50:03 -0500 | [diff] [blame] | 64 | #endif |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 65 | break; |
| 66 | case OMAP_INIT_CONTEXT_UBOOT_FROM_NOR: |
| 67 | case OMAP_INIT_CONTEXT_UBOOT_AFTER_CH: |
| 68 | set_muxconf_regs_essential(); |
Sricharan | 78f455c | 2011-11-15 09:50:03 -0500 | [diff] [blame] | 69 | #ifdef CONFIG_SYS_ENABLE_PADS_ALL |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 70 | set_muxconf_regs_non_essential(); |
Sricharan | 78f455c | 2011-11-15 09:50:03 -0500 | [diff] [blame] | 71 | #endif |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 72 | break; |
| 73 | } |
| 74 | } |
| 75 | |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 76 | u32 cortex_rev(void) |
Aneesh V | ad577c8 | 2011-07-21 09:10:04 -0400 | [diff] [blame] | 77 | { |
| 78 | |
| 79 | unsigned int rev; |
| 80 | |
| 81 | /* Read Main ID Register (MIDR) */ |
| 82 | asm ("mrc p15, 0, %0, c0, c0, 0" : "=r" (rev)); |
| 83 | |
| 84 | return rev; |
| 85 | } |
| 86 | |
Andreas Müller | 761ca31 | 2012-01-04 15:26:24 +0000 | [diff] [blame] | 87 | void omap_rev_string(void) |
Aneesh V | ad577c8 | 2011-07-21 09:10:04 -0400 | [diff] [blame] | 88 | { |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 89 | u32 omap_rev = omap_revision(); |
Lokesh Vutla | de62688 | 2013-02-12 21:29:03 +0000 | [diff] [blame] | 90 | u32 soc_variant = (omap_rev & 0xF0000000) >> 28; |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 91 | u32 omap_variant = (omap_rev & 0xFFFF0000) >> 16; |
| 92 | u32 major_rev = (omap_rev & 0x00000F00) >> 8; |
| 93 | u32 minor_rev = (omap_rev & 0x000000F0) >> 4; |
Aneesh V | ad577c8 | 2011-07-21 09:10:04 -0400 | [diff] [blame] | 94 | |
Lokesh Vutla | de62688 | 2013-02-12 21:29:03 +0000 | [diff] [blame] | 95 | if (soc_variant) |
| 96 | printf("OMAP"); |
| 97 | else |
| 98 | printf("DRA"); |
| 99 | printf("%x ES%x.%x\n", omap_variant, major_rev, |
| 100 | minor_rev); |
Aneesh V | ad577c8 | 2011-07-21 09:10:04 -0400 | [diff] [blame] | 101 | } |
| 102 | |
Sricharan | 78f455c | 2011-11-15 09:50:03 -0500 | [diff] [blame] | 103 | #ifdef CONFIG_SPL_BUILD |
Tom Rini | 861a86f | 2012-08-13 11:37:56 -0700 | [diff] [blame] | 104 | void spl_display_print(void) |
| 105 | { |
| 106 | omap_rev_string(); |
| 107 | } |
Sricharan | 78f455c | 2011-11-15 09:50:03 -0500 | [diff] [blame] | 108 | #endif |
| 109 | |
Lokesh Vutla | d4d986e | 2013-02-12 01:33:45 +0000 | [diff] [blame] | 110 | void __weak srcomp_enable(void) |
| 111 | { |
| 112 | } |
| 113 | |
SRICHARAN R | fda0681 | 2013-04-24 00:41:23 +0000 | [diff] [blame] | 114 | static void save_omap_boot_params(void) |
| 115 | { |
| 116 | u32 rom_params = *((u32 *)OMAP_SRAM_SCRATCH_BOOT_PARAMS); |
| 117 | u8 boot_device; |
| 118 | u32 dev_desc, dev_data; |
| 119 | |
| 120 | if ((rom_params < NON_SECURE_SRAM_START) || |
| 121 | (rom_params > NON_SECURE_SRAM_END)) |
| 122 | return; |
| 123 | |
| 124 | /* |
| 125 | * rom_params can be type casted to omap_boot_parameters and |
| 126 | * used. But it not correct to assume that romcode structure |
| 127 | * encoding would be same as u-boot. So use the defined offsets. |
| 128 | */ |
| 129 | gd->arch.omap_boot_params.omap_bootdevice = boot_device = |
| 130 | *((u8 *)(rom_params + BOOT_DEVICE_OFFSET)); |
| 131 | |
| 132 | gd->arch.omap_boot_params.ch_flags = |
| 133 | *((u8 *)(rom_params + CH_FLAGS_OFFSET)); |
| 134 | |
| 135 | if ((boot_device >= MMC_BOOT_DEVICES_START) && |
| 136 | (boot_device <= MMC_BOOT_DEVICES_END)) { |
| 137 | if ((omap_hw_init_context() == |
| 138 | OMAP_INIT_CONTEXT_UBOOT_AFTER_SPL)) { |
| 139 | gd->arch.omap_boot_params.omap_bootmode = |
| 140 | *((u8 *)(rom_params + BOOT_MODE_OFFSET)); |
| 141 | } else { |
| 142 | dev_desc = *((u32 *)(rom_params + DEV_DESC_PTR_OFFSET)); |
| 143 | dev_data = *((u32 *)(dev_desc + DEV_DATA_PTR_OFFSET)); |
| 144 | gd->arch.omap_boot_params.omap_bootmode = |
| 145 | *((u32 *)(dev_data + BOOT_MODE_OFFSET)); |
| 146 | } |
| 147 | } |
| 148 | } |
| 149 | |
SRICHARAN R | 47c6ea0 | 2013-04-24 00:41:25 +0000 | [diff] [blame] | 150 | #ifdef CONFIG_ARCH_CPU_INIT |
| 151 | /* |
| 152 | * SOC specific cpu init |
| 153 | */ |
| 154 | int arch_cpu_init(void) |
| 155 | { |
| 156 | save_omap_boot_params(); |
| 157 | return 0; |
| 158 | } |
| 159 | #endif /* CONFIG_ARCH_CPU_INIT */ |
| 160 | |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 161 | /* |
| 162 | * Routine: s_init |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 163 | * Description: Does early system init of watchdog, muxing, andclocks |
| 164 | * Watchdog disable is done always. For the rest what gets done |
| 165 | * depends on the boot mode in which this function is executed |
| 166 | * 1. s_init of SPL running from SRAM |
| 167 | * 2. s_init of U-Boot running from FLASH |
| 168 | * 3. s_init of U-Boot loaded to SDRAM by SPL |
| 169 | * 4. s_init of U-Boot loaded to SDRAM by ROM code using the |
| 170 | * Configuration Header feature |
| 171 | * Please have a look at the respective functions to see what gets |
| 172 | * done in each of these cases |
| 173 | * This function is called with SRAM stack. |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 174 | */ |
| 175 | void s_init(void) |
| 176 | { |
SRICHARAN R | fda0681 | 2013-04-24 00:41:23 +0000 | [diff] [blame] | 177 | /* |
| 178 | * Save the boot parameters passed from romcode. |
| 179 | * We cannot delay the saving further than this, |
| 180 | * to prevent overwrites. |
| 181 | */ |
| 182 | #ifdef CONFIG_SPL_BUILD |
| 183 | save_omap_boot_params(); |
| 184 | #endif |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 185 | init_omap_revision(); |
SRICHARAN R | 01b753f | 2013-02-04 04:22:00 +0000 | [diff] [blame] | 186 | hw_data_init(); |
| 187 | |
Lokesh Vutla | 38f25b1 | 2012-05-29 19:26:43 +0000 | [diff] [blame] | 188 | #ifdef CONFIG_SPL_BUILD |
| 189 | if (warm_reset() && (omap_revision() <= OMAP5430_ES1_0)) |
| 190 | force_emif_self_refresh(); |
| 191 | #endif |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 192 | watchdog_init(); |
Aneesh V | 469ec1e | 2011-07-21 09:10:01 -0400 | [diff] [blame] | 193 | set_mux_conf_regs(); |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 194 | #ifdef CONFIG_SPL_BUILD |
Lokesh Vutla | d4d986e | 2013-02-12 01:33:45 +0000 | [diff] [blame] | 195 | srcomp_enable(); |
Simon Schwarz | 63ffcfc | 2011-09-14 15:14:46 -0400 | [diff] [blame] | 196 | setup_clocks_for_console(); |
Tom Rini | 6507f13 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 197 | |
| 198 | gd = &gdata; |
| 199 | |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 200 | preloader_console_init(); |
Aneesh V | 4ecfcfa | 2011-09-08 11:05:56 -0400 | [diff] [blame] | 201 | do_io_settings(); |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 202 | #endif |
Aneesh V | 3776801 | 2011-07-21 09:10:07 -0400 | [diff] [blame] | 203 | prcm_init(); |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 204 | #ifdef CONFIG_SPL_BUILD |
Dechesne, Nicolas | f590217 | 2012-01-31 07:35:40 +0000 | [diff] [blame] | 205 | timer_init(); |
| 206 | |
Aneesh V | bcae721 | 2011-07-21 09:10:21 -0400 | [diff] [blame] | 207 | /* For regular u-boot sdram_init() is called from dram_init() */ |
| 208 | sdram_init(); |
| 209 | #endif |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | /* |
| 213 | * Routine: wait_for_command_complete |
| 214 | * Description: Wait for posting to finish on watchdog |
| 215 | */ |
| 216 | void wait_for_command_complete(struct watchdog *wd_base) |
| 217 | { |
| 218 | int pending = 1; |
| 219 | do { |
| 220 | pending = readl(&wd_base->wwps); |
| 221 | } while (pending); |
| 222 | } |
| 223 | |
| 224 | /* |
| 225 | * Routine: watchdog_init |
| 226 | * Description: Shut down watch dogs |
| 227 | */ |
| 228 | void watchdog_init(void) |
| 229 | { |
| 230 | struct watchdog *wd2_base = (struct watchdog *)WDT2_BASE; |
| 231 | |
| 232 | writel(WD_UNLOCK1, &wd2_base->wspr); |
| 233 | wait_for_command_complete(wd2_base); |
| 234 | writel(WD_UNLOCK2, &wd2_base->wspr); |
| 235 | } |
| 236 | |
Aneesh V | 7ca3f9c | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 237 | |
| 238 | /* |
| 239 | * This function finds the SDRAM size available in the system |
| 240 | * based on DMM section configurations |
| 241 | * This is needed because the size of memory installed may be |
| 242 | * different on different versions of the board |
| 243 | */ |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 244 | u32 omap_sdram_size(void) |
Aneesh V | 7ca3f9c | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 245 | { |
SRICHARAN R | e06e914 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 246 | u32 section, i, valid; |
| 247 | u64 sdram_start = 0, sdram_end = 0, addr, |
| 248 | size, total_size = 0, trap_size = 0; |
Sricharan | bb772a5 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 249 | |
Aneesh V | 7ca3f9c | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 250 | for (i = 0; i < 4; i++) { |
Sricharan | bb772a5 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 251 | section = __raw_readl(DMM_BASE + i*4); |
SRICHARAN R | e06e914 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 252 | valid = (section & EMIF_SDRC_ADDRSPC_MASK) >> |
| 253 | (EMIF_SDRC_ADDRSPC_SHIFT); |
Sricharan | bb772a5 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 254 | addr = section & EMIF_SYS_ADDR_MASK; |
SRICHARAN R | e06e914 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 255 | |
Aneesh V | 7ca3f9c | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 256 | /* See if the address is valid */ |
Sricharan | bb772a5 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 257 | if ((addr >= DRAM_ADDR_SPACE_START) && |
| 258 | (addr < DRAM_ADDR_SPACE_END)) { |
| 259 | size = ((section & EMIF_SYS_SIZE_MASK) >> |
| 260 | EMIF_SYS_SIZE_SHIFT); |
| 261 | size = 1 << size; |
| 262 | size *= SZ_16M; |
SRICHARAN R | e06e914 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 263 | |
| 264 | if (valid != DMM_SDRC_ADDR_SPC_INVALID) { |
| 265 | if (!sdram_start || (addr < sdram_start)) |
| 266 | sdram_start = addr; |
| 267 | if (!sdram_end || ((addr + size) > sdram_end)) |
| 268 | sdram_end = addr + size; |
| 269 | } else { |
| 270 | trap_size = size; |
| 271 | } |
| 272 | |
Aneesh V | 7ca3f9c | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 273 | } |
SRICHARAN R | e06e914 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 274 | |
Aneesh V | 7ca3f9c | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 275 | } |
SRICHARAN R | e06e914 | 2012-05-17 00:12:06 +0000 | [diff] [blame] | 276 | total_size = (sdram_end - sdram_start) - (trap_size); |
Sricharan | bb772a5 | 2011-11-15 09:50:00 -0500 | [diff] [blame] | 277 | |
Aneesh V | 7ca3f9c | 2010-09-12 10:32:55 +0530 | [diff] [blame] | 278 | return total_size; |
| 279 | } |
| 280 | |
| 281 | |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 282 | /* |
| 283 | * Routine: dram_init |
| 284 | * Description: sets uboots idea of sdram size |
| 285 | */ |
| 286 | int dram_init(void) |
| 287 | { |
Aneesh V | 2ae610f | 2011-07-21 09:10:09 -0400 | [diff] [blame] | 288 | sdram_init(); |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 289 | gd->ram_size = omap_sdram_size(); |
Steve Sakoman | d34efc7 | 2010-06-08 13:07:46 -0700 | [diff] [blame] | 290 | return 0; |
| 291 | } |
| 292 | |
| 293 | /* |
| 294 | * Print board information |
| 295 | */ |
| 296 | int checkboard(void) |
| 297 | { |
| 298 | puts(sysinfo.board_string); |
| 299 | return 0; |
| 300 | } |
| 301 | |
Steve Sakoman | 2ad853c | 2010-07-15 13:43:10 -0700 | [diff] [blame] | 302 | /* |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 303 | * get_device_type(): tell if GP/HS/EMU/TST |
| 304 | */ |
| 305 | u32 get_device_type(void) |
Aneesh V | 8b457fa | 2011-06-16 23:30:52 +0000 | [diff] [blame] | 306 | { |
Lokesh Vutla | c43c833 | 2013-02-04 04:22:04 +0000 | [diff] [blame] | 307 | return (readl((*ctrl)->control_status) & |
SRICHARAN R | c1fa3c3 | 2012-03-12 02:25:43 +0000 | [diff] [blame] | 308 | (DEVICE_TYPE_MASK)) >> DEVICE_TYPE_SHIFT; |
Aneesh V | 8b457fa | 2011-06-16 23:30:52 +0000 | [diff] [blame] | 309 | } |
| 310 | |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 311 | /* |
| 312 | * Print CPU information |
| 313 | */ |
| 314 | int print_cpuinfo(void) |
Aneesh V | 8b457fa | 2011-06-16 23:30:52 +0000 | [diff] [blame] | 315 | { |
Andreas Müller | 761ca31 | 2012-01-04 15:26:24 +0000 | [diff] [blame] | 316 | puts("CPU : "); |
| 317 | omap_rev_string(); |
Sricharan | 508a58f | 2011-11-15 09:49:55 -0500 | [diff] [blame] | 318 | |
| 319 | return 0; |
| 320 | } |
Aneesh V | 13d4f9b | 2011-08-11 04:35:43 +0000 | [diff] [blame] | 321 | #ifndef CONFIG_SYS_DCACHE_OFF |
| 322 | void enable_caches(void) |
| 323 | { |
| 324 | /* Enable D-cache. I-cache is already enabled in start.S */ |
| 325 | dcache_enable(); |
| 326 | } |
R Sricharan | de63ac2 | 2013-03-04 20:04:45 +0000 | [diff] [blame] | 327 | |
| 328 | void dram_bank_mmu_setup(int bank) |
| 329 | { |
| 330 | bd_t *bd = gd->bd; |
| 331 | int i; |
| 332 | |
| 333 | u32 start = bd->bi_dram[bank].start >> 20; |
| 334 | u32 size = bd->bi_dram[bank].size >> 20; |
| 335 | u32 end = start + size; |
| 336 | |
| 337 | debug("%s: bank: %d\n", __func__, bank); |
| 338 | for (i = start; i < end; i++) |
| 339 | set_section_dcache(i, ARMV7_DCACHE_WRITEBACK); |
| 340 | |
| 341 | } |
| 342 | |
| 343 | void arm_init_domains(void) |
| 344 | { |
| 345 | u32 reg; |
| 346 | |
| 347 | reg = get_dacr(); |
| 348 | /* |
| 349 | * Set DOMAIN to client access so that all permissions |
| 350 | * set in pagetables are validated by the mmu. |
| 351 | */ |
| 352 | reg &= ~ARMV7_DOMAIN_MASK; |
| 353 | reg |= ARMV7_DOMAIN_CLIENT; |
| 354 | set_dacr(reg); |
| 355 | } |
Aneesh V | 13d4f9b | 2011-08-11 04:35:43 +0000 | [diff] [blame] | 356 | #endif |