Subversion Repositories HelenOS

Rev

Rev 1921 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
894 jermar 1
/*
2071 jermar 2
 * Copyright (c) 2006 Jakub Jermar
894 jermar 3
 * All rights reserved.
4
 *
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
7
 * are met:
8
 *
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
28
 
1784 jermar 29
/** @addtogroup sparc64
1702 cejka 30
 * @{
31
 */
32
/** @file
33
 */
34
 
1841 jermar 35
#ifndef KERN_sparc64_Z8530_H_
36
#define KERN_sparc64_Z8530_H_
894 jermar 37
 
895 jermar 38
#include <arch/types.h>
1848 jermar 39
#include <typedefs.h>
1842 jermar 40
#include <arch/drivers/kbd.h>
895 jermar 41
 
1848 jermar 42
#define Z8530_CHAN_A    4
43
#define Z8530_CHAN_B    0
895 jermar 44
 
1848 jermar 45
#define WR0 0
46
#define WR1 1
47
#define WR2 2
48
#define WR3 3
49
#define WR4 4
50
#define WR5 5
51
#define WR6 6
52
#define WR7 7
53
#define WR8 8
54
#define WR9 9
55
#define WR10    10
56
#define WR11    11
57
#define WR12    12
58
#define WR13    13
59
#define WR14    14
60
#define WR15    15
1410 jermar 61
 
1848 jermar 62
#define RR0 0
63
#define RR1 1
64
#define RR2 2
65
#define RR3 3
66
#define RR8 8
67
#define RR10    10
68
#define RR12    12
69
#define RR13    13
70
#define RR14    14
71
#define RR15    15
72
 
1849 jermar 73
/* Write Register 0 */
1875 jermar 74
#define WR0_TX_IP_RST   (0x5<<3)    /** Reset pending TX interrupt. */
1849 jermar 75
#define WR0_ERR_RST (0x6<<3)
76
 
1848 jermar 77
/* Write Register 1 */
78
#define WR1_RID     (0x0<<3)    /** Receive Interrupts Disabled. */
79
#define WR1_RIFCSC  (0x1<<3)    /** Receive Interrupt on First Character or Special Condition. */
80
#define WR1_IARCSC  (0x2<<3)    /** Interrupt on All Receive Characters or Special Conditions. */
81
#define WR1_RISC    (0x3<<3)    /** Receive Interrupt on Special Condition. */
82
#define WR1_PISC    (0x1<<2)    /** Parity Is Special Condition. */
83
 
84
/* Write Register 3 */
85
#define WR3_RX_ENABLE   (0x1<<0)    /** Rx Enable. */
86
#define WR3_RX8BITSCH   (0x3<<6)    /** 8-bits per character. */
87
 
88
/* Write Register 9 */
89
#define WR9_MIE     (0x1<<3)    /** Master Interrupt Enable. */
90
 
91
/* Read Register 0 */
92
#define RR0_RCA     (0x1<<0)    /** Receive Character Available. */
93
 
1921 jermar 94
/** Structure representing the z8530 device. */
95
typedef struct {
96
    devno_t devno;
97
    volatile uint8_t *reg;      /** Memory mapped registers of the z8530. */
98
} z8530_t;
99
 
100
static inline void z8530_write(z8530_t *dev, index_t chan, uint8_t reg, uint8_t val)
895 jermar 101
{
1848 jermar 102
    /*
103
     * Registers 8-15 will automatically issue the Point High
104
     * command as their bit 3 is 1.
105
     */
1921 jermar 106
    dev->reg[WR0+chan] = reg;   /* select register */
107
    dev->reg[WR0+chan] = val;   /* write value */
895 jermar 108
}
109
 
1921 jermar 110
static inline void z8530_write_a(z8530_t *dev, uint8_t reg, uint8_t val)
895 jermar 111
{
1921 jermar 112
    z8530_write(dev, Z8530_CHAN_A, reg, val);
895 jermar 113
}
1921 jermar 114
static inline void z8530_write_b(z8530_t *dev, uint8_t reg, uint8_t val)
1848 jermar 115
{
1921 jermar 116
    z8530_write(dev, Z8530_CHAN_B, reg, val);
1848 jermar 117
}
895 jermar 118
 
1921 jermar 119
static inline uint8_t z8530_read(z8530_t *dev, index_t chan, uint8_t reg)
895 jermar 120
{
1848 jermar 121
    /*
122
     * Registers 8-15 will automatically issue the Point High
123
     * command as their bit 3 is 1.
124
     */
1921 jermar 125
    dev->reg[WR0+chan] = reg;   /* select register */
126
    return dev->reg[WR0+chan];
895 jermar 127
}
128
 
1921 jermar 129
static inline uint8_t z8530_read_a(z8530_t *dev, uint8_t reg)
895 jermar 130
{
1921 jermar 131
    return z8530_read(dev, Z8530_CHAN_A, reg);
895 jermar 132
}
1921 jermar 133
static inline uint8_t z8530_read_b(z8530_t *dev, uint8_t reg)
1848 jermar 134
{
1921 jermar 135
    return z8530_read(dev, Z8530_CHAN_B, reg);
1848 jermar 136
}
895 jermar 137
 
894 jermar 138
#endif
1702 cejka 139
 
1784 jermar 140
/** @}
1702 cejka 141
 */