|
@@ -1550,3 +1550,75 @@ void __init at91_add_device_ssc(unsigned id, unsigned pins)
|
|
|
pdev = &at91sam9g45_ssc1_device;
|
|
|
configure_ssc1_pins(pins);
|
|
|
break;
|
|
|
+ default:
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ platform_device_register(pdev);
|
|
|
+}
|
|
|
+
|
|
|
+#else
|
|
|
+void __init at91_add_device_ssc(unsigned id, unsigned pins) {}
|
|
|
+#endif
|
|
|
+
|
|
|
+
|
|
|
+/* --------------------------------------------------------------------
|
|
|
+ * UART
|
|
|
+ * -------------------------------------------------------------------- */
|
|
|
+
|
|
|
+#if defined(CONFIG_SERIAL_ATMEL)
|
|
|
+static struct resource dbgu_resources[] = {
|
|
|
+ [0] = {
|
|
|
+ .start = AT91SAM9G45_BASE_DBGU,
|
|
|
+ .end = AT91SAM9G45_BASE_DBGU + SZ_512 - 1,
|
|
|
+ .flags = IORESOURCE_MEM,
|
|
|
+ },
|
|
|
+ [1] = {
|
|
|
+ .start = NR_IRQS_LEGACY + AT91_ID_SYS,
|
|
|
+ .end = NR_IRQS_LEGACY + AT91_ID_SYS,
|
|
|
+ .flags = IORESOURCE_IRQ,
|
|
|
+ },
|
|
|
+};
|
|
|
+
|
|
|
+static struct atmel_uart_data dbgu_data = {
|
|
|
+ .use_dma_tx = 0,
|
|
|
+ .use_dma_rx = 0,
|
|
|
+};
|
|
|
+
|
|
|
+static u64 dbgu_dmamask = DMA_BIT_MASK(32);
|
|
|
+
|
|
|
+static struct platform_device at91sam9g45_dbgu_device = {
|
|
|
+ .name = "atmel_usart",
|
|
|
+ .id = 0,
|
|
|
+ .dev = {
|
|
|
+ .dma_mask = &dbgu_dmamask,
|
|
|
+ .coherent_dma_mask = DMA_BIT_MASK(32),
|
|
|
+ .platform_data = &dbgu_data,
|
|
|
+ },
|
|
|
+ .resource = dbgu_resources,
|
|
|
+ .num_resources = ARRAY_SIZE(dbgu_resources),
|
|
|
+};
|
|
|
+
|
|
|
+static inline void configure_dbgu_pins(void)
|
|
|
+{
|
|
|
+ at91_set_A_periph(AT91_PIN_PB12, 0); /* DRXD */
|
|
|
+ at91_set_A_periph(AT91_PIN_PB13, 1); /* DTXD */
|
|
|
+}
|
|
|
+
|
|
|
+static struct resource uart0_resources[] = {
|
|
|
+ [0] = {
|
|
|
+ .start = AT91SAM9G45_BASE_US0,
|
|
|
+ .end = AT91SAM9G45_BASE_US0 + SZ_16K - 1,
|
|
|
+ .flags = IORESOURCE_MEM,
|
|
|
+ },
|
|
|
+ [1] = {
|
|
|
+ .start = NR_IRQS_LEGACY + AT91SAM9G45_ID_US0,
|
|
|
+ .end = NR_IRQS_LEGACY + AT91SAM9G45_ID_US0,
|
|
|
+ .flags = IORESOURCE_IRQ,
|
|
|
+ },
|
|
|
+};
|
|
|
+
|
|
|
+static struct atmel_uart_data uart0_data = {
|
|
|
+ .use_dma_tx = 1,
|
|
|
+ .use_dma_rx = 1,
|
|
|
+};
|