|
@@ -1045,3 +1045,151 @@ void __init at91_add_device_lcdc(struct atmel_lcdfb_info *data) {}
|
|
|
static struct resource tcb0_resources[] = {
|
|
|
[0] = {
|
|
|
.start = AT91SAM9G45_BASE_TCB0,
|
|
|
+ .end = AT91SAM9G45_BASE_TCB0 + SZ_256 - 1,
|
|
|
+ .flags = IORESOURCE_MEM,
|
|
|
+ },
|
|
|
+ [1] = {
|
|
|
+ .start = NR_IRQS_LEGACY + AT91SAM9G45_ID_TCB,
|
|
|
+ .end = NR_IRQS_LEGACY + AT91SAM9G45_ID_TCB,
|
|
|
+ .flags = IORESOURCE_IRQ,
|
|
|
+ },
|
|
|
+};
|
|
|
+
|
|
|
+static struct platform_device at91sam9g45_tcb0_device = {
|
|
|
+ .name = "atmel_tcb",
|
|
|
+ .id = 0,
|
|
|
+ .resource = tcb0_resources,
|
|
|
+ .num_resources = ARRAY_SIZE(tcb0_resources),
|
|
|
+};
|
|
|
+
|
|
|
+/* TCB1 begins with TC3 */
|
|
|
+static struct resource tcb1_resources[] = {
|
|
|
+ [0] = {
|
|
|
+ .start = AT91SAM9G45_BASE_TCB1,
|
|
|
+ .end = AT91SAM9G45_BASE_TCB1 + SZ_256 - 1,
|
|
|
+ .flags = IORESOURCE_MEM,
|
|
|
+ },
|
|
|
+ [1] = {
|
|
|
+ .start = NR_IRQS_LEGACY + AT91SAM9G45_ID_TCB,
|
|
|
+ .end = NR_IRQS_LEGACY + AT91SAM9G45_ID_TCB,
|
|
|
+ .flags = IORESOURCE_IRQ,
|
|
|
+ },
|
|
|
+};
|
|
|
+
|
|
|
+static struct platform_device at91sam9g45_tcb1_device = {
|
|
|
+ .name = "atmel_tcb",
|
|
|
+ .id = 1,
|
|
|
+ .resource = tcb1_resources,
|
|
|
+ .num_resources = ARRAY_SIZE(tcb1_resources),
|
|
|
+};
|
|
|
+
|
|
|
+static void __init at91_add_device_tc(void)
|
|
|
+{
|
|
|
+ platform_device_register(&at91sam9g45_tcb0_device);
|
|
|
+ platform_device_register(&at91sam9g45_tcb1_device);
|
|
|
+}
|
|
|
+#else
|
|
|
+static void __init at91_add_device_tc(void) { }
|
|
|
+#endif
|
|
|
+
|
|
|
+
|
|
|
+/* --------------------------------------------------------------------
|
|
|
+ * RTC
|
|
|
+ * -------------------------------------------------------------------- */
|
|
|
+
|
|
|
+#if defined(CONFIG_RTC_DRV_AT91RM9200) || defined(CONFIG_RTC_DRV_AT91RM9200_MODULE)
|
|
|
+static struct resource rtc_resources[] = {
|
|
|
+ [0] = {
|
|
|
+ .start = AT91SAM9G45_BASE_RTC,
|
|
|
+ .end = AT91SAM9G45_BASE_RTC + SZ_256 - 1,
|
|
|
+ .flags = IORESOURCE_MEM,
|
|
|
+ },
|
|
|
+ [1] = {
|
|
|
+ .start = NR_IRQS_LEGACY + AT91_ID_SYS,
|
|
|
+ .end = NR_IRQS_LEGACY + AT91_ID_SYS,
|
|
|
+ .flags = IORESOURCE_IRQ,
|
|
|
+ },
|
|
|
+};
|
|
|
+
|
|
|
+static struct platform_device at91sam9g45_rtc_device = {
|
|
|
+ .name = "at91_rtc",
|
|
|
+ .id = -1,
|
|
|
+ .resource = rtc_resources,
|
|
|
+ .num_resources = ARRAY_SIZE(rtc_resources),
|
|
|
+};
|
|
|
+
|
|
|
+static void __init at91_add_device_rtc(void)
|
|
|
+{
|
|
|
+ platform_device_register(&at91sam9g45_rtc_device);
|
|
|
+}
|
|
|
+#else
|
|
|
+static void __init at91_add_device_rtc(void) {}
|
|
|
+#endif
|
|
|
+
|
|
|
+
|
|
|
+/* --------------------------------------------------------------------
|
|
|
+ * Touchscreen
|
|
|
+ * -------------------------------------------------------------------- */
|
|
|
+
|
|
|
+#if defined(CONFIG_TOUCHSCREEN_ATMEL_TSADCC) || defined(CONFIG_TOUCHSCREEN_ATMEL_TSADCC_MODULE)
|
|
|
+static u64 tsadcc_dmamask = DMA_BIT_MASK(32);
|
|
|
+static struct at91_tsadcc_data tsadcc_data;
|
|
|
+
|
|
|
+static struct resource tsadcc_resources[] = {
|
|
|
+ [0] = {
|
|
|
+ .start = AT91SAM9G45_BASE_TSC,
|
|
|
+ .end = AT91SAM9G45_BASE_TSC + SZ_16K - 1,
|
|
|
+ .flags = IORESOURCE_MEM,
|
|
|
+ },
|
|
|
+ [1] = {
|
|
|
+ .start = NR_IRQS_LEGACY + AT91SAM9G45_ID_TSC,
|
|
|
+ .end = NR_IRQS_LEGACY + AT91SAM9G45_ID_TSC,
|
|
|
+ .flags = IORESOURCE_IRQ,
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+static struct platform_device at91sam9g45_tsadcc_device = {
|
|
|
+ .name = "atmel_tsadcc",
|
|
|
+ .id = -1,
|
|
|
+ .dev = {
|
|
|
+ .dma_mask = &tsadcc_dmamask,
|
|
|
+ .coherent_dma_mask = DMA_BIT_MASK(32),
|
|
|
+ .platform_data = &tsadcc_data,
|
|
|
+ },
|
|
|
+ .resource = tsadcc_resources,
|
|
|
+ .num_resources = ARRAY_SIZE(tsadcc_resources),
|
|
|
+};
|
|
|
+
|
|
|
+void __init at91_add_device_tsadcc(struct at91_tsadcc_data *data)
|
|
|
+{
|
|
|
+ if (!data)
|
|
|
+ return;
|
|
|
+
|
|
|
+ at91_set_gpio_input(AT91_PIN_PD20, 0); /* AD0_XR */
|
|
|
+ at91_set_gpio_input(AT91_PIN_PD21, 0); /* AD1_XL */
|
|
|
+ at91_set_gpio_input(AT91_PIN_PD22, 0); /* AD2_YT */
|
|
|
+ at91_set_gpio_input(AT91_PIN_PD23, 0); /* AD3_TB */
|
|
|
+
|
|
|
+ tsadcc_data = *data;
|
|
|
+ platform_device_register(&at91sam9g45_tsadcc_device);
|
|
|
+}
|
|
|
+#else
|
|
|
+void __init at91_add_device_tsadcc(struct at91_tsadcc_data *data) {}
|
|
|
+#endif
|
|
|
+
|
|
|
+
|
|
|
+/* --------------------------------------------------------------------
|
|
|
+ * ADC
|
|
|
+ * -------------------------------------------------------------------- */
|
|
|
+
|
|
|
+#if IS_ENABLED(CONFIG_AT91_ADC)
|
|
|
+static struct at91_adc_data adc_data;
|
|
|
+
|
|
|
+static struct resource adc_resources[] = {
|
|
|
+ [0] = {
|
|
|
+ .start = AT91SAM9G45_BASE_TSC,
|
|
|
+ .end = AT91SAM9G45_BASE_TSC + SZ_16K - 1,
|
|
|
+ .flags = IORESOURCE_MEM,
|
|
|
+ },
|
|
|
+ [1] = {
|
|
|
+ .start = NR_IRQS_LEGACY + AT91SAM9G45_ID_TSC,
|