source: rtems/c/src/libchip/serial/mc68681_reg.c @ f010a5e

4.104.114.84.95
Last change on this file since f010a5e was f010a5e, checked in by Joel Sherrill <joel.sherrill@…>, on 03/02/01 at 18:17:22

2001-03-01 Joel Sherrill <joel@…>

  • network/cs8900.c, network/cs8900.h, network/sonic.c, network/sonic.h, rtc/icm7170_reg.c, rtc/icm7170_reg2.c, rtc/icm7170_reg4.c, rtc/icm7170_reg8.c, rtc/m48t08_reg.c, rtc/m48t08_reg2.c, rtc/m48t08_reg4.c, rtc/m48t08_reg8.c, serial/mc68681_reg.c, serial/mc68681_reg2.c, serial/mc68681_reg4.c, serial/mc68681_reg8.c, serial/z85c30.c, serial/z85c30.h, serial/z85c30_p.h, serial/z85c30_reg.c: Corrected header.
  • Property mode set to 100644
File size: 1.3 KB
RevLine 
[cce9322]1/*
2 *  This file contains a typical set of register access routines which may be
3 *  used with the mc68681 chip if accesses to the chip are as follows:
4 *
5 *    + registers are accessed as bytes
6 *    + registers are only byte-aligned (no address gaps)
7 *
8 *  COPYRIGHT (c) 1989-1997.
9 *  On-Line Applications Research Corporation (OAR).
10 *
11 *  The license and distribution terms for this file may be
12 *  found in the file LICENSE in this distribution or at
13 *  http://www.OARcorp.com/rtems/license.html.
14 *
15 *  $Id$
16 */
17
18#include <rtems.h>
19
20#ifndef _MC68681_MULTIPLIER
21#define _MC68681_MULTIPLIER 1
22#define _MC68681_NAME(_X) _X
23#define _MC68681_TYPE unsigned8
24#endif
25
26#define CALCULATE_REGISTER_ADDRESS( _base, _reg ) \
27  (_MC68681_TYPE *)((_base) + ((_reg) * _MC68681_MULTIPLIER ))
28
29/*
30 *  MC68681 Get Register Routine
31 */
32
33unsigned8 _MC68681_NAME(mc68681_get_register)(
34  unsigned32  ulCtrlPort,
35  unsigned8   ucRegNum
36)
37{
[849dc107]38  _MC68681_TYPE *port;
[cce9322]39
40  port = CALCULATE_REGISTER_ADDRESS( ulCtrlPort, ucRegNum );
41
42  return *port;
43}
44
45/*
46 *  MC68681 Set Register Routine
47 */
48
49void  _MC68681_NAME(mc68681_set_register)(
50  unsigned32  ulCtrlPort,
51  unsigned8   ucRegNum,
52  unsigned8   ucData
53)
54{
[849dc107]55  _MC68681_TYPE *port;
[cce9322]56
57  port = CALCULATE_REGISTER_ADDRESS( ulCtrlPort, ucRegNum );
58
59  *port = ucData;
60}
Note: See TracBrowser for help on using the repository browser.