initial cut at stuff for the dell 350 superio
This commit is contained in:
parent
bd557f33aa
commit
a91933103e
2 changed files with 281 additions and 0 deletions
94
src/superio/SMC/fdc37b807/setup_serial.inc
Normal file
94
src/superio/SMC/fdc37b807/setup_serial.inc
Normal file
|
|
@ -0,0 +1,94 @@
|
|||
/*
|
||||
* Enable the peripheral devices on the FDC37N769 Super IO chip
|
||||
*/
|
||||
|
||||
/*
|
||||
* This code is untested but should at least get a serial port working.
|
||||
* -Tyson
|
||||
*/
|
||||
|
||||
/* The base address is either 0x3F0 or 0x370, depending on config pin */
|
||||
|
||||
#ifndef SMC_BASE
|
||||
#error SMC_BASE must be defined as 0x3F0 or 0x370
|
||||
#endif
|
||||
|
||||
#if (SMC_BASE == 0x370)
|
||||
/* #warning SMC_BASE set to 0x370 */
|
||||
#elif (SMC_BASE == 0x3f0)
|
||||
/* #warning SMC_BASE set to 0x3f0 */
|
||||
#else
|
||||
#error SMC_BASE defined as other than 0x3F0 or 0x370
|
||||
#endif
|
||||
|
||||
#define SMC_INDEX SMC_BASE
|
||||
#define SMC_DATA SMC_BASE+1
|
||||
|
||||
#define SMC_READ(index) \
|
||||
mov index, %al ; \
|
||||
mov $SMC_BASE, %dx ; \
|
||||
outb %al, %dx ; \
|
||||
inc %dx ; \
|
||||
inb %dx, %al ;
|
||||
|
||||
#define SMC_WRITE(data, index) \
|
||||
mov data, %ah ; \
|
||||
mov index, %al ; \
|
||||
mov $SMC_BASE, %dx ; \
|
||||
outb %al, %dx ; \
|
||||
inc %dx ; \
|
||||
mov %ah, %al ; \
|
||||
outb %al, %dx ;
|
||||
|
||||
|
||||
/* Enter the configuration state */
|
||||
|
||||
mov $0x55, %al
|
||||
mov $SMC_BASE, %dx
|
||||
outb %al, %dx
|
||||
|
||||
/* Check for Device ID */
|
||||
|
||||
SMC_READ($0x0d)
|
||||
cmp %al, 0x28
|
||||
je 2f
|
||||
mov $0xfe, %al
|
||||
outb %al, $0x80
|
||||
#if 0
|
||||
1: hlt
|
||||
jmp 1b
|
||||
#endif
|
||||
2:
|
||||
|
||||
/* Pin configuration - need to enable IRQ 4 output */
|
||||
|
||||
SMC_WRITE($0xf4, $0x03) ;
|
||||
|
||||
/* Set address of parallel port */
|
||||
#if 0
|
||||
SMC_WRITE($0xde, $0x23) ;
|
||||
#endif
|
||||
/* Set address of serial port 0 */
|
||||
|
||||
SMC_WRITE($0xfe, $0x24) ;
|
||||
|
||||
/* Set address of serial port 1 */
|
||||
|
||||
SMC_WRITE($0xbe, $0x25) ;
|
||||
|
||||
/* Set IRQs of serial ports */
|
||||
|
||||
SMC_WRITE($0x21, $0x28) ;
|
||||
|
||||
/* Set valid bit */
|
||||
|
||||
SMC_READ($0x00)
|
||||
or $0x80, %al
|
||||
SMC_WRITE(%al, $0x00)
|
||||
|
||||
/* Exit the configuration state */
|
||||
|
||||
mov $0xAA, %al
|
||||
mov $SMC_BASE, %dx
|
||||
outb %al, %dx
|
||||
|
||||
187
src/superio/SMC/fdc37b807/superio.c
Normal file
187
src/superio/SMC/fdc37b807/superio.c
Normal file
|
|
@ -0,0 +1,187 @@
|
|||
#include <subr.h>
|
||||
#include <cpu/p5/io.h>
|
||||
|
||||
/*
|
||||
* This file is for setting up the SMC Super IO chip.
|
||||
*
|
||||
* This file contains some hard coded mappings for IRQs which may
|
||||
* work for most boards but is really board specific. A
|
||||
* configuration mechanism is needed.
|
||||
*
|
||||
* I have only implemented the UART features that I needed at
|
||||
* the time plus enableing EPP mode to get interrupts that can
|
||||
* be shared. Other features for floppies and parallel ports
|
||||
* can be added by others as needed.
|
||||
*
|
||||
* -Tyson Sawyer tyson@rwii.com
|
||||
*
|
||||
* Sharing interrupts between two SMC chips doesn't work for me. -tds
|
||||
* modified by RGM for the new superio setup.
|
||||
* we need to finish this up but we have to get other parts of the
|
||||
* dell done first.
|
||||
*/
|
||||
|
||||
static int
|
||||
smc_configuration_state(struct superio *s, int state)
|
||||
{
|
||||
unsigned char addr;
|
||||
addr = s->port;
|
||||
if (state) {
|
||||
outb(0x55, addr);
|
||||
return(0);
|
||||
}
|
||||
else {
|
||||
outb(0xAA, addr);
|
||||
return(0);
|
||||
}
|
||||
|
||||
return(-1);
|
||||
}
|
||||
|
||||
static int smc_write(struct superio *s, unsigned char data,
|
||||
unsigned char index) {
|
||||
unsigned char addr;
|
||||
addr = s->port;
|
||||
outb(index, addr);
|
||||
outb(data, addr+1);
|
||||
return(0);
|
||||
}
|
||||
|
||||
static int smc_read(struct superio *s,
|
||||
unsigned char index, unsigned char *data) {
|
||||
unsigned char addr;
|
||||
addr = s->port;
|
||||
if ((addr!=0x370) && (addr!=0x3f0)) return(-1);
|
||||
|
||||
outb(index, addr);
|
||||
*data = inb(addr+1);
|
||||
return(0);
|
||||
}
|
||||
|
||||
static int smc_uart_setup(struct superio *s,
|
||||
int addr1, int irq1,
|
||||
int addr2, int irq2) {
|
||||
unsigned char addr = s->port;
|
||||
int rv;
|
||||
unsigned char int1, int2;
|
||||
unsigned char data;
|
||||
|
||||
|
||||
/*
|
||||
* Warning:
|
||||
* Board specifc mapping of IRQs here.
|
||||
* A configuration mechanism is needed.
|
||||
*/
|
||||
|
||||
switch (irq1) {
|
||||
case 3: int1 = 1; break;
|
||||
case 4: int1 = 2; break;
|
||||
case 5: int1 = 3; break;
|
||||
case 6: int1 = 4; break;
|
||||
case 7: int1 = 5; break;
|
||||
case 10: int1 = 6; break;
|
||||
case 11: int1 = 8; break;
|
||||
default: int1 = 0;
|
||||
}
|
||||
|
||||
switch (irq2) {
|
||||
case 3: int2 = 1; break;
|
||||
case 4: int2 = 2; break;
|
||||
case 5: int2 = 3; break;
|
||||
case 6: int2 = 4; break;
|
||||
case 7: int2 = 5; break;
|
||||
case 10: int2 = 6; break;
|
||||
case 11: int2 = 8; break;
|
||||
default: int2 = 0;
|
||||
}
|
||||
|
||||
if (int1 == int2) {
|
||||
int2 = 0x0f;
|
||||
}
|
||||
|
||||
rv = smc_configuration_state(addr, 1); if (rv) return(rv);
|
||||
rv = smc_write(addr, (addr1>>2) & 0xfe, 0x24); if (rv) return(rv);
|
||||
rv = smc_write(addr, (addr2>>2) & 0xfe, 0x25); if (rv) return(rv);
|
||||
rv = smc_write(addr, (int1<<4) | int2, 0x28); if (rv) return(rv);
|
||||
|
||||
/* Enable INTB output */
|
||||
|
||||
if ((int1==2) || (int2==2)) {
|
||||
rv = smc_read(addr, 0x03, &data); if (rv) return(rv);
|
||||
rv = smc_write(addr, data | 0x84, 0x03); if (rv) return(rv);
|
||||
}
|
||||
|
||||
rv = smc_configuration_state(addr, 0); return(rv);
|
||||
}
|
||||
|
||||
static int smc_pp_setup(struct superio *s, int pp_addr, int mode) {
|
||||
unsigned char addr = s->port;
|
||||
int rv;
|
||||
unsigned char data;
|
||||
|
||||
rv = smc_configuration_state(addr, 1); if (rv) return(rv);
|
||||
|
||||
rv = smc_read(addr, 0x04, &data); if (rv) return(rv);
|
||||
data = (data & (~0x03)) | (mode & 0x03);
|
||||
rv = smc_write(addr, data, 0x04); if (rv) return(rv);
|
||||
|
||||
rv = smc_read(addr, 0x01, &data); if (rv) return(rv);
|
||||
data = data & (~0x08);
|
||||
rv = smc_write(addr, data, 0x01); if (rv) return(rv);
|
||||
|
||||
rv = smc_write(addr, (pp_addr>>2) & 0xff, 0x23); if (rv) return(rv);
|
||||
|
||||
rv = smc_configuration_state(addr, 0); return(rv);
|
||||
}
|
||||
|
||||
static int smc_validbit(struct superio *s, int valid) {
|
||||
unsigned short addr = s->port;
|
||||
int rv;
|
||||
unsigned char data;
|
||||
|
||||
if ((addr!=0x370) && (addr!=0x3f0)) return(-1);
|
||||
|
||||
rv = smc_configuration_state(addr, 1); if (rv) return(rv);
|
||||
rv = smc_read(addr, 0x00, &data); if (rv) return(rv);
|
||||
|
||||
if (valid) {
|
||||
data = data | 0x80;
|
||||
}
|
||||
else {
|
||||
data = data & (~0x80);
|
||||
}
|
||||
|
||||
rv = smc_write(addr, data, 0x00); if (rv) return(rv);
|
||||
rv = smc_configuration_state(addr, 0); return(rv);
|
||||
}
|
||||
|
||||
static void
|
||||
finishup(struct superio *s)
|
||||
{
|
||||
#if 0
|
||||
// fix me later
|
||||
enter_pnp(s);
|
||||
|
||||
// don't fool with IDE just yet ...
|
||||
// if (s->floppy)
|
||||
// enable_floppy(s);
|
||||
|
||||
if (s->com1.enable)
|
||||
enable_com(s, PNP_COM1_DEVICE);
|
||||
if (s->com2.enable)
|
||||
enable_com(s, PNP_COM2_DEVICE);
|
||||
|
||||
if (s->lpt)
|
||||
enable_lpt(s);
|
||||
|
||||
exit_pnp(s);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
struct superio_control superio_sis_950_control = {
|
||||
(void *)0, (void *)0, finishup, 0x2e, "SiS 950"
|
||||
};
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue