Ignore:
Timestamp:
2006-09-07T19:56:44Z (18 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ab1ae2d9
Parents:
801579fe
Message:

sparc64 work.

  • Changes to enable userspace keyboard drivers.
  • Fix z8530 initialization (i.e. clear any pending Tx interrupts).
  • Experimental support for framebuffers with inverted colors.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/sparc64/src/drivers/fhc.c

    r801579fe r253f35a1  
    5858        fhc = (void *) hw_map(FHC_UART_ADDR, PAGE_SIZE);
    5959
    60         (void) fhc[FHC_UART_ICLR];
    6160        fhc[FHC_UART_ICLR] = 0;
    62         (void) fhc[FHC_UART_IMAP];
    63         fhc[FHC_UART_IMAP] = Z8530_INTRCV_DATA0;        /* hardcoded for Simics simulation */
    64         (void) fhc[FHC_UART_IMAP];
    65         fhc[FHC_UART_IMAP] = 0x80000000;                /* hardcoded for Simics simulation */
     61        fhc[FHC_UART_IMAP] = 0x80000000;
    6662}
    6763
    6864void fhc_uart_reset(void)
    6965{
    70         (void) fhc[FHC_UART_ICLR];
    7166        fhc[FHC_UART_ICLR] = 0;
    7267}
Note: See TracChangeset for help on using the changeset viewer.