blob: 3f04d4c406b75f397f8c568a730bbcdf118f33f2 [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 */
Alexey Dobriyanf221e722008-10-15 22:04:23 -070041int sysctl_lasatstring(ctl_table *table,
Brian Murphy1f21d2b2007-08-21 22:34:16 +020042 void *oldval, size_t *oldlenp,
43 void *newval, size_t newlen)
44{
45 int r;
46
Alexey Dobriyanf221e722008-10-15 22:04:23 -070047 r = sysctl_string(table, oldval, oldlenp, newval, newlen);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +010048 if (r < 0)
Brian Murphy1f21d2b2007-08-21 22:34:16 +020049 return r;
Thomas Horsten1f34f2e2008-06-15 02:17:11 +010050
Brian Murphy1f21d2b2007-08-21 22:34:16 +020051 if (newval && newlen)
52 lasat_write_eeprom_info();
Brian Murphy1f21d2b2007-08-21 22:34:16 +020053
Thomas Horsten1f34f2e2008-06-15 02:17:11 +010054 return 0;
Brian Murphy1f21d2b2007-08-21 22:34:16 +020055}
56
57
58/* And the same for proc */
59int proc_dolasatstring(ctl_table *table, int write, struct file *filp,
60 void *buffer, size_t *lenp, loff_t *ppos)
61{
62 int r;
63
Brian Murphy1f21d2b2007-08-21 22:34:16 +020064 r = proc_dostring(table, write, filp, buffer, lenp, ppos);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +010065 if ((!write) || r)
Brian Murphy1f21d2b2007-08-21 22:34:16 +020066 return r;
Thomas Horsten1f34f2e2008-06-15 02:17:11 +010067
Brian Murphy1f21d2b2007-08-21 22:34:16 +020068 lasat_write_eeprom_info();
Brian Murphy1f21d2b2007-08-21 22:34:16 +020069
70 return 0;
71}
72
73/* proc function to write EEPROM after changing int entry */
74int proc_dolasatint(ctl_table *table, int write, struct file *filp,
75 void *buffer, size_t *lenp, loff_t *ppos)
76{
77 int r;
78
Brian Murphy1f21d2b2007-08-21 22:34:16 +020079 r = proc_dointvec(table, write, filp, buffer, lenp, ppos);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +010080 if ((!write) || r)
Brian Murphy1f21d2b2007-08-21 22:34:16 +020081 return r;
Thomas Horsten1f34f2e2008-06-15 02:17:11 +010082
Brian Murphy1f21d2b2007-08-21 22:34:16 +020083 lasat_write_eeprom_info();
Brian Murphy1f21d2b2007-08-21 22:34:16 +020084
85 return 0;
86}
87
Thomas Horsten1f34f2e2008-06-15 02:17:11 +010088#ifdef CONFIG_DS1603
Brian Murphy1f21d2b2007-08-21 22:34:16 +020089static int rtctmp;
90
Brian Murphy1f21d2b2007-08-21 22:34:16 +020091/* proc function to read/write RealTime Clock */
92int proc_dolasatrtc(ctl_table *table, int write, struct file *filp,
93 void *buffer, size_t *lenp, loff_t *ppos)
94{
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +020095 struct timespec ts;
Brian Murphy1f21d2b2007-08-21 22:34:16 +020096 int r;
97
Brian Murphy1f21d2b2007-08-21 22:34:16 +020098 if (!write) {
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +020099 read_persistent_clock(&ts);
100 rtctmp = ts.tv_sec;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200101 /* check for time < 0 and set to 0 */
102 if (rtctmp < 0)
103 rtctmp = 0;
104 }
105 r = proc_dointvec(table, write, filp, buffer, lenp, ppos);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100106 if (r)
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200107 return r;
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100108
109 if (write)
110 rtc_mips_set_mmss(rtctmp);
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200111
112 return 0;
113}
114#endif
115
116/* Sysctl for setting the IP addresses */
Alexey Dobriyanf221e722008-10-15 22:04:23 -0700117int sysctl_lasat_intvec(ctl_table *table,
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200118 void *oldval, size_t *oldlenp,
119 void *newval, size_t newlen)
120{
121 int r;
122
Alexey Dobriyanf221e722008-10-15 22:04:23 -0700123 r = sysctl_intvec(table, oldval, oldlenp, newval, newlen);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100124 if (r < 0)
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200125 return r;
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100126
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200127 if (newval && newlen)
128 lasat_write_eeprom_info();
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200129
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100130 return 0;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200131}
132
133#ifdef CONFIG_DS1603
134/* Same for RTC */
Alexey Dobriyanf221e722008-10-15 22:04:23 -0700135int sysctl_lasat_rtc(ctl_table *table,
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200136 void *oldval, size_t *oldlenp,
137 void *newval, size_t newlen)
138{
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200139 struct timespec ts;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200140 int r;
141
Martin Schwidefskyd4f587c2009-08-14 15:47:31 +0200142 read_persistent_clock(&ts);
143 rtctmp = ts.tv_sec;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200144 if (rtctmp < 0)
145 rtctmp = 0;
Alexey Dobriyanf221e722008-10-15 22:04:23 -0700146 r = sysctl_intvec(table, oldval, oldlenp, newval, newlen);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100147 if (r < 0)
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200148 return r;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200149 if (newval && newlen)
Ralf Baechle4b550482007-10-11 23:46:08 +0100150 rtc_mips_set_mmss(rtctmp);
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200151
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100152 return r;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200153}
154#endif
155
156#ifdef CONFIG_INET
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200157int proc_lasat_ip(ctl_table *table, int write, struct file *filp,
158 void *buffer, size_t *lenp, loff_t *ppos)
159{
160 unsigned int ip;
161 char *p, c;
162 int len;
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100163 char ipbuf[32];
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200164
165 if (!table->data || !table->maxlen || !*lenp ||
166 (*ppos && !write)) {
167 *lenp = 0;
168 return 0;
169 }
170
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200171 if (write) {
172 len = 0;
173 p = buffer;
174 while (len < *lenp) {
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100175 if (get_user(c, p++))
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200176 return -EFAULT;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200177 if (c == 0 || c == '\n')
178 break;
179 len++;
180 }
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100181 if (len >= sizeof(ipbuf)-1)
182 len = sizeof(ipbuf) - 1;
183 if (copy_from_user(ipbuf, buffer, len))
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200184 return -EFAULT;
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100185 ipbuf[len] = 0;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200186 *ppos += *lenp;
187 /* Now see if we can convert it to a valid IP */
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100188 ip = in_aton(ipbuf);
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200189 *(unsigned int *)(table->data) = ip;
190 lasat_write_eeprom_info();
191 } else {
192 ip = *(unsigned int *)(table->data);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100193 sprintf(ipbuf, "%d.%d.%d.%d",
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200194 (ip) & 0xff,
195 (ip >> 8) & 0xff,
196 (ip >> 16) & 0xff,
197 (ip >> 24) & 0xff);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100198 len = strlen(ipbuf);
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200199 if (len > *lenp)
200 len = *lenp;
201 if (len)
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100202 if (copy_to_user(buffer, ipbuf, len))
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200203 return -EFAULT;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200204 if (len < *lenp) {
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100205 if (put_user('\n', ((char *) buffer) + len))
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200206 return -EFAULT;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200207 len++;
208 }
209 *lenp = len;
210 *ppos += len;
211 }
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200212
213 return 0;
214}
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100215#endif
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200216
Alexey Dobriyanf221e722008-10-15 22:04:23 -0700217static int sysctl_lasat_prid(ctl_table *table,
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200218 void *oldval, size_t *oldlenp,
219 void *newval, size_t newlen)
220{
221 int r;
222
Alexey Dobriyanf221e722008-10-15 22:04:23 -0700223 r = sysctl_intvec(table, oldval, oldlenp, newval, newlen);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100224 if (r < 0)
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200225 return r;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200226 if (newval && newlen) {
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100227 lasat_board_info.li_eeprom_info.prid = *(int *)newval;
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200228 lasat_write_eeprom_info();
229 lasat_init_board_info();
230 }
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200231 return 0;
232}
233
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100234int proc_lasat_prid(ctl_table *table, int write, struct file *filp,
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200235 void *buffer, size_t *lenp, loff_t *ppos)
236{
237 int r;
238
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200239 r = proc_dointvec(table, write, filp, buffer, lenp, ppos);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100240 if (r < 0)
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200241 return r;
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100242 if (write) {
243 lasat_board_info.li_eeprom_info.prid =
244 lasat_board_info.li_prid;
245 lasat_write_eeprom_info();
246 lasat_init_board_info();
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200247 }
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200248 return 0;
249}
250
251extern int lasat_boot_to_service;
252
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200253static ctl_table lasat_table[] = {
254 {
255 .ctl_name = CTL_UNNUMBERED,
256 .procname = "cpu-hz",
257 .data = &lasat_board_info.li_cpu_hz,
258 .maxlen = sizeof(int),
259 .mode = 0444,
260 .proc_handler = &proc_dointvec,
261 .strategy = &sysctl_intvec
262 },
263 {
264 .ctl_name = CTL_UNNUMBERED,
265 .procname = "bus-hz",
266 .data = &lasat_board_info.li_bus_hz,
267 .maxlen = sizeof(int),
268 .mode = 0444,
269 .proc_handler = &proc_dointvec,
270 .strategy = &sysctl_intvec
271 },
272 {
273 .ctl_name = CTL_UNNUMBERED,
274 .procname = "bmid",
275 .data = &lasat_board_info.li_bmid,
276 .maxlen = sizeof(int),
277 .mode = 0444,
278 .proc_handler = &proc_dointvec,
279 .strategy = &sysctl_intvec
280 },
281 {
282 .ctl_name = CTL_UNNUMBERED,
283 .procname = "prid",
284 .data = &lasat_board_info.li_prid,
285 .maxlen = sizeof(int),
286 .mode = 0644,
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100287 .proc_handler = &proc_lasat_prid,
288 .strategy = &sysctl_lasat_prid
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200289 },
290#ifdef CONFIG_INET
291 {
292 .ctl_name = CTL_UNNUMBERED,
293 .procname = "ipaddr",
294 .data = &lasat_board_info.li_eeprom_info.ipaddr,
295 .maxlen = sizeof(int),
296 .mode = 0644,
297 .proc_handler = &proc_lasat_ip,
298 .strategy = &sysctl_lasat_intvec
299 },
300 {
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100301 .ctl_name = CTL_UNNUMBERED,
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200302 .procname = "netmask",
303 .data = &lasat_board_info.li_eeprom_info.netmask,
304 .maxlen = sizeof(int),
305 .mode = 0644,
306 .proc_handler = &proc_lasat_ip,
307 .strategy = &sysctl_lasat_intvec
308 },
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200309#endif
310 {
311 .ctl_name = CTL_UNNUMBERED,
312 .procname = "passwd_hash",
313 .data = &lasat_board_info.li_eeprom_info.passwd_hash,
314 .maxlen =
315 sizeof(lasat_board_info.li_eeprom_info.passwd_hash),
316 .mode = 0600,
317 .proc_handler = &proc_dolasatstring,
318 .strategy = &sysctl_lasatstring
319 },
320 {
321 .ctl_name = CTL_UNNUMBERED,
322 .procname = "boot-service",
323 .data = &lasat_boot_to_service,
324 .maxlen = sizeof(int),
325 .mode = 0644,
326 .proc_handler = &proc_dointvec,
327 .strategy = &sysctl_intvec
328 },
329#ifdef CONFIG_DS1603
330 {
331 .ctl_name = CTL_UNNUMBERED,
332 .procname = "rtc",
333 .data = &rtctmp,
334 .maxlen = sizeof(int),
335 .mode = 0644,
336 .proc_handler = &proc_dolasatrtc,
337 .strategy = &sysctl_lasat_rtc
338 },
339#endif
340 {
341 .ctl_name = CTL_UNNUMBERED,
342 .procname = "namestr",
343 .data = &lasat_board_info.li_namestr,
344 .maxlen = sizeof(lasat_board_info.li_namestr),
345 .mode = 0444,
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100346 .proc_handler = &proc_dostring,
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200347 .strategy = &sysctl_string
348 },
349 {
350 .ctl_name = CTL_UNNUMBERED,
351 .procname = "typestr",
352 .data = &lasat_board_info.li_typestr,
353 .maxlen = sizeof(lasat_board_info.li_typestr),
354 .mode = 0444,
355 .proc_handler = &proc_dostring,
356 .strategy = &sysctl_string
357 },
358 {}
359};
360
361static ctl_table lasat_root_table[] = {
362 {
363 .ctl_name = CTL_UNNUMBERED,
364 .procname = "lasat",
365 .mode = 0555,
366 .child = lasat_table
367 },
368 {}
369};
370
371static int __init lasat_register_sysctl(void)
372{
373 struct ctl_table_header *lasat_table_header;
374
375 lasat_table_header =
376 register_sysctl_table(lasat_root_table);
Thomas Horsten1f34f2e2008-06-15 02:17:11 +0100377 if (!lasat_table_header) {
378 printk(KERN_ERR "Unable to register LASAT sysctl\n");
379 return -ENOMEM;
380 }
Brian Murphy1f21d2b2007-08-21 22:34:16 +0200381
382 return 0;
383}
384
385__initcall(lasat_register_sysctl);