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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
/* $NetBSD: ds.h,v 1.3 1999/02/16 23:34:13 is Exp $ */
/*-
* Copyright (c) 1997 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Ignatios Souvatzis.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the NetBSD
* Foundation, Inc. and its contributors.
* 4. Neither the name of The NetBSD Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Definitions for access to Dallas Semiconductor chips which attach to
* the same 1-wire bus as the DS2404 RTC.
*/
#ifndef DALLAS_SEMI_CHIPS_H
#define DALLAS_SEMI_CHIPS_H
/* Family codes (low byte of the ROM) */
#define DS_FAMILY_2404 0x04 /* DS2404 Econoram Time Chip */
/*
* ROM access codes. These are only available from the 1-wire bus, and one
* of them MUST be used before a memory access code is called. If you want
* to detect which devices are on the bus, you have to issue the ROM search
* function (see data sheet).
* If only one device is on the BUS, and you don't want any ROM function,
* issue the SKIP function.
* READ ROM works only if only one device is on the bus.
*/
#define DS_ROM_MATCH 0x55 /* 55 8-bytes-of-ROM-to-select */
#define DS_ROM_SEARCH 0xf0 /* see data sheet */
#define DS_ROM_SKIP 0xCC /* don't do ROM function */
#define DS_ROM_READ 0x33 /* 33 -> 8 bytes of ROM */
/*
* Memory access codes. These are available from the 1- or 3-wire bus, and
* but you must use one of the ROM access codes first, if using the 1-wire
* bus.
*
* You can read from any starting address up to the end of the chip, or
* abort the read with a reset pulse.
* You first write 2-32 bytes beginning some address to the scratchpad.
* Starting address and final byte stream length are remembered by the
* chip. After reading data and address/length back from the scratchpad,
* and verifying the information, you can issue the copy scratchpad command
* to copy the written parts of the scratchpad to the corresponding parts
* of the implied (in the address) memory page.
*/
#define DS_MEM_WRITE_SCRATCH 0x0f /* 0F low-ads high-ads data ... */
#define DS_MEM_READ_SCRATCH 0xaa /* AA -> low-ads high-ads end-ofs
* data ... */
#define DS_MEM_COPY_SCRATCH 0x55 /* 55 low-ads high-ads end-ofs */
#define DS_MEM_READ_MEMORY 0xf0 /* F0 low-ads high-ads -> data ...*/
/*
* Hardware handle for access functions
*/
struct ds_handle {
int (*ds_read_bit) __P((void *));
void (*ds_write_bit) __P((void *, int));
void (*ds_reset) __P((void *));
void *ds_hw_handle;
};
/*
* Functions for access to Dallas Semiconductor chips which attach to
* the same 1-wire bus as the DS2404 RTC.
*/
static u_int8_t ds_read_byte __P((struct ds_handle *));
static void ds_write_byte __P((struct ds_handle *, unsigned int));
static inline u_int8_t
ds_read_byte(dsh)
struct ds_handle *dsh;
{
u_int8_t buf;
int i;
for (i=buf=0; i<8; ++i)
buf |= (dsh->ds_read_bit)(dsh->ds_hw_handle) << i;
return buf;
}
static inline void
ds_write_byte(dsh, b)
struct ds_handle *dsh;
unsigned int b;
{
int i;
for (i=0; i<8; ++i) {
(dsh->ds_write_bit)(dsh->ds_hw_handle, b & 1);
b >>= 1;
}
}
#endif /* DALLAS_SEMI_CHIPS_H */
|