cons.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * Copyright (c) 1988-1994, The University of Utah and
  3. * the Computer Systems Laboratory at the University of Utah (CSL).
  4. * All rights reserved.
  5. *
  6. * Permission to use, copy, modify and distribute this software is hereby
  7. * granted provided that (1) source code retains these copyright, permission,
  8. * and disclaimer notices, and (2) redistributions including binaries
  9. * reproduce the notices in supporting documentation, and (3) all advertising
  10. * materials mentioning features or use of this software display the following
  11. * acknowledgement: ``This product includes software developed by the
  12. * Computer Systems Laboratory at the University of Utah.''
  13. *
  14. * THE UNIVERSITY OF UTAH AND CSL ALLOW FREE USE OF THIS SOFTWARE IN ITS "AS
  15. * IS" CONDITION. THE UNIVERSITY OF UTAH AND CSL DISCLAIM ANY LIABILITY OF
  16. * ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
  17. *
  18. * CSL requests users of this software to return to csl-dist@cs.utah.edu any
  19. * improvements that they make and grant CSL redistribution rights.
  20. *
  21. * Utah $Hdr: cons.h 1.10 94/12/14$
  22. */
  23. #ifndef _DEVICE_CONS_H
  24. #define _DEVICE_CONS_H
  25. #include <sys/types.h>
  26. struct consdev {
  27. char *cn_name; /* name of device in dev_name_list */
  28. int (*cn_probe)(struct consdev *cp); /* probe hardware and fill in consdev info */
  29. int (*cn_init)(struct consdev *cp); /* turn on as console */
  30. int (*cn_getc)(dev_t dev, int wait); /* kernel getchar interface */
  31. int (*cn_putc)(dev_t dev, int c); /* kernel putchar interface */
  32. dev_t cn_dev; /* major/minor of device */
  33. short cn_pri; /* pecking order; the higher the better */
  34. };
  35. /* values for cn_pri - reflect our policy for console selection */
  36. #define CN_DEAD 0 /* device doesn't exist */
  37. #define CN_NORMAL 1 /* device exists but is nothing special */
  38. #define CN_INTERNAL 2 /* "internal" bit-mapped display */
  39. #define CN_REMOTE 3 /* serial interface with remote bit set */
  40. #define CONSBUFSIZE 1024
  41. #ifdef KERNEL
  42. extern struct consdev constab[];
  43. #endif
  44. extern void cninit(void);
  45. extern int cngetc(void);
  46. extern int cnmaygetc(void);
  47. extern void cnputc(char);
  48. /*
  49. * ROM getc/putc primitives.
  50. * On some architectures, the boot ROM provides basic character input/output
  51. * routines that can be used before devices are configured or virtual memory
  52. * is enabled. This can be useful to debug (or catch panics from) code early
  53. * in the bootstrap procedure.
  54. */
  55. extern int (*romgetc)(char c);
  56. extern void (*romputc)(char c);
  57. #endif /* _DEVICE_CONS_H */