Sponsored Content
Operating Systems BSD A question about BSD kernel and driver Post 302897359 by alister on Sunday 13th of April 2014 03:14:06 PM
Old 04-13-2014
You can always try to build a kernel with it, but I doubt it will work. If it did, it'd be part of the GENERIC config.

Also, note that the bktr driver appears to be an i2c master. You'd need iic(4) on hppa (I'm not familiar with the architecture, just mentioning it).

Regards,
Alister
 

8 More Discussions You Might Find Interesting

1. News, Links, Events and Announcements

BSD Accelerated NVIDIA Driver Petition

hello ppl, me and a friend, tired of waiting for nvidia to help the community creating a nvidia driver for bsd, decided to make yet another petition to deliver nvidia as a way of protest. didn't we buy a nvidia card just like a common windows or linux user? didn't we pay for it? so, why... (0 Replies)
Discussion started by: crashnburn
0 Replies

2. UNIX for Advanced & Expert Users

Kernel and Device Driver Programming

I am looking for a guide on how to program for either the Linux or FreeBSD (includes 4.4BSD, NetBSD or OpenBSD) kernel. I would prefer to learn how to write device drivers, but anything would help. If you know, please email me at *removed* or leave a post here Regards, Farhan (0 Replies)
Discussion started by: Farhan
0 Replies

3. Linux

Linux Device Driver: avoid mem copy from/to user/kernel space

I recently started working with Linux and wrote my first device driver for a hardware chip controlled by a host CPU running Linux 2.6.x kernel. 1. The user space process makes an IOCTL call with pointer to a user memory buffer. 2. The kernel device driver in the big switch-case of IOCTL,... (1 Reply)
Discussion started by: agaurav
1 Replies

4. BSD

BSD Kernel Source Code

Hi I need the BSD core (kernel) operating system Please let me download link I'm from Iran Please help me Thank you very much (1 Reply)
Discussion started by: sepadl71
1 Replies

5. BSD

BSD kernel

Hi. I am thinking to create an OS. I don't want to use linux kernel. I want to use BSD Kernel and this also means that because will be on UFS, I cannot use Gparted. This are my 2 questions. 1) Where can I download BSD Kernel. 2) Witch is the tool to create the partitions. (I think is gpart but I... (1 Reply)
Discussion started by: snuffell
1 Replies

6. Fedora

Is Kernel module is the same as a device driver?

I have been reading prep questions for my second unix academy exam, and there's a nuance, I'm not sure I understand it correctly. I've been under impression from my readings of book by Evi Nemeth and from unix academy DVDs I've been watching, that kernel's modules are drivers. I think of it, as... (25 Replies)
Discussion started by: newlinuxuser1
25 Replies

7. Hardware

Difference between platform driver,codec driver and Machine driver

In general terms what are the differences platform driver,codec driver and Machine driver? (1 Reply)
Discussion started by: rupeshkp728
1 Replies

8. Ubuntu

Kernel panics : trying to write / read on tiny tty driver

I'm a beginner to the Linux programming and trying my hands on some device driver examples while practising. The below code (a trimmed down version of tiny_tty.c from ldd3 book) loads perfectly using insmod and I'm able to see it in /proc/tty/drivers , /proc/modules and device nodes are getting... (1 Reply)
Discussion started by: diwsdiwa
1 Replies
RADIO(4)						   BSD Kernel Interfaces Manual 						  RADIO(4)

NAME
radio -- device-independent radio driver layer SYNOPSIS
radio* at az? radio* at bktr? radio* at gtp? radio* at rt? radio* at rtii? radio* at sf2r? radio* at udsbr? #include <sys/types.h> #include <sys/ioctl.h> #include <sys/radioio.h> DESCRIPTION
The radio driver provides support for various FM radio cards. It provides an uniform programming interface layer above different underlying radio hardware drivers. For radio tuner controlling there is a single device file available: /dev/radio. The following ioctl(2) commands are supported: RIOCSSRCH (int) This command assumes that a signal search is required and gives direction of search to the driver - 0 to search down and any non-zero value to search up. RIOCGINFO (struct radio_info) RIOCSINFO (struct radio_info) Get or set the current hardware device information into the struct radio_info structure. struct radio_info { int mute; int volume; int stereo; int rfreq; /* reference frequency */ int lock; /* locking field strength */ uint32_t freq; /* in kHz */ uint32_t caps; /* card capabilities */ #define RADIO_CAPS_DETECT_STEREO (1<<0) #define RADIO_CAPS_DETECT_SIGNAL (1<<1) #define RADIO_CAPS_SET_MONO (1<<2) #define RADIO_CAPS_HW_SEARCH (1<<3) #define RADIO_CAPS_HW_AFC (1<<4) #define RADIO_CAPS_REFERENCE_FREQ (1<<5) #define RADIO_CAPS_LOCK_SENSITIVITY (1<<6) #define RADIO_CARD_TYPE (0xFF<<16) uint32_t info; #define RADIO_INFO_STEREO (1<<0) #define RADIO_INFO_SIGNAL (1<<1) }; The mute field is a boolean. The volume field holds the card volume information and can be at most 255. The stereo field is a boolean. The rfreq holds information about the card reference frequency (not all cards support this feature). The lock field holds information about the card locking field strength during an automatic search for cards that support this fea- ture. The freq field is the frequency in kHz the card is tuned to. The caps field is read-only and describes the card capabilities. The capabilities can have following values: RADIO_CAPS_DETECT_STEREO The device can determine is it tuned to a stereo signal. RADIO_CAPS_DETECT_SIGNAL The device can determine is it tuned or not. RADIO_CAPS_SET_MONO The device capable to forcible set its output to mono. RADIO_CAPS_HW_SEARCH The device can do hardware search. RADIO_CAPS_HW_AFC The device has an internal hardware automatic frequency control. RADIO_CAPS_REFERENCE_FREQ The device allow to change the reference frequency of a received signal. RADIO_CAPS_LOCK_SENSITIVITY The device allow to change the station lock sensitivity used during search operation. RADIO_CARD_TYPE Some cards have several different incarnations. This allow to determine the variant of the card. Currently not used. The info field is read-only and describes the current state of the card - tuned/not tuned, stereo signal/mono signal. RADIO_INFO_STEREO Informs whether the device receives a stereo or mono signal. RADIO_INFO_SIGNAL Informs whether the device receives a valid signal or noise. FILES
/dev/radio SEE ALSO
radioctl(1), ioctl(2), az(4), bktr(4), gtp(4), rt(4), rtii(4), sf2r(4), udsbr(4) HISTORY
The radio device driver appeared in OpenBSD 3.0 and NetBSD 1.6. AUTHORS
The radio driver was written by Vladimir Popov and Maxim Tsyplakov. The man page was written by Vladimir Popov. BSD
October 20, 2001 BSD
All times are GMT -4. The time now is 02:40 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy