Add MC/R700A, MC/R730, and MC/R730A vrc4172pwm flags.

Addresses PR/23653.
This commit is contained in:
shin 2003-12-27 07:29:56 +00:00
parent 1316c9944d
commit 26ccb9c6d2
3 changed files with 14 additions and 6 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: GENERIC,v 1.142 2003/10/25 13:21:13 simonb Exp $
# $NetBSD: GENERIC,v 1.143 2003/12/27 07:29:56 shin Exp $
#
# GENERIC machine description file
#
@ -24,7 +24,7 @@ include "arch/hpcmips/conf/std.hpcmips.tx39"
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
#ident "GENERIC-$Revision: 1.142 $"
#ident "GENERIC-$Revision: 1.143 $"
maxusers 16
@ -153,6 +153,9 @@ vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_530
vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_SIGMARION
vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_530A
vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_700
vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_700A
vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_730
vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_730A
#
# hpcmips isa? bus irq locator means:

View File

@ -1,4 +1,4 @@
# $NetBSD: VR41XX,v 1.15 2003/10/18 08:30:14 lukem Exp $
# $NetBSD: VR41XX,v 1.16 2003/12/27 07:29:56 shin Exp $
#
# GENERIC machine description file
#
@ -20,7 +20,7 @@
include "arch/hpcmips/conf/std.hpcmips"
include "arch/hpcmips/conf/std.hpcmips.vr41"
#ident "GENERIC-$Revision: 1.15 $"
#ident "GENERIC-$Revision: 1.16 $"
#options INCLUDE_CONFIG_FILE # embed config file in kernel binary
@ -146,6 +146,9 @@ vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_530
vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_SIGMARION
vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_530A
vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_700
vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_700A
vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_730
vrc4172pwm* at vr4102ip? addr 0x15003880 size 0x6 platform NEC_MCR_730A
# Workstation Console attachments
bivideo0 at mainbus0

View File

@ -1,4 +1,4 @@
/* $NetBSD: vrc4172pwm.c,v 1.18 2003/07/15 02:29:35 lukem Exp $ */
/* $NetBSD: vrc4172pwm.c,v 1.19 2003/12/27 07:29:56 shin Exp $ */
/*
* Copyright (c) 2000,2001 SATO Kazumi. All rights reserved.
@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: vrc4172pwm.c,v 1.18 2003/07/15 02:29:35 lukem Exp $");
__KERNEL_RCSID(0, "$NetBSD: vrc4172pwm.c,v 1.19 2003/12/27 07:29:56 shin Exp $");
#include <sys/param.h>
#include <sys/systm.h>
@ -120,6 +120,8 @@ struct platid_data vrc4172pwm_platid_param_table[] = {
{ &platid_mask_MACH_NEC_MCR_SIGMARION, &vrc4172pwm_sigmarion_param},
{ &platid_mask_MACH_NEC_MCR_700, &vrc4172pwm_mcr700_param},
{ &platid_mask_MACH_NEC_MCR_700A, &vrc4172pwm_mcr700_param},
{ &platid_mask_MACH_NEC_MCR_730, &vrc4172pwm_mcr700_param},
{ &platid_mask_MACH_NEC_MCR_730A, &vrc4172pwm_mcr700_param},
{ NULL, NULL}
};