source: rtems/c/src/lib/libcpu/sh/sh7045/null/init.c @ 4a238002

4.104.114.84.95
Last change on this file since 4a238002 was 4a238002, checked in by Joel Sherrill <joel.sherrill@…>, on 11/18/99 at 21:22:58

Patch from "John M. Mills" <jmills@…> with subsequent cleanup from
Ralf Corsepius <corsepiu@…> that adds initial Hitachi SH-2
support to RTEMS. Ralf's comments are:

Changes:
------

  1. SH-Port:
  • Many files renamed.
  • CONSOLE_DEVNAME and MHZ defines removed from libcpu.
  • console.c moved to libbsp/sh/shared, build in libbsp/sh/<BSP>/console applying VPATH.
  • CONSOLE_DEVNAME made BSP-specific, replacement is defined in bsp.h
  • MHZ define replaced with HZ (extendent resolution) in custom/*.cfg
  • -DHZ=HZ used in bspstart.c, only
  • Makefile variable HZ used in bsp-dependent directories only.
  1. SH1-Port
  • clock-driver rewritten to provide better resolution for odd CPU frequencies. This driver is only partially tested on hardware, ie. sightly experimental, but I don't expect severe problems with it.
  • Polling SCI-driver added. This driver is experimental and completly untested yet. Therefore it is not yet used for the console (/dev/console is still pointing to /dev/null, cf. gensh1/bsp.h).
  • minor changes to the timer driver
  • SH1 specific delay()/CPU_delay() now is implemented as a function
  1. SH2-Port
  • Merged
  • IMO, the code is still in its infancy. Therefore I have interspersed comments (FIXME) it for items which I think John should look after.
  • sci and console drivers partially rewritten and extended (John, I hope you don't mind).
  • Copyright notices are not yet adapted
  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*  null_initialize
2 *
3 *  This routine is the null device driver init routine.
4 *
5 *  Derived from rtems' stub driver.
6 *
7 *  Author: Ralf Corsepius (corsepiu@faw.uni-ulm.de)
8 *
9 *  Input parameters:
10 *    major - device major number
11 *    minor - device minor number
12 *    pargp - pointer to parameter block
13 *
14 *  Output parameters:
15 *    rval       - NULL_SUCCESSFUL
16 *
17 *  COPYRIGHT (c) 1989-1998.
18 *  On-Line Applications Research Corporation (OAR).
19 *  Copyright assigned to U.S. Government, 1994.
20 *
21 *  The license and distribution terms for this file may be
22 *  found in the file LICENSE in this distribution or at
23 *  http://www.OARcorp.com/rtems/license.html.
24 *
25 *  $Id$
26 */
27
28#include <rtems.h>
29#include <sh/null.h>
30
31rtems_unsigned32 NULL_major;
32
33rtems_device_driver null_initialize(
34  rtems_device_major_number major,
35  rtems_device_minor_number minor,
36  void *pargp
37)
38{
39  rtems_device_driver status ;
40 
41  status = rtems_io_register_name(
42    "/dev/null",
43    major,
44    (rtems_device_minor_number) 0
45    );
46
47  if (status != RTEMS_SUCCESSFUL)
48    rtems_fatal_error_occurred(status);
49     
50  NULL_major = major;
51 
52  return RTEMS_SUCCESSFUL;
53}
Note: See TracBrowser for help on using the repository browser.