patch-2.4.19 linux-2.4.19/arch/arm/mach-sa1100/flexanet.c
Next file: linux-2.4.19/arch/arm/mach-sa1100/freebird.c
Previous file: linux-2.4.19/arch/arm/mach-sa1100/empeg.c
Back to the patch index
Back to the overall index
- Lines: 204
- Date:
Fri Aug 2 17:39:42 2002
- Orig file:
linux-2.4.18/arch/arm/mach-sa1100/flexanet.c
- Orig date:
Sun Aug 12 11:13:59 2001
diff -urN linux-2.4.18/arch/arm/mach-sa1100/flexanet.c linux-2.4.19/arch/arm/mach-sa1100/flexanet.c
@@ -9,8 +9,6 @@
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
-
-#include <linux/config.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/sched.h>
@@ -27,22 +25,140 @@
#include <asm/mach/arch.h>
#include <asm/mach/map.h>
#include <asm/mach/serial_sa1100.h>
+#include <linux/serial_core.h>
#include "generic.h"
-unsigned long BCR_value = BCR_POWERUP;
-unsigned long flexanet_GUI_type = 0x0000000F;
+unsigned long flexanet_BCR = FHH_BCR_POWERUP;
+
+EXPORT_SYMBOL(flexanet_BCR);
+
+/* physical addresses */
+#define _RCNR 0x90010004
+#define _GPLR 0x90040000
+#define _Ser4SSCR0 0x80070060
+
+/*
+ * Get the modem-control register of the UARTs
+ *
+ */
+static int flexanet_get_mctrl(struct uart_port *port)
+{
+ int stat = 0;
+ unsigned long bsr;
+
+ /* only DSR and CTS are implemented in UART1 & 3 */
+ if (port->membase == (void *)&Ser1UTCR0)
+ {
+ bsr = FHH_BSR;
+
+ if ((bsr & FHH_BSR_DSR1) != 0)
+ stat |= TIOCM_DSR;
+ if ((bsr & FHH_BSR_CTS1) != 0)
+ stat |= TIOCM_CTS;
+ }
+ else if (port->membase == (void *)&Ser3UTCR0)
+ {
+ bsr = FHH_BSR;
+
+ if ((bsr & FHH_BSR_DSR3) != 0)
+ stat |= TIOCM_DSR;
+ if ((bsr & FHH_BSR_CTS3) != 0)
+ stat |= TIOCM_CTS;
+ }
-EXPORT_SYMBOL(BCR_value);
-EXPORT_SYMBOL(flexanet_GUI_type);
+ return stat;
+}
+
+/*
+ * Set the modem-control register of the UARTs
+ *
+ */
+static void flexanet_set_mctrl(struct uart_port *port, u_int mctrl)
+{
+ unsigned long flags;
+
+ /* only the RTS signal is implemented in UART1 & 3 */
+ if (port->membase == (void *)&Ser1UTCR0)
+ {
+ local_irq_save(flags);
+
+ if (mctrl & TIOCM_RTS)
+ flexanet_BCR |= FHH_BCR_RTS1;
+ else
+ flexanet_BCR &= ~FHH_BCR_RTS1;
+
+ FHH_BCR = flexanet_BCR;
+ local_irq_restore(flags);
+ }
+ else if (port->membase == (void *)&Ser3UTCR0)
+ {
+ local_irq_save(flags);
+
+ if (mctrl & TIOCM_RTS)
+ flexanet_BCR |= FHH_BCR_RTS3;
+ else
+ flexanet_BCR &= ~FHH_BCR_RTS3;
+
+ FHH_BCR = flexanet_BCR;
+ local_irq_restore(flags);
+ }
+}
+
+/*
+ * machine-specific serial port functions
+ *
+ * get_mctrl : set state of modem control lines
+ * set_mctrl : set the modem control lines
+ * pm : power-management. Turn device on/off.
+ *
+ */
+static struct sa1100_port_fns flexanet_port_fns __initdata =
+{
+ set_mctrl : flexanet_set_mctrl,
+ get_mctrl : flexanet_get_mctrl,
+ pm : NULL,
+};
+
+
+/*
+ * Initialization and serial port mapping
+ *
+ */
+
+static int flexanet_serial_init(void)
+{
+ /* register low-level functions */
+ sa1100_register_uart_fns(&flexanet_port_fns);
+
+ /* UART port number mapping */
+ sa1100_register_uart(0, 1); /* RS232 */
+ sa1100_register_uart(1, 3); /* Radio */
+
+ /* Select UART function in Serial port 1 */
+ Ser1SDCR0 |= SDCR0_UART;
+
+ return 0;
+}
+
+
+static int __init flexanet_init(void)
+{
+ return 0;
+}
+
+__initcall(flexanet_init);
-static unsigned long probe_gui_board (void);
static void __init
fixup_flexanet(struct machine_desc *desc, struct param_struct *params,
char **cmdline, struct meminfo *mi)
{
+ int status;
+ unsigned long now;
+
+
/* fixed RAM size, by now (64MB) */
SET_BANK( 0, 0xc0000000, 64*1024*1024 );
mi->nr_banks = 1;
@@ -56,8 +172,11 @@
static struct map_desc flexanet_io_desc[] __initdata = {
/* virtual physical length domain r w c b */
- { 0xe8000000, 0x00000000, 0x02000000, DOMAIN_IO, 1, 1, 0, 0 }, /* Flash bank 0 */
- { 0xf0000000, 0x10000000, 0x00001000, DOMAIN_IO, 1, 1, 0, 0 }, /* Board Control Register */
+ { 0xe8000000, 0x00000000, 0x02000000, DOMAIN_IO, 0, 1, 0, 0 }, /* Flash bank 0 */
+ { 0xf0000000, 0x10000000, 0x00001000, DOMAIN_IO, 0, 1, 0, 0 }, /* Board Control Register */
+ { 0xf1000000, 0x18000000, 0x01000000, DOMAIN_IO, 0, 1, 0, 0 }, /* Ethernet controller */
+ { 0xD0000000, 0x40000000, 0x01000000, DOMAIN_IO, 0, 1, 0, 0 }, /* Instrument boards */
+ { 0xD8000000, 0x48000000, 0x01000000, DOMAIN_IO, 0, 1, 0, 0 }, /* External peripherals */
LAST_DESC
};
@@ -65,9 +184,27 @@
{
sa1100_map_io();
iotable_init(flexanet_io_desc);
+ flexanet_serial_init();
- sa1100_register_uart(0, 1);
- Ser1SDCR0 |= SDCR0_UART;
+ /* wakeup source is GPIO-0 only */
+ PWER = PWER_GPIO0;
+
+ /* GPIOs set to zero during sleep */
+ PGSR = 0;
+
+ /*
+ * stop the 3.68 MHz oscillator and float control busses
+ * during sleep, since peripherals are powered off.
+ */
+ PCFR = PCFR_OPDE | PCFR_FP | PCFR_FS;
+
+ /* deassert the GUI reset */
+ FLEXANET_BCR_set(FHH_BCR_GUI_NRST);
+
+ /*
+ * Set IRQ edges
+ */
+ set_GPIO_IRQ_edge(GPIO_GUI_IRQ, GPIO_RISING_EDGE);
}
@@ -78,3 +215,4 @@
MAPIO(flexanet_map_io)
INITIRQ(sa1100_init_irq)
MACHINE_END
+
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)