~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise-security

« back to all changes in this revision

Viewing changes to arch/arm/mach-omap2/board-cm-t3517.c

  • Committer: Package Import Robot
  • Author(s): Paolo Pisati, Paolo Pisati
  • Date: 2011-12-06 15:56:07 UTC
  • Revision ID: package-import@ubuntu.com-20111206155607-pcf44kv5fmhk564f
Tags: 3.2.0-1401.1
[ Paolo Pisati ]

* Rebased on top of Ubuntu-3.2.0-3.8
* Tilt-tracking @ ef2487af4bb15bdd0689631774b5a5e3a59f74e2
* Delete debian.ti-omap4/control, it shoudln't be tracked
* Fix architecture spelling (s/armel/armhf/)
* [Config] Update configs following 3.2 import
* [Config] Fix compilation: disable CODA and ARCH_OMAP3
* [Config] Fix compilation: disable Ethernet Faraday
* Update series to precise

Show diffs side-by-side

added added

removed removed

Lines of Context:
236
236
static struct omap_nand_platform_data cm_t3517_nand_data = {
237
237
        .parts                  = cm_t3517_nand_partitions,
238
238
        .nr_parts               = ARRAY_SIZE(cm_t3517_nand_partitions),
239
 
        .dma_channel            = -1,   /* disable DMA in OMAP NAND driver */
240
239
        .cs                     = 0,
241
240
};
242
241
 
252
251
static struct omap_board_config_kernel cm_t3517_config[] __initdata = {
253
252
};
254
253
 
255
 
static void __init cm_t3517_init_early(void)
256
 
{
257
 
        omap2_init_common_infrastructure();
258
 
        omap2_init_common_devices(NULL, NULL);
259
 
}
260
 
 
261
254
#ifdef CONFIG_OMAP_MUX
262
255
static struct omap_board_mux board_mux[] __initdata = {
263
256
        /* GPIO186 - Green LED */
290
283
{
291
284
        omap3_mux_init(board_mux, OMAP_PACKAGE_CBB);
292
285
        omap_serial_init();
 
286
        omap_sdrc_init(NULL, NULL);
293
287
        omap_board_config = cm_t3517_config;
294
288
        omap_board_config_size = ARRAY_SIZE(cm_t3517_config);
295
289
        cm_t3517_init_leds();
300
294
}
301
295
 
302
296
MACHINE_START(CM_T3517, "Compulab CM-T3517")
303
 
        .boot_params    = 0x80000100,
 
297
        .atag_offset    = 0x100,
304
298
        .reserve        = omap_reserve,
305
299
        .map_io         = omap3_map_io,
306
 
        .init_early     = cm_t3517_init_early,
307
 
        .init_irq       = omap_init_irq,
 
300
        .init_early     = am35xx_init_early,
 
301
        .init_irq       = omap3_init_irq,
308
302
        .init_machine   = cm_t3517_init,
309
 
        .timer          = &omap_timer,
 
303
        .timer          = &omap3_timer,
310
304
MACHINE_END