1 | /* $ZEL: sis1100_write.c,v 1.2 2004/05/27 23:10:38 wuestner Exp $ */
|
---|
2 |
|
---|
3 | /*
|
---|
4 | * Copyright (c) 2003-2004
|
---|
5 | * Peter Wuestner. All rights reserved.
|
---|
6 | *
|
---|
7 | * Redistribution and use in source and binary forms, with or without
|
---|
8 | * modification, are permitted provided that the following conditions
|
---|
9 | * are met:
|
---|
10 | * 1. Redistributions of source code must retain the above copyright
|
---|
11 | * notice, this list of conditions, and the following disclaimer.
|
---|
12 | * 2. Redistributions in binary form must reproduce the above copyright
|
---|
13 | * notice, this list of conditions and the following disclaimer in the
|
---|
14 | * documentation and/or other materials provided with the distribution.
|
---|
15 | *
|
---|
16 | * THIS SOFTWARE IS PROVIDED BY THE AUTHORS AND CONTRIBUTORS ``AS IS'' AND
|
---|
17 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
---|
18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
---|
19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
---|
20 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
---|
21 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
---|
22 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
---|
23 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
---|
24 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
---|
25 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
---|
26 | * SUCH DAMAGE.
|
---|
27 | */
|
---|
28 |
|
---|
29 | #include "sis1100_sc.h"
|
---|
30 |
|
---|
31 | #if !defined(__NetBSD__) && ! defined(__linux__)
|
---|
32 | #error Invalid or Unknown Operating System
|
---|
33 | #endif
|
---|
34 |
|
---|
35 | static int
|
---|
36 | _sis1100_write(struct sis1100_softc* sc, struct sis1100_fdata* fd,
|
---|
37 | size_t count, size_t* count_written, u_int32_t addr, const char* data)
|
---|
38 | {
|
---|
39 | int32_t am;
|
---|
40 | int datasize;
|
---|
41 | int space, fifo;
|
---|
42 | int res;
|
---|
43 |
|
---|
44 | switch (fd->subdev) {
|
---|
45 | case sis1100_subdev_ram:
|
---|
46 | am=-1;
|
---|
47 | datasize=4;
|
---|
48 | space=6;
|
---|
49 | fifo=0;
|
---|
50 | break;
|
---|
51 | case sis1100_subdev_remote:
|
---|
52 | am=fd->vmespace_am;
|
---|
53 | datasize=fd->vmespace_datasize;
|
---|
54 | space=1;
|
---|
55 | fifo=fd->fifo_mode;
|
---|
56 | break;
|
---|
57 | case sis1100_subdev_dsp:
|
---|
58 | am=-1;
|
---|
59 | datasize=4;
|
---|
60 | space=6;
|
---|
61 | fifo=0;
|
---|
62 | break;
|
---|
63 | case sis1100_subdev_ctrl:
|
---|
64 | default:
|
---|
65 | /* just to avoid warning: ... might be used uninitialized */
|
---|
66 | /*am=0;
|
---|
67 | datasize=0;
|
---|
68 | space=0; fifo=0;*/
|
---|
69 | return ENOTTY;
|
---|
70 | }
|
---|
71 |
|
---|
72 | if (count%datasize) return EINVAL;
|
---|
73 |
|
---|
74 | res=sis1100_write_block(sc, fd,
|
---|
75 | datasize, fifo, count/datasize, count_written, space, am,
|
---|
76 | addr, data, &fd->last_prot_err);
|
---|
77 | *count_written*=datasize;
|
---|
78 |
|
---|
79 | return res;
|
---|
80 | }
|
---|
81 |
|
---|
82 | #ifdef __NetBSD__
|
---|
83 | int
|
---|
84 | sis1100_write(dev_t dev, struct uio* uio, int f)
|
---|
85 | {
|
---|
86 | struct sis1100_softc* sc=SIS1100SC(dev);
|
---|
87 | struct sis1100_fdata* fd=SIS1100FD(dev);
|
---|
88 | size_t count, count_written;
|
---|
89 | u_int32_t addr;
|
---|
90 | char* data;
|
---|
91 | int res;
|
---|
92 |
|
---|
93 | count=uio->uio_resid;
|
---|
94 | addr=uio->uio_offset;
|
---|
95 | data=uio->uio_iov->iov_base;
|
---|
96 |
|
---|
97 | res=_sis1100_write(sc, fd, count, &count_written, addr, data);
|
---|
98 |
|
---|
99 | if (!res) {
|
---|
100 | uio->uio_resid-=count_written;
|
---|
101 | }
|
---|
102 | return res;
|
---|
103 | }
|
---|
104 |
|
---|
105 | #elif __linux__
|
---|
106 | ssize_t
|
---|
107 | sis1100_write(struct file* file, const char* buf, size_t count,
|
---|
108 | loff_t* ppos)
|
---|
109 | {
|
---|
110 | struct sis1100_softc* sc=SIS1100SC(file);
|
---|
111 | struct sis1100_fdata* fd=SIS1100FD(file);
|
---|
112 | size_t count_written;
|
---|
113 | int res;
|
---|
114 |
|
---|
115 | res=_sis1100_write(sc, fd, count, &count_written, *ppos, buf);
|
---|
116 | if (!res) *ppos+=count_written;
|
---|
117 | return res?-res:count_written;
|
---|
118 | }
|
---|
119 |
|
---|
120 | #endif
|
---|