uart.c 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*
  2. * Copyright (C) 2018 bzt (bztsrc@github)
  3. *
  4. * Permission is hereby granted, free of charge, to any person
  5. * obtaining a copy of this software and associated documentation
  6. * files (the "Software"), to deal in the Software without
  7. * restriction, including without limitation the rights to use, copy,
  8. * modify, merge, publish, distribute, sublicense, and/or sell copies
  9. * of the Software, and to permit persons to whom the Software is
  10. * furnished to do so, subject to the following conditions:
  11. *
  12. * The above copyright notice and this permission notice shall be
  13. * included in all copies or substantial portions of the Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  16. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  17. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  18. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  19. * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  20. * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  22. * DEALINGS IN THE SOFTWARE.
  23. *
  24. */
  25. #include "gpio.h"
  26. #include "mbox.h"
  27. #include "delays.h"
  28. /* PL011 UART registers */
  29. #define UART0_DR ((volatile unsigned int*)(MMIO_BASE+0x00201000))
  30. #define UART0_FR ((volatile unsigned int*)(MMIO_BASE+0x00201018))
  31. #define UART0_IBRD ((volatile unsigned int*)(MMIO_BASE+0x00201024))
  32. #define UART0_FBRD ((volatile unsigned int*)(MMIO_BASE+0x00201028))
  33. #define UART0_LCRH ((volatile unsigned int*)(MMIO_BASE+0x0020102C))
  34. #define UART0_CR ((volatile unsigned int*)(MMIO_BASE+0x00201030))
  35. #define UART0_IMSC ((volatile unsigned int*)(MMIO_BASE+0x00201038))
  36. #define UART0_ICR ((volatile unsigned int*)(MMIO_BASE+0x00201044))
  37. /**
  38. * Set baud rate and characteristics (115200 8N1) and map to GPIO
  39. */
  40. void uart_init()
  41. {
  42. register unsigned int r;
  43. /* initialize UART */
  44. *UART0_CR = 0; // turn off UART0
  45. /* set up clock for consistent divisor values */
  46. mbox[0] = 9*4;
  47. mbox[1] = MBOX_REQUEST;
  48. mbox[2] = MBOX_TAG_SETCLKRATE; // set clock rate
  49. mbox[3] = 12;
  50. mbox[4] = 8;
  51. mbox[5] = 2; // UART clock
  52. mbox[6] = 4000000; // 4Mhz
  53. mbox[7] = 0; // clear turbo
  54. mbox[8] = MBOX_TAG_LAST;
  55. mbox_call(MBOX_CH_PROP);
  56. /* map UART0 to GPIO pins */
  57. r=*GPFSEL1;
  58. r&=~((7<<12)|(7<<15)); // gpio14, gpio15
  59. r|=(4<<12)|(4<<15); // alt0
  60. *GPFSEL1 = r;
  61. *GPPUD = 0; // enable pins 14 and 15
  62. wait_cycles(150);
  63. *GPPUDCLK0 = (1<<14)|(1<<15);
  64. wait_cycles(150);
  65. *GPPUDCLK0 = 0; // flush GPIO setup
  66. *UART0_ICR = 0x7FF; // clear interrupts
  67. *UART0_IBRD = 2; // 115200 baud
  68. *UART0_FBRD = 0xB;
  69. *UART0_LCRH = 0x7<<4; // 8n1, enable FIFOs
  70. *UART0_CR = 0x301; // enable Tx, Rx, UART
  71. }
  72. /**
  73. * Send a character
  74. */
  75. void uart_send(unsigned int c) {
  76. /* wait until we can send */
  77. do{asm volatile("nop");}while(*UART0_FR&0x20);
  78. /* write the character to the buffer */
  79. *UART0_DR=c;
  80. }
  81. /**
  82. * Receive a character
  83. */
  84. char uart_getc() {
  85. char r;
  86. /* wait until something is in the buffer */
  87. do{asm volatile("nop");}while(*UART0_FR&0x10);
  88. /* read it and return */
  89. r=(char)(*UART0_DR);
  90. /* convert carrige return to newline */
  91. return r=='\r'?'\n':r;
  92. }
  93. /**
  94. * Display a string
  95. */
  96. void uart_puts(char *s) {
  97. while(*s) {
  98. /* convert newline to carrige return + newline */
  99. if(*s=='\n')
  100. uart_send('\r');
  101. uart_send(*s++);
  102. }
  103. }
  104. /**
  105. * Display a binary value in hexadecimal
  106. */
  107. void uart_hex(unsigned int d) {
  108. unsigned int n;
  109. int c;
  110. for(c=28;c>=0;c-=4) {
  111. // get highest tetrad
  112. n=(d>>c)&0xF;
  113. // 0-9 => '0'-'9', 10-15 => 'A'-'F'
  114. n+=n>9?0x37:0x30;
  115. uart_send(n);
  116. }
  117. }