]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/mpl/common/isa.h
Merge branch 'u-boot/master' into u-boot-arm/master
[karo-tx-uboot.git] / board / mpl / common / isa.h
1 /*
2  * (C) Copyright 2001
3  * Denis Peter, MPL AG Switzerland, d.peter@mpl.ch
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #ifndef _ISA_H_
9 #define _ISA_H_
10 /* Super IO */
11 #define SIO_CFG_PORT    0x3F0   /* Config Port Address */
12
13 #if defined(CONFIG_PIP405)
14 /* table fore SIO initialization */
15 typedef struct {
16         const uchar index;
17         const uchar val;
18 } SIO_LOGDEV_TABLE;
19
20 typedef struct {
21         const uchar ldev;
22         const SIO_LOGDEV_TABLE *ldev_table;
23 } SIO_TABLE;
24
25
26 unsigned char open_cfg_super_IO(int address);
27 unsigned char read_cfg_super_IO(int address, unsigned char function, unsigned char regaddr);
28 void write_cfg_super_IO(int address, unsigned char function, unsigned char regaddr, unsigned char data);
29 void close_cfg_super_IO(int address);
30 void isa_sio_setup(void);
31 #endif
32
33 void isa_irq_install_handler(int vec, interrupt_handler_t *handler, void *arg);
34 void isa_irq_free_handler(int vec);
35 int handle_isa_int(void);
36 void isa_init_irq_contr(void);
37 void isa_show_irq(void);
38 int isa_irq_get_count(int vec);
39
40
41 #endif