summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/sim68000/console/conscfg.c
blob: 08663b3ae1388cc04b9dc958e4046ada7267f416 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
 *  This file contains the TTY driver table.
 *
 *  COPYRIGHT (c) 1989-2000.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.com/license/LICENSE.
 *
 *  $Id$
 */

#include <bsp.h>

#include <libchip/serial.h>
#include <libchip/mc68681.h>

/*
 *  Fix these for the simulator
 */

#define MC68681_PORT_CONFIG  MC68681_XBRG_IGNORED
#define MC68681_PROBE        libchip_serial_default_probe
#define MC68681_VECTOR       0
#define MC68681_BASE_ADDRESS 0x71001
#define MC68681_DATA_ADDRESS 0x71007

/*
 *  Based on BSP configuration information decide whether to do polling IO
 *  or interrupt driven IO.
 */

#if (CONSOLE_USE_INTERRUPTS)
#define MC68681_FUNCTIONS &mc68681_fns
#else
#define MC68681_FUNCTIONS &mc68681_fns_polled
#endif

console_tbl	Console_Port_Tbl[] = {
	{
		"/dev/com0",			/* sDeviceName */
                SERIAL_MC68681,                 /* deviceType */
		MC68681_FUNCTIONS,		/* pDeviceFns */
		NULL,				/* deviceProbe */
		NULL,				/* pDeviceFlow */
		16,				/* ulMargin */
		8,				/* ulHysteresis */
		(void *)9600,	/* baud rate */	/* pDeviceParams */
		MC68681_BASE_ADDRESS,		/* ulCtrlPort1 */
		MC68681_BASE_ADDRESS,		/* ulCtrlPort2 */
		MC68681_DATA_ADDRESS,		/* ulDataPort */
		mc68681_get_register_2,         /* getRegister */
		mc68681_set_register_2,		/* setRegister */
		NULL, /* unused */		/* getData */
		NULL, /* unused */		/* setData */
                (uint32_t)mc68681_baud_rate_table,	/* ulClock */
		MC68681_VECTOR			/* ulIntVector */
	}
};

/*
 *  Declare some information used by the console driver
 */

#define NUM_CONSOLE_PORTS (sizeof(Console_Port_Tbl)/sizeof(console_tbl))

unsigned long  Console_Port_Count = NUM_CONSOLE_PORTS;

console_data  Console_Port_Data[NUM_CONSOLE_PORTS];

rtems_device_minor_number  Console_Port_Minor;