4 * For architectures where we want to allow direct access
5 * to the PCI config stuff - it would probably be preferable
6 * on PCs too, but there people just do it by hand with the
7 * magic northbridge registers..
10 #include <linux/errno.h>
11 #include <linux/pci.h>
12 #include <linux/smp_lock.h>
13 #include <linux/syscalls.h>
14 #include <asm/uaccess.h>
18 sys_pciconfig_read(unsigned long bus
, unsigned long dfn
,
19 unsigned long off
, unsigned long len
,
29 if (!capable(CAP_SYS_ADMIN
))
33 dev
= pci_find_slot(bus
, dfn
);
40 cfg_ret
= pci_user_read_config_byte(dev
, off
, &byte
);
43 cfg_ret
= pci_user_read_config_word(dev
, off
, &word
);
46 cfg_ret
= pci_user_read_config_dword(dev
, off
, &dword
);
56 if (cfg_ret
!= PCIBIOS_SUCCESSFUL
)
61 err
= put_user(byte
, (unsigned char __user
*)buf
);
64 err
= put_user(word
, (unsigned short __user
*)buf
);
67 err
= put_user(dword
, (unsigned int __user
*)buf
);
73 /* ??? XFree86 doesn't even check the return value. They
74 just look for 0xffffffff in the output, since that's what
75 they get instead of a machine check on x86. */
78 put_user(-1, (unsigned char __user
*)buf
);
81 put_user(-1, (unsigned short __user
*)buf
);
84 put_user(-1, (unsigned int __user
*)buf
);
91 sys_pciconfig_write(unsigned long bus
, unsigned long dfn
,
92 unsigned long off
, unsigned long len
,
101 if (!capable(CAP_SYS_ADMIN
))
104 dev
= pci_find_slot(bus
, dfn
);
111 err
= get_user(byte
, (u8 __user
*)buf
);
114 err
= pci_user_write_config_byte(dev
, off
, byte
);
115 if (err
!= PCIBIOS_SUCCESSFUL
)
120 err
= get_user(word
, (u16 __user
*)buf
);
123 err
= pci_user_write_config_word(dev
, off
, word
);
124 if (err
!= PCIBIOS_SUCCESSFUL
)
129 err
= get_user(dword
, (u32 __user
*)buf
);
132 err
= pci_user_write_config_dword(dev
, off
, dword
);
133 if (err
!= PCIBIOS_SUCCESSFUL
)