serial.h 365 B

12345678910111213
  1. #ifndef _ASM_SERIAL_H
  2. #define _ASM_SERIAL_H
  3. /*
  4. * This assumes you have a 1.8432 MHz clock for your UART.
  5. *
  6. * It'd be nice if someone built a serial card with a 24.576 MHz
  7. * clock, since the 16550A is capable of handling a top speed of 1.5
  8. * megabits/second; but this requires the faster clock.
  9. */
  10. #define BASE_BAUD (1843200 / 16)
  11. #endif /* _ASM_SERIAL_H */