search for: vbus

Displaying 19 results from an estimated 19 matches for "vbus".

Did you mean: bus
2016 Feb 20
0
[PATCH v4 3/6] iccsense: implement for ina209, ina219 and ina3221
...e <subdev/bios.h> +#include <subdev/bios/extdev.h> +#include <subdev/bios/iccsense.h> +#include <subdev/i2c.h> + +static int +nvkm_iccsense_poll_lane(struct i2c_adapter *i2c, u8 addr, u8 shunt_reg, + u8 shunt_shift, u8 bus_reg, u8 bus_shift, u8 shunt, + u16 lsb) +{ + int vbus, vshunt; + + if (shunt == 0) + return 0; + + vshunt = nv_rd16i2cr(i2c, addr, shunt_reg); + vbus = nv_rd16i2cr(i2c, addr, bus_reg); + + if (vshunt < 0 || vbus < 0) + return -EINVAL; + + vshunt >>= shunt_shift; + vbus >>= bus_shift; + + return (vbus * vshunt * lsb) / shunt; +} + +...
2009 Jun 04
3
TODO list for qemu+KVM networking performance v2
As I'm new to qemu/kvm, to figure out how networking performance can be improved, I went over the code and took some notes. As I did this, I tried to record ideas from recent discussions and ideas that came up on improving performance. Thus this list. This includes a partial overview of networking code in a virtual environment, with focus on performance: I'm only interested in sending
2009 Jun 04
3
TODO list for qemu+KVM networking performance v2
As I'm new to qemu/kvm, to figure out how networking performance can be improved, I went over the code and took some notes. As I did this, I tried to record ideas from recent discussions and ideas that came up on improving performance. Thus this list. This includes a partial overview of networking code in a virtual environment, with focus on performance: I'm only interested in sending
2016 Feb 20
12
[PATCH v4 0/6] Suppor for various power sensors on GF100+
This is a complete rework from the first version I sent out. Now the implementation is more centered around the power_rails we find in the SENSE table instead of extdev centered. This makes the implementation a lot easier and straightforward. I've added support for the INA219, INA209 and INA3221 sensors found on multiple Fermi and Kepler cards. The power consumption is also exported via
2010 Aug 03
1
[PATCH 4/6] staging: hv: Removed TODO for VMBUS, it mirrors HYPER-V behavior to closely
From: Hank Janssen <hjanssen at microsoft.com> Removed TODO for VMBUS, it mirrors HYPER-V behaviour to closely and does not really share any usable functionality of the Linux kernel facilities. There is not really an easy way to combine functionality. Signed-off-by:Hank Janssen <hjanssen at microsoft.com> Signed-off-by:Haiyang Zhang <haiyangz at microsoft.com> ---
2010 Aug 03
1
[PATCH 4/6] staging: hv: Removed TODO for VMBUS, it mirrors HYPER-V behavior to closely
From: Hank Janssen <hjanssen at microsoft.com> Removed TODO for VMBUS, it mirrors HYPER-V behaviour to closely and does not really share any usable functionality of the Linux kernel facilities. There is not really an easy way to combine functionality. Signed-off-by:Hank Janssen <hjanssen at microsoft.com> Signed-off-by:Haiyang Zhang <haiyangz at microsoft.com> ---
2016 Feb 20
4
[PATCH v3 0/4] Suppor for various power sensors on GF100+
This is a complete rework from the first version I sent out. Now the implementation is more centered around the power_rails we find in the SENSE table instead of extdev centered. This makes the implementation a lot easier and straightforward. I've added support for the INA219, INA209 and INA3221 sensors found on multiple Fermi and Kepler cards. The power consumption is also exported via
2016 Feb 19
4
[PATCH v2 0/4] Suppor for various power sensors on GF100+
This is a complete rework from the last version I sent out. Now the implementation is more centered around the power_rails we find in the SENSE table instead of extdev centered. This makes the implementation a lot easier and straightforward. I've added support for the INA219, INA209 and INA3221 sensors found on multiple Fermi and Kepler cards, but only the INA3221 bits are tested so far.
2010 Mar 04
1
virtio over PCI
...also got started with the alacrityvm project, developing a driver for their virtualization framework. That project is nowhere near finished. The virtualization folks basically told GHaskins (alacrityvm author) that alacrityvm wouldn't ever make it to mainline Linux. http://www.mmarray.org/~iws/vbus/ Unfortunately, I've been pulled onto other projects for the time being. However, I'd really like to be able to use a virtio-over-PCI style driver, rather than relying on my own custom (slow, unoptimized) network driver (PCINet). If you get something mostly working (and mostly agreed upon...
2010 Mar 04
1
virtio over PCI
...also got started with the alacrityvm project, developing a driver for their virtualization framework. That project is nowhere near finished. The virtualization folks basically told GHaskins (alacrityvm author) that alacrityvm wouldn't ever make it to mainline Linux. http://www.mmarray.org/~iws/vbus/ Unfortunately, I've been pulled onto other projects for the time being. However, I'd really like to be able to use a virtio-over-PCI style driver, rather than relying on my own custom (slow, unoptimized) network driver (PCINet). If you get something mostly working (and mostly agreed upon...
2016 Feb 17
0
[PATCH 1/2] power sensor support
...> +#include <subdev/bios.h> +#include <subdev/bios/iccsense.h> + +struct iccsense_ina3221_priv { + struct nvkm_iccsense base; + + struct nvkm_i2c_bus *i2c_bus; + u8 rails_mohm[3]; +}; + +static int +ina3221_poll_power_lane(struct i2c_adapter *adap, uint8_t id, uint8_t shunt) +{ + int vbus, vshunt; + + if (id > 2) + return -EINVAL; + + if (shunt == 0) + return 0; + + vshunt = nv_rd16i2cr(adap, 0x40, 1 + (id * 2)); + vbus = nv_rd16i2cr(adap, 0x40, 2 + (id * 2)); + + if (vshunt < 0 || vbus < 0) + return -EINVAL; + + return vbus * vshunt * 5 / shunt; +} + + +static int +ina3...
2016 Feb 17
3
[PATCH 0/2] Support for INA3221 power sensor
The INA3221 is usually found on mid and high end kepler+ gpus Marins Patch implements the new iccsense subdev and all needed bits for the INA3221 power sensor. My Patch implements the hwmon power1 interface to expose the current power consumption through hwmon (and can be read out via sysfs or the sensors tool) Please test these patches for Fermi+ GPUs, that nothing gets messed up and works as
2016 Feb 24
7
[PATCH v5 0/6] Suppor for various power sensors on GF100+
This is a complete rework from the first version I sent out. Now the implementation is more centered around the power_rails we find in the SENSE table instead of extdev centered. This makes the implementation a lot easier and straightforward. I've added support for the INA219, INA209 and INA3221 sensors found on multiple Fermi and Kepler cards. The power consumption is also exported via
2015 May 06
9
[PATCH RFC 0/7] vhost: cross-endian support (vhost-net only)
Hi, This series allows QEMU to use vhost with legacy virtio devices when host and target don't have the same endianness. Only network devices are covered for the moment. I had already posted a series some monthes ago but it never got reviewed. Moreover, the underlying kernel support was entirely re-written and is still waiting to be applied by Michael. I hence post as RFC. The corresponding
2015 May 06
9
[PATCH RFC 0/7] vhost: cross-endian support (vhost-net only)
Hi, This series allows QEMU to use vhost with legacy virtio devices when host and target don't have the same endianness. Only network devices are covered for the moment. I had already posted a series some monthes ago but it never got reviewed. Moreover, the underlying kernel support was entirely re-written and is still waiting to be applied by Michael. I hence post as RFC. The corresponding
2020 May 06
0
Fwd: GeForce(R) GT 710 1GB PCIE x 1 on arm64
...ller on 3460000.sdhci [3460000.sdhci] using ADMA 64-bit [ 8.429306] SD_CARD_SW_PWR: supplied by VDD_3V3_SYS [ 8.436338] VDD_HDMI_5V0: supplied by VDD_5V0_SYS [ 8.441647] VDD_USB0: supplied by VDD_5V0_SYS [ 8.446328] VDD_USB1: supplied by VDD_5V0_SYS [ 8.452028] usb3-0: usb3-0 supply vbus not found, using dummy regulator [ 8.465559] tegra-xusb 3530000.usb: Firmware timestamp: 2019-07-08 19:32:42 UTC [ 8.473136] tegra-xusb 3530000.usb: xHCI Host Controller [ 8.478628] tegra-xusb 3530000.usb: new USB bus registered, assigned bus number 1 [ 8.487255] tegra-xusb 3530000.usb:...
2012 Sep 21
3
tws bug ? (LSI SAS 9750)
Hi, I have been trying out a nice new tws controller and decided to enable debugging in the kernel and run some stress tests. With a regular GENERIC kernel, it boots up fine. But with debugging, it panics on boot. Anyone know whats up ? Is this something that should be sent directly to LSI ? pcib0: <ACPI Host-PCI bridge> port 0xcf8-0xcff on acpi0 pci0: <ACPI PCI bus> on pcib0
2020 May 06
4
GeForce(R) GT 710 1GB PCIE x 1 on arm64
Hi to all. I'm experimenting with running a https://www.zotac.com/us/product/graphics_card/geforce%C2%AE-gt-710-1gb-pcie-x-1 card on an Nvidia Jetson TX2 arm64 device. Possible? Linux kernel aarch64 5.6.10. Because Nvidia did not list drivers for this architecture, I'm experimenting with a nouveau driver. The Jetson TX2 has a default driver for the host1x framebuffer for output from the
2013 Oct 06
40
[xen] double fault: 0000 [#1] PREEMPT SMP DEBUG_PAGEALLOC
Greetings, I got the below dmesg and the first bad commit is commit cf39c8e5352b4fb9efedfe7e9acb566a85ed847c Merge: 3398d25 23b7eaf Author: Linus Torvalds <torvalds@linux-foundation.org> Date: Wed Sep 4 17:45:39 2013 -0700 Merge tag ''stable/for-linus-3.12-rc0-tag'' of git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip Pull Xen updates from Konrad