2 * Copyright (c) 2000-2006 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
31 * Polled-mode 16x50 UART driver.
34 #include <machine/machine_routines.h>
35 #include <pexpert/protos.h>
36 #include <pexpert/pexpert.h>
38 struct pe_serial_functions
{
39 void (*uart_init
) (void);
40 void (*uart_set_baud_rate
) (int unit
, uint32_t baud_rate
);
47 static struct pe_serial_functions
*gPESF
;
49 static int uart_initted
= 0; /* 1 if init'ed */
51 static unsigned int legacy_uart_enabled
= 0; /* 1 Legacy IO based UART is supported on platform */
53 static boolean_t lpss_uart_supported
= 0; /* 1 if LPSS UART is supported on platform */
54 static unsigned int lpss_uart_enabled
= 0; /* 1 if it is LPSS UART is in D0 state */
55 static void lpss_uart_re_init(void);
57 static boolean_t pcie_uart_enabled
= 0; /* 1 if PCIe UART is supported on platform */
59 #define DEFAULT_UART_BAUD_RATE 115200
61 static unsigned uart_baud_rate
= DEFAULT_UART_BAUD_RATE
;
63 // =============================================================================
64 // Legacy UART support using IO transactions to COM1 or COM2
65 // =============================================================================
67 #define LEGACY_UART_PORT_ADDR COM1_PORT_ADDR
68 #define LEGACY_UART_CLOCK 1843200 /* 1.8432 MHz clock */
70 #define IO_WRITE(r, v) outb(LEGACY_UART_PORT_ADDR + UART_##r, v)
71 #define IO_READ(r) inb(LEGACY_UART_PORT_ADDR + UART_##r)
74 COM1_PORT_ADDR
= 0x3f8,
75 COM2_PORT_ADDR
= 0x2f8
79 UART_RBR
= 0, /* receive buffer Register (R) */
80 UART_THR
= 0, /* transmit holding register (W) */
81 UART_DLL
= 0, /* DLAB = 1, divisor latch (LSB) */
82 UART_IER
= 1, /* interrupt enable register */
83 UART_DLM
= 1, /* DLAB = 1, divisor latch (MSB) */
84 UART_IIR
= 2, /* interrupt ident register (R) */
85 UART_FCR
= 2, /* fifo control register (W) */
86 UART_LCR
= 3, /* line control register */
87 UART_MCR
= 4, /* modem control register */
88 UART_LSR
= 5, /* line status register */
89 UART_MSR
= 6, /* modem status register */
90 UART_SCR
= 7 /* scratch register */
94 UART_LCR_8BITS
= 0x03,
101 UART_MCR_OUT1
= 0x04,
102 UART_MCR_OUT2
= 0x08,
115 UART_CLK_125M_1
= 0x60002,
116 UART_CLK_125M_2
= 0x80060003,
120 legacy_uart_probe( void )
122 /* Verify that the Scratch Register is accessible */
124 IO_WRITE( SCR
, 0x5a );
125 if (IO_READ(SCR
) != 0x5a) {
128 IO_WRITE( SCR
, 0xa5 );
129 if (IO_READ(SCR
) != 0xa5) {
136 legacy_uart_set_baud_rate( __unused
int unit
, uint32_t baud_rate
)
138 const unsigned char lcr
= IO_READ( LCR
);
141 if (baud_rate
== 0) {
144 div
= LEGACY_UART_CLOCK
/ 16 / baud_rate
;
145 IO_WRITE( LCR
, lcr
| UART_LCR_DLAB
);
146 IO_WRITE( DLM
, (unsigned char)(div
>> 8));
147 IO_WRITE( DLL
, (unsigned char) div
);
148 IO_WRITE( LCR
, lcr
& ~UART_LCR_DLAB
);
152 legacy_uart_tr0( void )
154 return IO_READ(LSR
) & UART_LSR_THRE
;
158 legacy_uart_td0( int c
)
164 legacy_uart_init( void )
166 /* Disable hardware interrupts */
171 /* Disable FIFO's for 16550 devices */
175 /* Set for 8-bit, no parity, DLAB bit cleared */
177 IO_WRITE( LCR
, UART_LCR_8BITS
);
181 gPESF
->uart_set_baud_rate( 0, uart_baud_rate
);
183 /* Assert DTR# and RTS# lines (OUT2?) */
185 IO_WRITE( MCR
, UART_MCR_DTR
| UART_MCR_RTS
);
187 /* Clear any garbage in the input buffer */
195 legacy_uart_rr0( void )
199 lsr
= IO_READ( LSR
);
201 if (lsr
& (UART_LSR_FE
| UART_LSR_PE
| UART_LSR_OE
)) {
202 IO_READ( RBR
); /* discard */
206 return lsr
& UART_LSR_DR
;
210 legacy_uart_rd0( void )
212 return IO_READ( RBR
);
215 static struct pe_serial_functions legacy_uart_serial_functions
= {
216 .uart_init
= legacy_uart_init
,
217 .uart_set_baud_rate
= legacy_uart_set_baud_rate
,
218 .tr0
= legacy_uart_tr0
,
219 .td0
= legacy_uart_td0
,
220 .rr0
= legacy_uart_rr0
,
221 .rd0
= legacy_uart_rd0
224 // =============================================================================
225 // MMIO UART (using PCH LPSS UART2)
226 // =============================================================================
228 #define MMIO_UART2_BASE_LEGACY 0xFE034000 /* Legacy MMIO Config space */
229 #define MMIO_UART2_BASE 0xFE036000 /* MMIO Config space */
230 #define PCI_UART2 0xFE037000 /* PCI Config Space */
232 #define MMIO_WRITE(r, v) ml_phys_write_word(mmio_uart_base + MMIO_UART_##r, v)
233 #define MMIO_READ(r) ml_phys_read_word(mmio_uart_base + MMIO_UART_##r)
236 MMIO_UART_RBR
= 0x0, /* receive buffer Register (R) */
237 MMIO_UART_THR
= 0x0, /* transmit holding register (W) */
238 MMIO_UART_DLL
= 0x0, /* DLAB = 1, divisor latch (LSB) */
239 MMIO_UART_IER
= 0x4, /* interrupt enable register */
240 MMIO_UART_DLM
= 0x4, /* DLAB = 1, divisor latch (MSB) */
241 MMIO_UART_FCR
= 0x8, /* fifo control register (W) */
242 MMIO_UART_LCR
= 0xc, /* line control register */
243 MMIO_UART_MCR
= 0x10, /* modem control register */
244 MMIO_UART_LSR
= 0x14, /* line status register */
245 MMIO_UART_SCR
= 0x1c, /* scratch register */
246 MMIO_UART_CLK
= 0x200, /* clocks register */
247 MMIO_UART_RST
= 0x204 /* Reset register */
250 static vm_offset_t mmio_uart_base
= 0;
253 mmio_uart_present( void )
255 MMIO_WRITE( SCR
, 0x5a );
256 if (MMIO_READ(SCR
) != 0x5a) {
259 MMIO_WRITE( SCR
, 0xa5 );
260 if (MMIO_READ(SCR
) != 0xa5) {
267 mmio_uart_probe( void )
269 unsigned new_mmio_uart_base
= 0;
271 // if specified, mmio_uart overrides all probing
272 if (PE_parse_boot_argn("mmio_uart", &new_mmio_uart_base
, sizeof(new_mmio_uart_base
))) {
273 // mmio_uart=0 will disable mmio_uart support
274 if (new_mmio_uart_base
== 0) {
278 mmio_uart_base
= new_mmio_uart_base
;
282 // probe the two possible MMIO_UART2 addresses
283 mmio_uart_base
= MMIO_UART2_BASE
;
284 if (mmio_uart_present()) {
288 mmio_uart_base
= MMIO_UART2_BASE_LEGACY
;
289 if (mmio_uart_present()) {
293 // no mmio uart found
298 mmio_uart_set_baud_rate( __unused
int unit
, __unused
uint32_t baud_rate
)
300 const unsigned char lcr
= MMIO_READ( LCR
);
303 if (baud_rate
== 0) {
306 div
= LEGACY_UART_CLOCK
/ 16 / baud_rate
;
308 MMIO_WRITE( LCR
, lcr
| UART_LCR_DLAB
);
309 MMIO_WRITE( DLM
, (unsigned char)(div
>> 8));
310 MMIO_WRITE( DLL
, (unsigned char) div
);
311 MMIO_WRITE( LCR
, lcr
& ~UART_LCR_DLAB
);
315 mmio_uart_tr0( void )
317 return MMIO_READ(LSR
) & UART_LSR_THRE
;
321 mmio_uart_td0( int c
)
323 MMIO_WRITE( THR
, c
);
327 mmio_uart_init( void )
329 /* Disable hardware interrupts */
331 MMIO_WRITE( MCR
, 0 );
332 MMIO_WRITE( IER
, 0 );
334 /* Disable FIFO's for 16550 devices */
336 MMIO_WRITE( FCR
, 0 );
338 /* Set for 8-bit, no parity, DLAB bit cleared */
340 MMIO_WRITE( LCR
, UART_LCR_8BITS
);
342 /* Leave baud rate as set by firmware unless serialbaud boot-arg overrides */
344 if (uart_baud_rate
!= DEFAULT_UART_BAUD_RATE
) {
345 gPESF
->uart_set_baud_rate( 0, uart_baud_rate
);
348 /* Assert DTR# and RTS# lines (OUT2?) */
350 MMIO_WRITE( MCR
, UART_MCR_DTR
| UART_MCR_RTS
);
352 /* Clear any garbage in the input buffer */
360 mmio_uart_rr0( void )
364 lsr
= MMIO_READ( LSR
);
366 if (lsr
& (UART_LSR_FE
| UART_LSR_PE
| UART_LSR_OE
)) {
367 MMIO_READ( RBR
); /* discard */
371 return lsr
& UART_LSR_DR
;
375 lpss_uart_enable( boolean_t on_off
)
377 unsigned int pmcs_reg
;
379 if (!lpss_uart_supported
) {
383 pmcs_reg
= ml_phys_read_byte(PCI_UART2
+ 0x84);
384 if (on_off
== FALSE
) {
386 lpss_uart_enabled
= 0;
391 ml_phys_write_byte(PCI_UART2
+ 0x84, pmcs_reg
);
392 pmcs_reg
= ml_phys_read_byte(PCI_UART2
+ 0x84);
394 if (on_off
== TRUE
) {
396 lpss_uart_enabled
= 1;
401 lpss_uart_re_init( void )
403 uint32_t register_read
;
405 MMIO_WRITE(RST
, 0x7); /* LPSS UART2 controller out ot reset */
406 register_read
= MMIO_READ(RST
);
408 MMIO_WRITE(LCR
, UART_LCR_DLAB
); /* Set DLAB bit to enable reading/writing of DLL, DLH */
409 register_read
= MMIO_READ(LCR
);
411 MMIO_WRITE(DLL
, 1); /* Divisor Latch Low Register */
412 register_read
= MMIO_READ(DLL
);
414 MMIO_WRITE(DLM
, 0); /* Divisor Latch High Register */
415 register_read
= MMIO_READ(DLM
);
417 MMIO_WRITE(FCR
, 1); /* Enable FIFO */
418 register_read
= MMIO_READ(FCR
);
420 MMIO_WRITE(LCR
, UART_LCR_8BITS
); /* Set 8 bits, clear DLAB */
421 register_read
= MMIO_READ(LCR
);
423 MMIO_WRITE(MCR
, UART_MCR_RTS
); /* Request to send */
424 register_read
= MMIO_READ(MCR
);
426 MMIO_WRITE(CLK
, UART_CLK_125M_1
); /* 1.25M Clock speed */
427 register_read
= MMIO_READ(CLK
);
429 MMIO_WRITE(CLK
, UART_CLK_125M_2
); /* 1.25M Clock speed */
430 register_read
= MMIO_READ(CLK
);
434 mmio_uart_rd0( void )
436 return MMIO_READ( RBR
);
439 static struct pe_serial_functions mmio_uart_serial_functions
= {
440 .uart_init
= mmio_uart_init
,
441 .uart_set_baud_rate
= mmio_uart_set_baud_rate
,
442 .tr0
= mmio_uart_tr0
,
443 .td0
= mmio_uart_td0
,
444 .rr0
= mmio_uart_rr0
,
448 // =============================================================================
450 // =============================================================================
452 #define PCIE_MMIO_UART_BASE 0xFE410000
454 #define PCIE_MMIO_WRITE(r, v) ml_phys_write_byte(pcie_mmio_uart_base + PCIE_MMIO_UART_##r, v)
455 #define PCIE_MMIO_READ(r) ml_phys_read_byte(pcie_mmio_uart_base + PCIE_MMIO_UART_##r)
458 PCIE_MMIO_UART_RBR
= 0x0, /* receive buffer Register (R) */
459 PCIE_MMIO_UART_THR
= 0x0, /* transmit holding register (W) */
460 PCIE_MMIO_UART_IER
= 0x1, /* interrupt enable register */
461 PCIE_MMIO_UART_FCR
= 0x2, /* fifo control register (W) */
462 PCIE_MMIO_UART_LCR
= 0x4, /* line control register */
463 PCIE_MMIO_UART_MCR
= 0x4, /* modem control register */
464 PCIE_MMIO_UART_LSR
= 0x5, /* line status register */
465 PCIE_MMIO_UART_DLL
= 0x8, /* DLAB = 1, divisor latch (LSB) */
466 PCIE_MMIO_UART_DLM
= 0x9, /* DLAB = 1, divisor latch (MSB) */
467 PCIE_MMIO_UART_SCR
= 0x30, /* scratch register */
470 static vm_offset_t pcie_mmio_uart_base
= 0;
473 pcie_mmio_uart_present( void )
475 PCIE_MMIO_WRITE( SCR
, 0x5a );
476 if (PCIE_MMIO_READ(SCR
) != 0x5a) {
479 PCIE_MMIO_WRITE( SCR
, 0xa5 );
480 if (PCIE_MMIO_READ(SCR
) != 0xa5) {
488 pcie_mmio_uart_probe( void )
490 unsigned new_pcie_mmio_uart_base
= 0;
492 // if specified, pcie_mmio_uart overrides all probing
493 if (PE_parse_boot_argn("pcie_mmio_uart", &new_pcie_mmio_uart_base
, sizeof(new_pcie_mmio_uart_base
))) {
494 // pcie_mmio_uart=0 will disable pcie_mmio_uart support
495 if (new_pcie_mmio_uart_base
== 0) {
498 pcie_mmio_uart_base
= new_pcie_mmio_uart_base
;
502 pcie_mmio_uart_base
= PCIE_MMIO_UART_BASE
;
503 if (pcie_mmio_uart_present()) {
507 // no pcie_mmio uart found
512 pcie_mmio_uart_set_baud_rate( __unused
int unit
, __unused
uint32_t baud_rate
)
514 const unsigned char lcr
= PCIE_MMIO_READ( LCR
);
517 if (baud_rate
== 0) {
520 div
= LEGACY_UART_CLOCK
/ 16 / baud_rate
;
522 PCIE_MMIO_WRITE( LCR
, lcr
| UART_LCR_DLAB
);
523 PCIE_MMIO_WRITE( DLM
, (unsigned char)(div
>> 8));
524 PCIE_MMIO_WRITE( DLL
, (unsigned char) div
);
525 PCIE_MMIO_WRITE( LCR
, lcr
& ~UART_LCR_DLAB
);
529 pcie_mmio_uart_tr0( void )
531 return PCIE_MMIO_READ(LSR
) & UART_LSR_THRE
;
535 pcie_mmio_uart_td0( int c
)
537 PCIE_MMIO_WRITE( THR
, c
);
541 pcie_mmio_uart_init( void )
547 pcie_mmio_uart_rr0( void )
551 lsr
= PCIE_MMIO_READ( LSR
);
553 if (lsr
& (UART_LSR_FE
| UART_LSR_PE
| UART_LSR_OE
)) {
554 PCIE_MMIO_READ( RBR
); /* discard */
558 return lsr
& UART_LSR_DR
;
562 pcie_mmio_uart_rd0( void )
564 return PCIE_MMIO_READ( RBR
);
567 static struct pe_serial_functions pcie_mmio_uart_serial_functions
= {
568 .uart_init
= pcie_mmio_uart_init
,
569 .uart_set_baud_rate
= pcie_mmio_uart_set_baud_rate
,
570 .tr0
= pcie_mmio_uart_tr0
,
571 .td0
= pcie_mmio_uart_td0
,
572 .rr0
= pcie_mmio_uart_rr0
,
573 .rd0
= pcie_mmio_uart_rd0
576 // =============================================================================
577 // Generic serial support below
578 // =============================================================================
583 unsigned new_uart_baud_rate
= 0;
585 if (PE_parse_boot_argn("serialbaud", &new_uart_baud_rate
, sizeof(new_uart_baud_rate
))) {
587 if (!((LEGACY_UART_CLOCK
/ 16) % new_uart_baud_rate
)) {
588 uart_baud_rate
= new_uart_baud_rate
;
592 if (mmio_uart_probe()) {
593 gPESF
= &mmio_uart_serial_functions
;
595 lpss_uart_supported
= 1;
596 lpss_uart_enabled
= 1;
598 } else if (legacy_uart_probe()) {
599 gPESF
= &legacy_uart_serial_functions
;
601 legacy_uart_enabled
= 1;
603 } else if (pcie_mmio_uart_probe()) {
604 gPESF
= &pcie_mmio_uart_serial_functions
;
606 pcie_uart_enabled
= 1;
616 if (uart_initted
&& (legacy_uart_enabled
|| lpss_uart_enabled
|| pcie_uart_enabled
)) {
617 while (!gPESF
->tr0()) {
618 ; /* Wait until THR is empty. */
627 if (uart_initted
&& (legacy_uart_enabled
|| lpss_uart_enabled
|| pcie_uart_enabled
)) {
637 serial_putc( char c
)