Chameleon

Chameleon Svn Source Tree

Root/branches/meklort/i386/libsaio/ati.h

Source at commit 429 created 13 years 9 months ago.
By meklort, Updated module system. Hooks can now be used within modules when cetaion functions are called in chameleon. Note that onle two hooks currently exist, more need to be added. I also updated the HelloWorld module to use a hook instead of print out right away.
1/*
2 * ATI injector
3 *
4 * Copyright (C) 2009 Jasmin Fazlic, iNDi, netkas
5 *
6 * ATI injector is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * ATI driver and injector is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with ATI injector. If not, see <http://www.gnu.org/licenses/>.
18 */
19 /*
20 * Alternatively you can choose to comply with APSL
21 */
22
23
24#ifndef __LIBSAIO_ATI_H
25#define __LIBSAIO_ATI_H
26
27bool setup_ati_devprop(pci_dt_t *ati_dev);
28
29struct ati_chipsets_t {
30unsigned device;
31char *name;
32};
33
34struct ati_data_key {
35uint32_t size;
36char *name;
37uint8_t data[];
38};
39
40#define REG8(reg) ((volatile uint8_t *)regs)[(reg)]
41#define REG16(reg) ((volatile uint16_t *)regs)[(reg) >> 1]
42#define REG32R(reg) ((volatile uint32_t *)regs)[(reg) >> 2]
43#define REG32W(reg, val) ((volatile uint32_t *)regs)[(reg) >> 2] = (val)
44
45
46#endif /* !__LIBSAIO_ATI_H */
47

Archive Download this file

Revision: 429