|
@@ -597,6 +597,61 @@ void __init at91_add_device_spi(struct spi_board_info *devices, int nr_devices)
|
|
|
#endif
|
|
|
|
|
|
|
|
|
+/* --------------------------------------------------------------------
|
|
|
+ * AC97
|
|
|
+ * -------------------------------------------------------------------- */
|
|
|
+
|
|
|
+#if defined(CONFIG_SND_ATMEL_AC97C) || defined(CONFIG_SND_ATMEL_AC97C_MODULE)
|
|
|
+static u64 ac97_dmamask = DMA_BIT_MASK(32);
|
|
|
+static struct ac97c_platform_data ac97_data;
|
|
|
+
|
|
|
+static struct resource ac97_resources[] = {
|
|
|
+ [0] = {
|
|
|
+ .start = AT91SAM9G45_BASE_AC97C,
|
|
|
+ .end = AT91SAM9G45_BASE_AC97C + SZ_16K - 1,
|
|
|
+ .flags = IORESOURCE_MEM,
|
|
|
+ },
|
|
|
+ [1] = {
|
|
|
+ .start = AT91SAM9G45_ID_AC97C,
|
|
|
+ .end = AT91SAM9G45_ID_AC97C,
|
|
|
+ .flags = IORESOURCE_IRQ,
|
|
|
+ },
|
|
|
+};
|
|
|
+
|
|
|
+static struct platform_device at91sam9g45_ac97_device = {
|
|
|
+ .name = "atmel_ac97c",
|
|
|
+ .id = 0,
|
|
|
+ .dev = {
|
|
|
+ .dma_mask = &ac97_dmamask,
|
|
|
+ .coherent_dma_mask = DMA_BIT_MASK(32),
|
|
|
+ .platform_data = &ac97_data,
|
|
|
+ },
|
|
|
+ .resource = ac97_resources,
|
|
|
+ .num_resources = ARRAY_SIZE(ac97_resources),
|
|
|
+};
|
|
|
+
|
|
|
+void __init at91_add_device_ac97(struct ac97c_platform_data *data)
|
|
|
+{
|
|
|
+ if (!data)
|
|
|
+ return;
|
|
|
+
|
|
|
+ at91_set_A_periph(AT91_PIN_PD8, 0); /* AC97FS */
|
|
|
+ at91_set_A_periph(AT91_PIN_PD9, 0); /* AC97CK */
|
|
|
+ at91_set_A_periph(AT91_PIN_PD7, 0); /* AC97TX */
|
|
|
+ at91_set_A_periph(AT91_PIN_PD6, 0); /* AC97RX */
|
|
|
+
|
|
|
+ /* reset */
|
|
|
+ if (data->reset_pin)
|
|
|
+ at91_set_gpio_output(data->reset_pin, 0);
|
|
|
+
|
|
|
+ ac97_data = *data;
|
|
|
+ platform_device_register(&at91sam9g45_ac97_device);
|
|
|
+}
|
|
|
+#else
|
|
|
+void __init at91_add_device_ac97(struct ac97c_platform_data *data) {}
|
|
|
+#endif
|
|
|
+
|
|
|
+
|
|
|
/* --------------------------------------------------------------------
|
|
|
* LCD Controller
|
|
|
* -------------------------------------------------------------------- */
|