FIREWIRE(4) BSD Kernel Interfaces Manual FIREWIRE(4)NAME
firewire -- IEEE1394 High-performance Serial Bus
SYNOPSIS
To compile this driver into the kernel, place the following line in your kernel configuration file:
device firewire
Alternatively, to load the driver as a module at boot time, place the following line in loader.conf(5):
firewire_load="YES"
DESCRIPTION
FreeBSD provides machine-independent bus support and raw drivers for firewire interfaces.
The firewire driver consists of two layers: the controller and the bus layer. The controller attaches to a physical bus (like pci(4)). The
firewire bus attaches to the controller. Additional drivers can be attached to the bus.
Up to 63 devices, including the host itself, can be attached to a firewire bus. The root node is dynamically assigned with a PHY device
function. Also, the other firewire bus specific parameters, e.g., node ID, cycle master, isochronous resource manager and bus manager, are
dynamically assigned, after bus reset is initiated. On the firewire bus, every device is identified by an EUI 64 address.
FILES
/dev/fw0.0
/dev/fwmem0.0
SEE ALSO fwe(4), fwip(4), fwohci(4), pci(4), sbp(4), eui64(5), fwcontrol(8), kldload(8), sysctl(8)HISTORY
The firewire driver first appeared in FreeBSD 5.0.
AUTHORS
The firewire driver was written by Katsushi Kobayashi and Hidetoshi Shimokawa for the FreeBSD project.
BUGS
See fwohci(4) for security notes.
BSD April 1, 2006 BSD
Check Out this Related Man Page
FWOHCI(4) BSD Kernel Interfaces Manual FWOHCI(4)NAME
fwohci -- OHCI FireWire chipset device driver
SYNOPSIS
To compile this driver into the kernel, place the following line in your kernel configuration file:
device firewire
Alternatively, to load the driver as a module at boot time, place the following line in loader.conf(5):
firewire_load="YES"
To disable physical access (see BUGS section for detail), put the following line in loader.conf(5):
hw.firewire.phydma_enable=0
HARDWARE
The fwohci driver provides support for PCI/CardBus FireWire interface cards. The driver supports the following IEEE 1394 OHCI chipsets:
o Adaptec AHA-894x/AIC-5800
o Apple Pangea
o Apple UniNorth
o Intel 82372FB
o IOGEAR GUF320
o Lucent / Agere FW322/323
o NEC uPD72861
o NEC uPD72870
o NEC uPD72871/2
o NEC uPD72873
o NEC uPD72874
o National Semiconductor CS4210
o Ricoh R5C551
o Ricoh R5C552
o Sony CX3022
o Sony i.LINK (CXD3222)
o Sun PCIO-2 (RIO 1394)
o Texas Instruments PCI4410A
o Texas Instruments PCI4450
o Texas Instruments PCI4451
o Texas Instruments TSB12LV22
o Texas Instruments TSB12LV23
o Texas Instruments TSB12LV26
o Texas Instruments TSB43AA22
o Texas Instruments TSB43AB21/A/AI/A-EP
o Texas Instruments TSB43AB22/A
o Texas Instruments TSB43AB23
o Texas Instruments TSB82AA2
o VIA Fire II (VT6306)
SEE ALSO firewire(4), fwe(4), fwip(4), sbp(4), fwcontrol(8), kldload(8)HISTORY
The fwohci device driver first appeared in FreeBSD 5.0.
AUTHORS
The fwohci device driver was written by Katsushi Kobayashi and Hidetoshi Shimokawa.
BUGS
The driver allows physical access from any nodes on the bus by default. This means that any devices on the bus can read and modify any mem-
ory space which can be accessed by an IEEE 1394 OHCI chip. It is allowed mostly for sbp(4) devices. This should be changed to allow it only
for specific devices. Anyway, FireWire is a bus and not expected to be connected with un-trustable devices because a node can monitor all
the traffic.
BSD March 3, 2008 BSD
Hi,
I am getting a bus error when i run the following code.
#include <stdio.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>
#include <errno.h>
main()
{
int semid,retval;
semid=semget(0x20,1,IPC_CREAT|0666);
retval= semctl(semid,0,GETVAL,0);
printf("The... (1 Reply)
Hi all,
I am getting bus error problem in SunOS. Can you please help me out in this regard.
Actually, my entire code till the last line has been executed. But after tht i am getting a bus error. Please help me.
Thanks in advance.
Charu. (4 Replies)
I have a file containing bus notations which need to be expanded.
Example:
file contains a line like below :
assign gam_ci_raddr = `GTTBTOP.gt2gti1.gt2sqidi1.gam_ci_raddr;
What needed is
assign gam_ci_raddr = `GTTBTOP.gt2gti1.gt2sqidi1.gam_ci_raddr;
assign gam_ci_raddr =... (1 Reply)
Hi, I have a firewire external hard drive that I've been using on a Mac but now want to use on my desktop computer that runs on Solaris 10, but when I plug it into the firewire port, nothing happens. I just assumed that it would mount automatically like a USB device but it doesn't. Can someone... (7 Replies)
Dear all,
I set up a external Gforce GPU using the PE4H (Pcie passive adapter) from HWTOOLS.NET.
I'm able to add and remove the device doing
and
The point is the kernel does not initialized the device correctly.
Here is what dmesg gives after the scan:
lspci -t gives
and lspci... (2 Replies)
Been a while since I've been here; I have my iMac and MBpro connected via firewire, and they can see each other when I open the finder windows.
But I'd like to be able to 'see' each computer on the other via the terminal application; and I can't see them right now. I can transfer files via the... (0 Replies)