bfaf245022
Pull MIPS updates from Ralf Baechle: "This is the main pull request for MIPS for Linux 4.1. Most noteworthy: - Add more Octeon-optimized crypto functions - Octeon crypto preemption and locking fixes - Little endian support for Octeon - Use correct CSR to soft reset Octeons - Support LEDs on the Octeon-based DSR-1000N - Fix PCI interrupt mapping for the Octeon-based DSR-1000N - Mark prom_free_prom_memory() as __init for a number of systems - Support for Imagination's Pistachio SOC. This includes arch and CLK bits. I'd like to merge pinctrl bits later - Improve parallelism of csum_partial for certain pipelines - Organize DTB files in subdirs like other architectures - Implement read_sched_clock for all MIPS platforms other than Octeon - Massive series of 38 fixes and cleanups for the FPU emulator / kernel - Further FPU remulator work to support new features. This sits on a separate branch which also has been pulled into the 4.1 KVM branch - Clean up and fixes for the SEAD3 eval board; remove unused file - Various updates for Netlogic platforms - A number of small updates for Loongson 3 platforms - Increase the memory limit for ATH79 platforms to 256MB - A fair number of fixes and updates for BCM47xx platforms - Finish the implementation of XPA support - MIPS FDC support. No, not floppy controller but Fast Debug Channel :) - Detect the R16000 used in SGI legacy platforms - Fix Kconfig dependencies for the SSB bus support" * 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus: (265 commits) MIPS: Makefile: Fix MIPS ASE detection code MIPS: asm: elf: Set O32 default FPU flags MIPS: BCM47XX: Fix detecting Microsoft MN-700 & Asus WL500G MIPS: Kconfig: Disable SMP/CPS for 64-bit MIPS: Hibernate: flush TLB entries earlier MIPS: smp-cps: cpu_set FPU mask if FPU present MIPS: lose_fpu(): Disable FPU when MSA enabled MIPS: ralink: add missing symbol for RALINK_ILL_ACC MIPS: ralink: Fix bad config symbol in PCI makefile. SSB: fix Kconfig dependencies MIPS: Malta: Detect and fix bad memsize values Revert "MIPS: Avoid pipeline stalls on some MIPS32R2 cores." MIPS: Octeon: Delete override of cpu_has_mips_r2_exec_hazard. MIPS: Fix cpu_has_mips_r2_exec_hazard. MIPS: kernel: entry.S: Set correct ISA level for mips_ihb MIPS: asm: spinlock: Fix addiu instruction for R10000_LLSC_WAR case MIPS: r4kcache: Use correct base register for MIPS R6 cache flushes MIPS: Kconfig: Fix typo for the r2-to-r6 emulator kernel parameter MIPS: unaligned: Fix regular load/store instruction emulation for EVA MIPS: unaligned: Surround load/store macros in do {} while statements ...
274 lines
5.7 KiB
C
274 lines
5.7 KiB
C
/*
|
|
* Thomas Horsten <thh@lasat.com>
|
|
* Copyright (C) 2000 LASAT Networks A/S.
|
|
*
|
|
* This program is free software; you can distribute it and/or modify it
|
|
* under the terms of the GNU General Public License (Version 2) as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
|
|
*
|
|
* Routines specific to the LASAT boards
|
|
*/
|
|
#include <linux/types.h>
|
|
#include <asm/lasat/lasat.h>
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/sysctl.h>
|
|
#include <linux/stddef.h>
|
|
#include <linux/init.h>
|
|
#include <linux/fs.h>
|
|
#include <linux/ctype.h>
|
|
#include <linux/string.h>
|
|
#include <linux/net.h>
|
|
#include <linux/inet.h>
|
|
#include <linux/uaccess.h>
|
|
|
|
#include <asm/time.h>
|
|
|
|
#ifdef CONFIG_DS1603
|
|
#include "ds1603.h"
|
|
#endif
|
|
|
|
|
|
/* And the same for proc */
|
|
int proc_dolasatstring(struct ctl_table *table, int write,
|
|
void *buffer, size_t *lenp, loff_t *ppos)
|
|
{
|
|
int r;
|
|
|
|
r = proc_dostring(table, write, buffer, lenp, ppos);
|
|
if ((!write) || r)
|
|
return r;
|
|
|
|
lasat_write_eeprom_info();
|
|
|
|
return 0;
|
|
}
|
|
|
|
#ifdef CONFIG_DS1603
|
|
static int rtctmp;
|
|
|
|
/* proc function to read/write RealTime Clock */
|
|
int proc_dolasatrtc(struct ctl_table *table, int write,
|
|
void *buffer, size_t *lenp, loff_t *ppos)
|
|
{
|
|
struct timespec64 ts;
|
|
int r;
|
|
|
|
if (!write) {
|
|
read_persistent_clock64(&ts);
|
|
rtctmp = ts.tv_sec;
|
|
/* check for time < 0 and set to 0 */
|
|
if (rtctmp < 0)
|
|
rtctmp = 0;
|
|
}
|
|
r = proc_dointvec(table, write, buffer, lenp, ppos);
|
|
if (r)
|
|
return r;
|
|
|
|
if (write)
|
|
rtc_mips_set_mmss(rtctmp);
|
|
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_INET
|
|
int proc_lasat_ip(struct ctl_table *table, int write,
|
|
void *buffer, size_t *lenp, loff_t *ppos)
|
|
{
|
|
unsigned int ip;
|
|
char *p, c;
|
|
int len;
|
|
char ipbuf[32];
|
|
|
|
if (!table->data || !table->maxlen || !*lenp ||
|
|
(*ppos && !write)) {
|
|
*lenp = 0;
|
|
return 0;
|
|
}
|
|
|
|
if (write) {
|
|
len = 0;
|
|
p = buffer;
|
|
while (len < *lenp) {
|
|
if (get_user(c, p++))
|
|
return -EFAULT;
|
|
if (c == 0 || c == '\n')
|
|
break;
|
|
len++;
|
|
}
|
|
if (len >= sizeof(ipbuf)-1)
|
|
len = sizeof(ipbuf) - 1;
|
|
if (copy_from_user(ipbuf, buffer, len))
|
|
return -EFAULT;
|
|
ipbuf[len] = 0;
|
|
*ppos += *lenp;
|
|
/* Now see if we can convert it to a valid IP */
|
|
ip = in_aton(ipbuf);
|
|
*(unsigned int *)(table->data) = ip;
|
|
lasat_write_eeprom_info();
|
|
} else {
|
|
ip = *(unsigned int *)(table->data);
|
|
sprintf(ipbuf, "%d.%d.%d.%d",
|
|
(ip) & 0xff,
|
|
(ip >> 8) & 0xff,
|
|
(ip >> 16) & 0xff,
|
|
(ip >> 24) & 0xff);
|
|
len = strlen(ipbuf);
|
|
if (len > *lenp)
|
|
len = *lenp;
|
|
if (len)
|
|
if (copy_to_user(buffer, ipbuf, len))
|
|
return -EFAULT;
|
|
if (len < *lenp) {
|
|
if (put_user('\n', ((char *) buffer) + len))
|
|
return -EFAULT;
|
|
len++;
|
|
}
|
|
*lenp = len;
|
|
*ppos += len;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
int proc_lasat_prid(struct ctl_table *table, int write,
|
|
void *buffer, size_t *lenp, loff_t *ppos)
|
|
{
|
|
int r;
|
|
|
|
r = proc_dointvec(table, write, buffer, lenp, ppos);
|
|
if (r < 0)
|
|
return r;
|
|
if (write) {
|
|
lasat_board_info.li_eeprom_info.prid =
|
|
lasat_board_info.li_prid;
|
|
lasat_write_eeprom_info();
|
|
lasat_init_board_info();
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
extern int lasat_boot_to_service;
|
|
|
|
static struct ctl_table lasat_table[] = {
|
|
{
|
|
.procname = "cpu-hz",
|
|
.data = &lasat_board_info.li_cpu_hz,
|
|
.maxlen = sizeof(int),
|
|
.mode = 0444,
|
|
.proc_handler = proc_dointvec,
|
|
},
|
|
{
|
|
.procname = "bus-hz",
|
|
.data = &lasat_board_info.li_bus_hz,
|
|
.maxlen = sizeof(int),
|
|
.mode = 0444,
|
|
.proc_handler = proc_dointvec,
|
|
},
|
|
{
|
|
.procname = "bmid",
|
|
.data = &lasat_board_info.li_bmid,
|
|
.maxlen = sizeof(int),
|
|
.mode = 0444,
|
|
.proc_handler = proc_dointvec,
|
|
},
|
|
{
|
|
.procname = "prid",
|
|
.data = &lasat_board_info.li_prid,
|
|
.maxlen = sizeof(int),
|
|
.mode = 0644,
|
|
.proc_handler = proc_lasat_prid,
|
|
},
|
|
#ifdef CONFIG_INET
|
|
{
|
|
.procname = "ipaddr",
|
|
.data = &lasat_board_info.li_eeprom_info.ipaddr,
|
|
.maxlen = sizeof(int),
|
|
.mode = 0644,
|
|
.proc_handler = proc_lasat_ip,
|
|
},
|
|
{
|
|
.procname = "netmask",
|
|
.data = &lasat_board_info.li_eeprom_info.netmask,
|
|
.maxlen = sizeof(int),
|
|
.mode = 0644,
|
|
.proc_handler = proc_lasat_ip,
|
|
},
|
|
#endif
|
|
{
|
|
.procname = "passwd_hash",
|
|
.data = &lasat_board_info.li_eeprom_info.passwd_hash,
|
|
.maxlen =
|
|
sizeof(lasat_board_info.li_eeprom_info.passwd_hash),
|
|
.mode = 0600,
|
|
.proc_handler = proc_dolasatstring,
|
|
},
|
|
{
|
|
.procname = "boot-service",
|
|
.data = &lasat_boot_to_service,
|
|
.maxlen = sizeof(int),
|
|
.mode = 0644,
|
|
.proc_handler = proc_dointvec,
|
|
},
|
|
#ifdef CONFIG_DS1603
|
|
{
|
|
.procname = "rtc",
|
|
.data = &rtctmp,
|
|
.maxlen = sizeof(int),
|
|
.mode = 0644,
|
|
.proc_handler = proc_dolasatrtc,
|
|
},
|
|
#endif
|
|
{
|
|
.procname = "namestr",
|
|
.data = &lasat_board_info.li_namestr,
|
|
.maxlen = sizeof(lasat_board_info.li_namestr),
|
|
.mode = 0444,
|
|
.proc_handler = proc_dostring,
|
|
},
|
|
{
|
|
.procname = "typestr",
|
|
.data = &lasat_board_info.li_typestr,
|
|
.maxlen = sizeof(lasat_board_info.li_typestr),
|
|
.mode = 0444,
|
|
.proc_handler = proc_dostring,
|
|
},
|
|
{}
|
|
};
|
|
|
|
static struct ctl_table lasat_root_table[] = {
|
|
{
|
|
.procname = "lasat",
|
|
.mode = 0555,
|
|
.child = lasat_table
|
|
},
|
|
{}
|
|
};
|
|
|
|
static int __init lasat_register_sysctl(void)
|
|
{
|
|
struct ctl_table_header *lasat_table_header;
|
|
|
|
lasat_table_header =
|
|
register_sysctl_table(lasat_root_table);
|
|
if (!lasat_table_header) {
|
|
printk(KERN_ERR "Unable to register LASAT sysctl\n");
|
|
return -ENOMEM;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
__initcall(lasat_register_sysctl);
|