[BACK]Return to xfs_vopdefs.h CVS log [TXT][DIR] Up to [local] / sys / xfs

File: [local] / sys / xfs / xfs_vopdefs.h (download)

Revision 1.1.1.1 (vendor branch), Tue Mar 4 16:04:30 2008 UTC (16 years, 1 month ago) by nbrk
Branch: OPENBSD_4_2_BASE, MAIN
CVS Tags: jornada-partial-support-wip, HEAD
Changes since 1.1: +0 -0 lines

Import of OpenBSD 4.2 release kernel tree with initial code to support 
Jornada 720/728, StrongARM 1110-based handheld PC.
At this point kernel roots on NFS and boots into vfs_mountroot() and traps.
What is supported:
- glass console, Jornada framebuffer (jfb) works in 16bpp direct color mode
(needs some palette tweaks for non black/white/blue colors, i think)
- saic, SA11x0 interrupt controller (needs cleanup)
- sacom, SA11x0 UART (supported only as boot console for now)
- SA11x0 GPIO controller fully supported (but can't handle multiple interrupt
handlers on one gpio pin)
- sassp, SSP port on SA11x0 that attaches spibus
- Jornada microcontroller (jmcu) to control kbd, battery, etc throught
the SPI bus (wskbd attaches on jmcu, but not tested)
- tod functions seem work
- initial code for SA-1111 (chip companion) : this is TODO

Next important steps, i think:
- gpio and intc on sa1111
- pcmcia support for sa11x0 (and sa1111 help logic)
- REAL root on nfs when we have PCMCIA support (we may use any of supported pccard NICs)
- root on wd0! (using already supported PCMCIA-ATA)

#define HAVE_VOP_ISLOCKED 1
NNPFS_VOP_DEF(islocked);
#define HAVE_VOP_LOOKUP 1
NNPFS_VOP_DEF(lookup);
#define HAVE_VOP_CREATE 1
NNPFS_VOP_DEF(create);
#define HAVE_VOP_MKNOD 1
NNPFS_VOP_DEF(mknod);
#define HAVE_VOP_OPEN 1
NNPFS_VOP_DEF(open);
#define HAVE_VOP_CLOSE 1
NNPFS_VOP_DEF(close);
#define HAVE_VOP_ACCESS 1
NNPFS_VOP_DEF(access);
#define HAVE_VOP_GETATTR 1
NNPFS_VOP_DEF(getattr);
#define HAVE_VOP_SETATTR 1
NNPFS_VOP_DEF(setattr);
#define HAVE_VOP_READ 1
NNPFS_VOP_DEF(read);
#define HAVE_VOP_WRITE 1
NNPFS_VOP_DEF(write);
#define HAVE_VOP_IOCTL 1
NNPFS_VOP_DEF(ioctl);
#define HAVE_VOP_POLL 1
NNPFS_VOP_DEF(poll);
#define HAVE_VOP_KQFILTER 1
NNPFS_VOP_DEF(kqfilter);
#define HAVE_VOP_REVOKE 1
NNPFS_VOP_DEF(revoke);
#define HAVE_VOP_FSYNC 1
NNPFS_VOP_DEF(fsync);
#define HAVE_VOP_REMOVE 1
NNPFS_VOP_DEF(remove);
#define HAVE_VOP_LINK 1
NNPFS_VOP_DEF(link);
#define HAVE_VOP_RENAME 1
NNPFS_VOP_DEF(rename);
#define HAVE_VOP_MKDIR 1
NNPFS_VOP_DEF(mkdir);
#define HAVE_VOP_RMDIR 1
NNPFS_VOP_DEF(rmdir);
#define HAVE_VOP_SYMLINK 1
NNPFS_VOP_DEF(symlink);
#define HAVE_VOP_READDIR 1
NNPFS_VOP_DEF(readdir);
#define HAVE_VOP_READLINK 1
NNPFS_VOP_DEF(readlink);
#define HAVE_VOP_ABORTOP 1
NNPFS_VOP_DEF(abortop);
#define HAVE_VOP_INACTIVE 1
NNPFS_VOP_DEF(inactive);
#define HAVE_VOP_RECLAIM 1
NNPFS_VOP_DEF(reclaim);
#define HAVE_VOP_LOCK 1
NNPFS_VOP_DEF(lock);
#define HAVE_VOP_UNLOCK 1
NNPFS_VOP_DEF(unlock);
#define HAVE_VOP_BMAP 1
NNPFS_VOP_DEF(bmap);
#define HAVE_VOP_PRINT 1
NNPFS_VOP_DEF(print);
#define HAVE_VOP_PATHCONF 1
NNPFS_VOP_DEF(pathconf);
#define HAVE_VOP_ADVLOCK 1
NNPFS_VOP_DEF(advlock);
#define HAVE_VOP_REALLOCBLKS 1
NNPFS_VOP_DEF(reallocblks);
#define HAVE_VOP_STRATEGY 1
NNPFS_VOP_DEF(strategy);
#define HAVE_VOP_BWRITE 1
NNPFS_VOP_DEF(bwrite);