Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
179 views

C++ app to talk to an FPGA over PCI in userland using mmap

First off i'm new to Linux programming so apologies if this makes no sense or I'm barking up the wrong tree, point me in the correct direction. I'm trying to write a cpp app to talk to a FPGA over a ...
3
votes
1answer
310 views

How to record(reverse-engineer) PCI transactions on Linux

I want to record all read/write PCI transactions of a device driver. Is there a way to do it by a linux command or on software?
3
votes
1answer
607 views

mmap to overlay VME bus into user space memory over a PCI?

I'm trying to map a VME address space through a PCI bus into user space so I can perform regular read/writes on the memory. I have done this with another PCI device like this :- unsigned long ...
3
votes
1answer
904 views

Finding available LPT (parallel) ports and addresses in Delphi

I am doing direct I/O on a parallel port which is fine and necessary for speed. I would like to enumerate the available ports to offer the user a choice of ports at setup time rather than a tedious ...
3
votes
1answer
644 views

Which Hypervisors allow Raw PCI access?

I am trying to find out which Hypervisor will allow me to grant access to specialized PCI cards (such as a telephony card) to a virtual machine. So far I have tried out VMWare ESXi server and it ...
2
votes
0answers
31 views

Can the PCI device on the bus listen to other's device data?

What if I have a PCI bus (w/o PCI-PCI bridges) with 3 devices: spy-device, sender PCI device and receiver device (e.g. bridge from PCI to CPU). The sender start transferring data to receiver. The ...
2
votes
1answer
1k views

How to interpret the contents of /proc/bus/pci/devices?

The first few fields of 'cat /proc/bus/pci/devices' are understandable. Field 1 - BusDevFunc Field 2 - Vendor Id + Device Id Field 3 - Interrupt Line Field 4 - BAR 0 and the rest of the BAR ...
2
votes
1answer
696 views

read chip-id from pci- / pcie-card

A few months ago I had to write a small tool to program the eeprom of a rtl8139-card. It's basically the rtl8139-diag tool stripped down to read/write the eeprom. This tool has to be extend to be ...
2
votes
1answer
114 views

Is there a definitieve resource that documents navigation of the linux /proc and /sys filesystems?

We use the /proc and /sys file systems in Linux to discover various types of system configuration information. Typically, we spelunk around through the different files and directories until we find ...
2
votes
1answer
1k views

Proper way to access registers in a PCI configuration space

When you need to access registers in the PCI configuration space, do you simply need to used built-in BIOS functions to read/write DWORDs into the configuration space? For example, if I am trying to ...
2
votes
2answers
456 views

What resource would you recommend to learn about programming a PCI bus?

I have to start delving in the details of a PCI bus device driver. What resource (book, website, etc...) would you recommend someone look at to learn more about the PCI bus and how to program it? ...
1
vote
1answer
381 views

find and enable a PCIe device connected after Linux is booted

We are developing an embedded system connected to a Linux PC host over PCIe. Right now, in the implementation and debug phase, I often need to power off and power on the device or try different ...
1
vote
1answer
223 views

How can I read the bandwidth in use over the PCIe bus?

I'm working on a streaming media application that pushes a lot of data to the graphics card at startup. The CPU is doing very little at the point when the data is being pushed, it idles along at ...
1
vote
0answers
84 views

Direct communication between two PCI devices

I have a NIC card and a HDD both connected on PCIe slots in a Linux machine. Ideally, I'd like to funnel incoming packets to the HDD without involving the CPU, or involving it minimally. Is it ...
0
votes
1answer
52 views

Accessing PCI-7250 NuDAQ in .NET

I would like to switch on a relay using a PCI-7250 NuDAQ card using .NET. I know that the code in VB to turn on is: card = Register_Card(PCI_7250, 0) v = DO_WritePort(card, 0, &O17) and to ...
0
votes
0answers
21 views

Change IOaddress of a PCI device

I would like to change the IOaddress of a PCI device by writing the new (page aligned) address into BAR0/1. When I did that using a BIOS function I could not access the PCI device at the new address. ...
0
votes
0answers
50 views

What is a PCIe switch [closed]

I am looking for a motherboard that may support 4 full BW PCIe2.0 x16 slots. These are the two I have narrowed down to http://www.supermicro.com/products/motherboard/QPI/5500/X8DTG-QF.cfm ...
0
votes
1answer
21 views

Are there any code example(s) of how to make video cards invisible?

Are there any code example(s) of how to make video cards invisible? As per my understanding this should be done on kernel level. What I'm trying to do is the folliowing - I have four physical GPUs ...
0
votes
1answer
178 views

Identify a PCIe device using PCI config space

Given the list of PCI devices installed in the system, I need to identify PCIe devices. So far, I've been using iteration over the list of capabilities to see if the device has extended cap structure ...
0
votes
2answers
163 views

Determine Physical Location of a PCI Adapter

We have a Windows application that can use multiple PCI adapters. These adapters all have external physical connections to other hardware or cables. Our software is configured to know what the ...
0
votes
1answer
418 views

How to configure PCI-to-PCI bridge device in VxWorks?

I'm working with board support package (BSP) in VxWorks that uses pciAutoConfig() to configure the PCI bus. When I add an Ethernet controller card to the bus the pci display routines do not show the ...
0
votes
2answers
435 views

Java to access pci-modem

I have a pci-modem in my laptop and I tried to run a program that opens the port and configures it.I get an excepcion while doing it, I think that it can't see the port, even though it is on COM3. Is ...