blob: 866881ec0cf81ed603705f8c01cebab3147def2f [file] [log] [blame]
Brian Murphy1f21d2b2007-08-21 22:34:16 +02001/*
2 * Thomas Horsten <thh@lasat.com>
3 * Copyright (C) 2000 LASAT Networks A/S.
4 *
5 * This program is free software; you can distribute it and/or modify it
6 * under the terms of the GNU General Public License (Version 2) as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
17 *
18 * Routines specific to the LASAT boards
19 */
20#include <linux/types.h>
21#include <asm/lasat/lasat.h>
22
23#include <linux/module.h>
24#include <linux/sysctl.h>
25#include <linux/stddef.h>
26#include <linux/init.h>
27#include <linux/fs.h>
28#include <linux/ctype.h>
29#include <linux/string.h>
30#include <linux/net.h>
31#include <linux/inet.h>
Brian Murphy1f21d2b2007-08-21 22:34:16 +020032#include <linux/uaccess.h>
33
Ralf Baechle4b550482007-10-11 23:46:08 +010034#include <asm/time.h>
35
Thomas Horsten1f34f2e2008-06-15 02:17:11 +010036#ifdef CONFIG_DS1603
Brian Murphy1f21d2b2007-08-21 22:34:16 +020037#include "ds1603.h"
Thomas Horsten1f34f2e2008-06-15 02:17:11 +010038#endif
Brian Murphy1f21d2b2007-08-21 22:34:16 +020039
40/* Strategy function to write EEPROM after changing string entry */
41int sysctl_lasatstring(ctl_table *table, int *name, int nlen,
42 void *oldval, size_t *oldlenp,
43 void *newval, size_t newlen)
44{
45 int r;
46
Brian Murphy1f21d2b2007-08-21 22:34:16 +020047 r = sysctl_string(table, name,
48 nlen, oldval, oldlenp, newval, newlen);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +010049 if (r < 0)
Brian Murphy1f21d2b2007-08-21 22:34:16 +020050 return r;
Thomas Horsten1f34f2e2008-06-15 02:17:11 +010051
Brian Murphy1f21d2b2007-08-21 22:34:16 +020052 if (newval && newlen)
53 lasat_write_eeprom_info();
Brian Murphy1f21d2b2007-08-21 22:34:16 +020054
Thomas Horsten1f34f2e2008-06-15 02:17:11 +010055 return 0;
Brian Murphy1f21d2b2007-08-21 22:34:16 +020056}
57
58
59/* And the same for proc */
60int proc_dolasatstring(ctl_table *table, int write, struct file *filp,
61 void *buffer, size_t *lenp, loff_t *ppos)
62{
63 int r;
64
Brian Murphy1f21d2b2007-08-21 22:34:16 +020065 r = proc_dostring(table, write, filp, buffer, lenp, ppos);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +010066 if ((!write) || r)
Brian Murphy1f21d2b2007-08-21 22:34:16 +020067 return r;
Thomas Horsten1f34f2e2008-06-15 02:17:11 +010068
Brian Murphy1f21d2b2007-08-21 22:34:16 +020069 lasat_write_eeprom_info();
Brian Murphy1f21d2b2007-08-21 22:34:16 +020070
71 return 0;
72}
73
74/* proc function to write EEPROM after changing int entry */
75int proc_dolasatint(ctl_table *table, int write, struct file *filp,
76 void *buffer, size_t *lenp, loff_t *ppos)
77{
78 int r;
79
Brian Murphy1f21d2b2007-08-21 22:34:16 +020080 r = proc_dointvec(table, write, filp, buffer, lenp, ppos);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +010081 if ((!write) || r)
Brian Murphy1f21d2b2007-08-21 22:34:16 +020082 return r;
Thomas Horsten1f34f2e2008-06-15 02:17:11 +010083
Brian Murphy1f21d2b2007-08-21 22:34:16 +020084 lasat_write_eeprom_info();
Brian Murphy1f21d2b2007-08-21 22:34:16 +020085
86 return 0;
87}
88
Thomas Horsten1f34f2e2008-06-15 02:17:11 +010089#ifdef CONFIG_DS1603
Brian Murphy1f21d2b2007-08-21 22:34:16 +020090static int rtctmp;
91
Brian Murphy1f21d2b2007-08-21 22:34:16 +020092/* proc function to read/write RealTime Clock */
93int proc_dolasatrtc(ctl_table *table, int write, struct file *filp,
94 void *buffer, size_t *lenp, loff_t *ppos)
95{
96 int r;
97
Brian Murphy1f21d2b2007-08-21 22:34:16 +020098 if (!write) {
Ralf Baechle4b550482007-10-11 23:46:08 +010099 rtctmp = read_persistent_clock();
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200100 /* check for time < 0 and set to 0 */
101 if (rtctmp < 0)
102 rtctmp = 0;
103 }
104 r = proc_dointvec(table, write, filp, buffer, lenp, ppos);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100105 if (r)
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200106 return r;
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100107
108 if (write)
109 rtc_mips_set_mmss(rtctmp);
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200110
111 return 0;
112}
113#endif
114
115/* Sysctl for setting the IP addresses */
116int sysctl_lasat_intvec(ctl_table *table, int *name, int nlen,
117 void *oldval, size_t *oldlenp,
118 void *newval, size_t newlen)
119{
120 int r;
121
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200122 r = sysctl_intvec(table, name, nlen, oldval, oldlenp, newval, newlen);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100123 if (r < 0)
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200124 return r;
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100125
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200126 if (newval && newlen)
127 lasat_write_eeprom_info();
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200128
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100129 return 0;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200130}
131
132#ifdef CONFIG_DS1603
133/* Same for RTC */
134int sysctl_lasat_rtc(ctl_table *table, int *name, int nlen,
135 void *oldval, size_t *oldlenp,
136 void *newval, size_t newlen)
137{
138 int r;
139
Ralf Baechle4b550482007-10-11 23:46:08 +0100140 rtctmp = read_persistent_clock();
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200141 if (rtctmp < 0)
142 rtctmp = 0;
143 r = sysctl_intvec(table, name, nlen, oldval, oldlenp, newval, newlen);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100144 if (r < 0)
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200145 return r;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200146 if (newval && newlen)
Ralf Baechle4b550482007-10-11 23:46:08 +0100147 rtc_mips_set_mmss(rtctmp);
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200148
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100149 return r;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200150}
151#endif
152
153#ifdef CONFIG_INET
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200154int proc_lasat_ip(ctl_table *table, int write, struct file *filp,
155 void *buffer, size_t *lenp, loff_t *ppos)
156{
157 unsigned int ip;
158 char *p, c;
159 int len;
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100160 char ipbuf[32];
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200161
162 if (!table->data || !table->maxlen || !*lenp ||
163 (*ppos && !write)) {
164 *lenp = 0;
165 return 0;
166 }
167
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200168 if (write) {
169 len = 0;
170 p = buffer;
171 while (len < *lenp) {
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100172 if (get_user(c, p++))
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200173 return -EFAULT;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200174 if (c == 0 || c == '\n')
175 break;
176 len++;
177 }
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100178 if (len >= sizeof(ipbuf)-1)
179 len = sizeof(ipbuf) - 1;
180 if (copy_from_user(ipbuf, buffer, len))
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200181 return -EFAULT;
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100182 ipbuf[len] = 0;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200183 *ppos += *lenp;
184 /* Now see if we can convert it to a valid IP */
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100185 ip = in_aton(ipbuf);
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200186 *(unsigned int *)(table->data) = ip;
187 lasat_write_eeprom_info();
188 } else {
189 ip = *(unsigned int *)(table->data);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100190 sprintf(ipbuf, "%d.%d.%d.%d",
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200191 (ip) & 0xff,
192 (ip >> 8) & 0xff,
193 (ip >> 16) & 0xff,
194 (ip >> 24) & 0xff);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100195 len = strlen(ipbuf);
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200196 if (len > *lenp)
197 len = *lenp;
198 if (len)
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100199 if (copy_to_user(buffer, ipbuf, len))
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200200 return -EFAULT;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200201 if (len < *lenp) {
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100202 if (put_user('\n', ((char *) buffer) + len))
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200203 return -EFAULT;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200204 len++;
205 }
206 *lenp = len;
207 *ppos += len;
208 }
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200209
210 return 0;
211}
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100212#endif
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200213
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100214static int sysctl_lasat_prid(ctl_table *table, int *name, int nlen,
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200215 void *oldval, size_t *oldlenp,
216 void *newval, size_t newlen)
217{
218 int r;
219
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200220 r = sysctl_intvec(table, name, nlen, oldval, oldlenp, newval, newlen);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100221 if (r < 0)
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200222 return r;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200223 if (newval && newlen) {
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100224 lasat_board_info.li_eeprom_info.prid = *(int *)newval;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200225 lasat_write_eeprom_info();
226 lasat_init_board_info();
227 }
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200228 return 0;
229}
230
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100231int proc_lasat_prid(ctl_table *table, int write, struct file *filp,
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200232 void *buffer, size_t *lenp, loff_t *ppos)
233{
234 int r;
235
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200236 r = proc_dointvec(table, write, filp, buffer, lenp, ppos);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100237 if (r < 0)
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200238 return r;
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100239 if (write) {
240 lasat_board_info.li_eeprom_info.prid =
241 lasat_board_info.li_prid;
242 lasat_write_eeprom_info();
243 lasat_init_board_info();
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200244 }
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200245 return 0;
246}
247
248extern int lasat_boot_to_service;
249
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200250static ctl_table lasat_table[] = {
251 {
252 .ctl_name = CTL_UNNUMBERED,
253 .procname = "cpu-hz",
254 .data = &lasat_board_info.li_cpu_hz,
255 .maxlen = sizeof(int),
256 .mode = 0444,
257 .proc_handler = &proc_dointvec,
258 .strategy = &sysctl_intvec
259 },
260 {
261 .ctl_name = CTL_UNNUMBERED,
262 .procname = "bus-hz",
263 .data = &lasat_board_info.li_bus_hz,
264 .maxlen = sizeof(int),
265 .mode = 0444,
266 .proc_handler = &proc_dointvec,
267 .strategy = &sysctl_intvec
268 },
269 {
270 .ctl_name = CTL_UNNUMBERED,
271 .procname = "bmid",
272 .data = &lasat_board_info.li_bmid,
273 .maxlen = sizeof(int),
274 .mode = 0444,
275 .proc_handler = &proc_dointvec,
276 .strategy = &sysctl_intvec
277 },
278 {
279 .ctl_name = CTL_UNNUMBERED,
280 .procname = "prid",
281 .data = &lasat_board_info.li_prid,
282 .maxlen = sizeof(int),
283 .mode = 0644,
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100284 .proc_handler = &proc_lasat_prid,
285 .strategy = &sysctl_lasat_prid
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200286 },
287#ifdef CONFIG_INET
288 {
289 .ctl_name = CTL_UNNUMBERED,
290 .procname = "ipaddr",
291 .data = &lasat_board_info.li_eeprom_info.ipaddr,
292 .maxlen = sizeof(int),
293 .mode = 0644,
294 .proc_handler = &proc_lasat_ip,
295 .strategy = &sysctl_lasat_intvec
296 },
297 {
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100298 .ctl_name = CTL_UNNUMBERED,
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200299 .procname = "netmask",
300 .data = &lasat_board_info.li_eeprom_info.netmask,
301 .maxlen = sizeof(int),
302 .mode = 0644,
303 .proc_handler = &proc_lasat_ip,
304 .strategy = &sysctl_lasat_intvec
305 },
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200306#endif
307 {
308 .ctl_name = CTL_UNNUMBERED,
309 .procname = "passwd_hash",
310 .data = &lasat_board_info.li_eeprom_info.passwd_hash,
311 .maxlen =
312 sizeof(lasat_board_info.li_eeprom_info.passwd_hash),
313 .mode = 0600,
314 .proc_handler = &proc_dolasatstring,
315 .strategy = &sysctl_lasatstring
316 },
317 {
318 .ctl_name = CTL_UNNUMBERED,
319 .procname = "boot-service",
320 .data = &lasat_boot_to_service,
321 .maxlen = sizeof(int),
322 .mode = 0644,
323 .proc_handler = &proc_dointvec,
324 .strategy = &sysctl_intvec
325 },
326#ifdef CONFIG_DS1603
327 {
328 .ctl_name = CTL_UNNUMBERED,
329 .procname = "rtc",
330 .data = &rtctmp,
331 .maxlen = sizeof(int),
332 .mode = 0644,
333 .proc_handler = &proc_dolasatrtc,
334 .strategy = &sysctl_lasat_rtc
335 },
336#endif
337 {
338 .ctl_name = CTL_UNNUMBERED,
339 .procname = "namestr",
340 .data = &lasat_board_info.li_namestr,
341 .maxlen = sizeof(lasat_board_info.li_namestr),
342 .mode = 0444,
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100343 .proc_handler = &proc_dostring,
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200344 .strategy = &sysctl_string
345 },
346 {
347 .ctl_name = CTL_UNNUMBERED,
348 .procname = "typestr",
349 .data = &lasat_board_info.li_typestr,
350 .maxlen = sizeof(lasat_board_info.li_typestr),
351 .mode = 0444,
352 .proc_handler = &proc_dostring,
353 .strategy = &sysctl_string
354 },
355 {}
356};
357
358static ctl_table lasat_root_table[] = {
359 {
360 .ctl_name = CTL_UNNUMBERED,
361 .procname = "lasat",
362 .mode = 0555,
363 .child = lasat_table
364 },
365 {}
366};
367
368static int __init lasat_register_sysctl(void)
369{
370 struct ctl_table_header *lasat_table_header;
371
372 lasat_table_header =
373 register_sysctl_table(lasat_root_table);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100374 if (!lasat_table_header) {
375 printk(KERN_ERR "Unable to register LASAT sysctl\n");
376 return -ENOMEM;
377 }
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200378
379 return 0;
380}
381
382__initcall(lasat_register_sysctl);