Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 9826 → Rev 9827

/drivers/include/syscall.h
521,7 → 521,7
::"S" (text));
};
 
static inline void *vzalloc(unsigned long size)
static inline void *KernelZeroAlloc(unsigned long size)
{
void *mem;
 
/drivers/sensors/amd_nb.c
481,7 → 481,7
if (!amd_nb_has_feature(AMD_NB_GART))
return;
 
flush_words = kmalloc_array(amd_northbridges.num, sizeof(u32), GFP_KERNEL);
flush_words = KernelZeroAlloc(amd_northbridges.num * sizeof(u32));
if (!flush_words) {
amd_northbridges.flags &= ~AMD_NB_GART;
pr_notice("Cannot initialize GART flush words, GART support disabled\n");
/drivers/sensors/k10temp/Tupfile.lua
5,7 → 5,7
end
tup.include(HELPERDIR .. "/use_gcc.lua")
 
CFLAGS =[[ -Os -march=i686 -fno-ident -msse2 -fomit-frame-pointer -fno-builtin-printf -mno-stack-arg-probe -mpreferred-stack-boundary=2 -mincoming-stack-boundary=2 -mno-ms-bitfields -UWIN32 -U_WIN32 -U__WIN32__ -D_KOLIBRI -DKOLIBRI -D__KERNEL__ -DCONFIG_X86_32 -DCONFIG_DMI -DCONFIG_TINY_RCU -DCONFIG_X86_L1_CACHE_SHIFT=6 -DCONFIG_ARCH_HAS_CACHE_LINE_SIZE -DCONFIG_PRINTK -DCONFIG_PCI -DCONFIG_PCI -DCONFIG_AMD_NB -DKBUILD_MODNAME="\"k10temp"\" -I../../include -I../../include/asm -I../../include/uapi -I../../include/drm ]]
CFLAGS =[[ -std=gnu99 -Os -march=i686 -fno-ident -msse2 -fomit-frame-pointer -fno-builtin-printf -mno-stack-arg-probe -mpreferred-stack-boundary=2 -mincoming-stack-boundary=2 -mno-ms-bitfields -UWIN32 -U_WIN32 -U__WIN32__ -D_KOLIBRI -DKOLIBRI -D__KERNEL__ -DCONFIG_X86_32 -DCONFIG_DMI -DCONFIG_TINY_RCU -DCONFIG_X86_L1_CACHE_SHIFT=6 -DCONFIG_ARCH_HAS_CACHE_LINE_SIZE -DCONFIG_PRINTK -DCONFIG_PCI -DCONFIG_PCI -DCONFIG_AMD_NB -DKBUILD_MODNAME="\"k10temp"\" -I../../include -I../../include/asm -I../../include/uapi -I../../include/drm ]]
 
LDFLAGS = " -nostdlib -shared -s --major-os-version 0 --minor-os-version 7 --major-subsystem-version 0 --minor-subsystem-version 5 --subsystem native -T../drv.lds --image-base 0 --file-alignment 512 --section-alignment 4096 -L../../../contrib/sdk/lib -L../../ddk "
 
/drivers/sensors/k10temp/k10temp.c
29,7 → 29,10
 
struct cpuinfo_x86 boot_cpu_data;
extern void init_amd_nbs(void);
extern void free_pci_devices(void);
 
#define MODNAME KBUILD_MODNAME ": "
 
#define KERNEL_SPACE 0x80000000
 
/* CPUID function 0x80000001, ebx */
309,7 → 312,7
}
return 0444;
}
#if 0
 
bool has_erratum_319(struct pci_dev *pdev)
{
u32 pkg_type, reg_dram_cfg;
343,7 → 346,6
 
return boot_cpu_data.x86_model < 4;
}
#endif
 
const struct hwmon_channel_info *k10temp_info[] = {
HWMON_CHANNEL_INFO(temp,
396,21 → 398,20
 
int k10temp_probe(struct pci_dev *pdev, const struct pci_device_id *id, struct device *hwmon_dev)
{
// int unreliable = has_erratum_319(pdev);
int unreliable = has_erratum_319(pdev);
struct device *dev = &pdev->dev;
struct k10temp_data *data;
int i;
/* if (unreliable) {
if (!force) {
if (unreliable) {
/* if (!force) {
dev_err(dev,"unreliable CPU thermal sensor; monitoring disabled\n");
return -ENODEV;
}
dev_warn(dev,
"unreliable CPU thermal sensor; check erratum 319\n");
*/
printk(MODNAME "Unreliable CPU thermal sensor; Check erratum 319\n");
}
*/
data = kzalloc(sizeof(struct k10temp_data), GFP_KERNEL);
memset(data, 0x0, sizeof(struct k10temp_data));
 
data = KernelZeroAlloc(sizeof(struct k10temp_data));
if (!data)
return -ENOMEM;
 
491,10 → 492,9
{}
};
 
#define K10TEMP_NA (~0)
#define CHANEL_MAX 9
#define K10TEMP_NA (-1)
#define CHANEL_INPUT_MAX 10
 
#pragma pack(push, 1)
struct{
int Tctl;
int Tdie;
511,32 → 511,31
int Tcrit;
int Tcrit_hyst;
}k10temp_out;
#pragma pack(pop)
 
struct device k10temp_device;
 
void read_temp_info(struct device *dev, u32 attr, int channel, int *val){
long temp=0;
int read_temp_info(struct device *dev, unsigned attr, int channel) {
long temp = K10TEMP_NA;
if(k10temp_is_visible(dev->driver_data, hwmon_temp, attr, channel)){
k10temp_read_temp(dev, attr, channel, &temp);
*val=temp;
}else{
*val=K10TEMP_NA;
if (k10temp_read_temp(dev, attr, channel, &temp)) {
temp = K10TEMP_NA;
}
}
return (int)temp;
}
 
void read_all_info(struct device* dev){
for(int c=0; c<=CHANEL_MAX; c++){
read_temp_info(dev, hwmon_temp_input, c, (int*)&k10temp_out+c);
void read_all_info(struct device* dev)
{
int* k10temp_out_array = (int*)&k10temp_out;
for (int c = 0; c < CHANEL_INPUT_MAX; c++) {
k10temp_out_array[c] = read_temp_info(dev, hwmon_temp_input, c);
}
read_temp_info(dev, hwmon_temp_max, 0, &k10temp_out.Tmax);
read_temp_info(dev, hwmon_temp_crit, 0, &k10temp_out.Tcrit);
read_temp_info(dev, hwmon_temp_crit_hyst, 0, &k10temp_out.Tcrit_hyst);
}
 
int __stdcall service_proc(ioctl_t *my_ctl){
int __stdcall service_proc(ioctl_t *my_ctl)
{
if(!my_ctl || !my_ctl->output || (int)my_ctl->output>=KERNEL_SPACE-sizeof(k10temp_out)){
printk("k10temp: Bad address for writing data!\n");
printk(MODNAME "Bad address for writing data!\n");
return 0;
}
 
546,34 → 545,43
memcpy(my_ctl->output, &k10temp_out, sizeof(k10temp_out));
return 0;
}
printk("k10temp: Invalid buffer length!\n");
printk(MODNAME "Invalid buffer length!\n");
return 1;
}
 
uint32_t drvEntry(int action, char *cmdline){
uint32_t drvEntry(int action, char *cmdline)
{
if(action != 1){
return 0;
}
pci_dev_t device;
static pci_dev_t device;
const struct pci_device_id *k10temp_id;
int err;
 
cpu_detect(&boot_cpu_data);
 
err = enum_pci_devices();
if(unlikely(err != 0)) {
printk("k10temp: Device enumeration failed!\n");
return 0;
if(unlikely(enum_pci_devices() != 0)) {
printk(MODNAME "Device enumeration failed!\n");
goto error;
}
 
k10temp_id = find_pci_device(&device, k10temp_id_table);
 
if(unlikely(k10temp_id == NULL)){
printk("k10temp: Device not found!\n");
return 0;
printk(MODNAME "Device not found!\n");
goto error;
}
 
init_amd_nbs();
k10temp_probe(&device.pci_dev, k10temp_id, &k10temp_device);
return RegService("k10temp", service_proc);
 
k10temp_out.Tmax = read_temp_info(&k10temp_device, hwmon_temp_max, 0);
k10temp_out.Tcrit = read_temp_info(&k10temp_device, hwmon_temp_crit, 0);
k10temp_out.Tcrit_hyst = read_temp_info(&k10temp_device, hwmon_temp_crit_hyst, 0);
 
return RegService(MODNAME, service_proc);
 
error:
free_pci_devices();
return 0;
}
/drivers/sensors/pci.c
1,15 → 1,6
#include <syscall.h>
 
#include <linux/kernel.h>
#include <linux/mutex.h>
#include <linux/mod_devicetable.h>
#include <linux/slab.h>
#include <linux/pm.h>
#include <asm/msr.h>
#include <linux/pci.h>
 
extern int pci_scan_filter(u32 id, u32 busnr, u32 devfn);
 
LIST_HEAD(devices);
 
/* PCI control bits. Shares IORESOURCE_BITS with above PCI ROM. */
20,32 → 11,7
#define IORESOURCE_ROM_COPY (1<<2) /* ROM is alloc'd copy, resource field overlaid */
#define IORESOURCE_ROM_BIOS_COPY (1<<3) /* ROM is BIOS copy, resource field overlaid */
 
/*
* Translate the low bits of the PCI base
* to the resource type
*/
/*
//int pci_scan_filter(u32 id, u32 busnr, u32 devfn)
{
u16 vendor, device;
u32 class;
int ret = 0;
 
vendor = id & 0xffff;
device = (id >> 16) & 0xffff;
 
if(vendor == 0x15AD )
{
class = PciRead32(busnr, devfn, PCI_CLASS_REVISION);
class >>= 16;
 
if( class == PCI_CLASS_DISPLAY_VGA )
ret = 1;
}
return ret;
};*/
 
 
static inline unsigned int pci_calc_resource_flags(unsigned int flags)
{
if (flags & PCI_BASE_ADDRESS_SPACE_IO)
374,13 → 340,12
 
hdr = PciRead8(busnr, devfn, PCI_HEADER_TYPE);
 
dev = (pci_dev_t*)kzalloc(sizeof(pci_dev_t), 0);
dev = (pci_dev_t*)KernelZeroAlloc(sizeof(pci_dev_t));
if(unlikely(dev == NULL))
return NULL;
 
INIT_LIST_HEAD(&dev->link);
 
 
dev->pci_dev.busnr = busnr;
dev->pci_dev.devfn = devfn;
dev->pci_dev.hdr_type = hdr & 0x7f;
498,9 → 463,7
}
 
 
 
 
int enum_pci_devices()
int enum_pci_devices(void)
{
pci_dev_t *dev;
u32 last_bus;
508,7 → 471,6
 
last_bus = PciApi(1);
 
 
if( unlikely(last_bus == -1))
return -1;
 
532,6 → 494,16
return 0;
}
 
void free_pci_devices(void)
{
pci_dev_t *dev = (pci_dev_t*)devices.next;
while(&dev->link != &devices) {
pci_dev_t *temp = dev;
dev = (pci_dev_t*)dev->link.next;
KernelFree(temp);
}
}
 
const struct pci_device_id* find_pci_device(pci_dev_t* pdev, const struct pci_device_id *idlist)
{
pci_dev_t *dev;
637,6 → 609,7
return NULL;
}
 
 
int pci_bus_read_config_byte (struct pci_bus *bus, u32 devfn, int pos, u8 *value)
{
// raw_spin_lock_irqsave(&pci_lock, flags);
660,10 → 633,7
{
if ( pos & 3)
return PCIBIOS_BAD_REGISTER_NUMBER;
 
// raw_spin_lock_irqsave(&pci_lock, flags);
*value = PciRead32(bus->number, devfn, pos);
// raw_spin_unlock_irqrestore(&pci_lock, flags);
return 0;
}
 
671,11 → 641,6
{
if ( where & 3)
return PCIBIOS_BAD_REGISTER_NUMBER;
 
// raw_spin_lock_irqsave(&pci_lock, flags);
PciWrite32(bus->number, devfn,where, val);
// raw_spin_unlock_irqrestore(&pci_lock, flags);
return 0;
}