source: rtems/c/src/lib/libcpu/sh/sh7750/include/rtems/score/ipl.h @ 4cf920c4

4.104.114.84.95
Last change on this file since 4cf920c4 was 12ae6d9e, checked in by Joel Sherrill <joel.sherrill@…>, on 10/15/01 at 18:01:12

2001-10-15 Ralf Corsepius <corsepiu@…>

  • include/sh4uart.h: move to include/sh/sh4uart.h.
  • include/ispsh7750.h: move to include/rtems/score/ispsh7750.h.
  • include/iosh7750.h: move include/rtems/score/iosh7750.h.
  • include/sh7750_regs.h: move to include/rtems/score/sh7750_regs.h.
  • include/rtems/score/ipl.h: move to include/rtems/score/ipl.h.
  • include/rtems/score/sh4_regs.h: Reintroduce from Alexandra Kossovsky's original sources.
  • include/Makefile.am: reflect changes above, remove EXTRA_DIST, require automake 1.5.
  • sci/Makefile.am: Disable compilation of console.c.
  • sci/sh4uart.c: include <sh/sh4uart.h>, add SH7750_SCSMR_CHK_S, remove SH4_CPU_HZ_Frequency;
  • score/isph7750.c: Remove #if !defined(sh7750), include sh4_regs.h.
  • Property mode set to 100644
File size: 1.5 KB
Line 
1/*  ipl.h
2 *
3 *  IPL console driver
4 *  Copyright (C) 2001 OKTET Ltd., St.-Petersburg, Russia
5 *  Author: Victor V. Vengerov <vvv@oktet.ru>
6 *
7 *  Based on work:
8 *  Author: Ralf Corsepius (corsepiu@faw.uni-ulm.de)
9 *
10 *  COPYRIGHT (c) 1989-1998.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.OARcorp.com/rtems/license.html.
16 *
17 *  $Id$
18 */
19
20#ifndef __IPL_DRIVER_h
21#define __IPL_DRIVER_h
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27#define IPL_DRIVER_TABLE_ENTRY \
28  { ipl_console_initialize, ipl_console_open, ipl_console_close, \
29    ipl_console_read, ipl_console_write, ipl_console_control }
30   
31   
32#define NULL_SUCCESSFUL RTEMS_SUCCESSFUL
33
34rtems_device_driver ipl_console_initialize(
35  rtems_device_major_number,
36  rtems_device_minor_number,
37  void *
38);
39
40rtems_device_driver ipl_console_open(
41  rtems_device_major_number,
42  rtems_device_minor_number,
43  void *
44);
45
46rtems_device_driver ipl_console_close(
47  rtems_device_major_number,
48  rtems_device_minor_number,
49  void *
50);
51
52rtems_device_driver ipl_console_read(
53  rtems_device_major_number,
54  rtems_device_minor_number,
55  void *
56);
57
58rtems_device_driver ipl_console_write(
59  rtems_device_major_number,
60  rtems_device_minor_number,
61  void *
62);
63
64rtems_device_driver ipl_console_control(
65  rtems_device_major_number,
66  rtems_device_minor_number,
67  void *
68);
69
70#ifdef __cplusplus
71}
72#endif
73
74#endif
75/* end of include file */
Note: See TracBrowser for help on using the repository browser.