Changeset 5158


Ignore:
Timestamp:
Feb 24, 2010 5:36:56 PM (3 years ago)
Author:
oxygene
Message:

Add Win Enterprises' PL6064 board

Signed-off-by: Anish K. Patel <anishp@…>
Acked-by: Patrick Georgi <patrick.georgi@…>

Location:
trunk/src
Files:
11 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/mainboard/Kconfig

    r5052 r5158  
    9595config VENDOR_VIA 
    9696        bool "VIA" 
     97config VENDOR_WINENT 
     98        bool "Win Enterprises" 
    9799 
    98100endchoice 
     
    352354        default 0x1019 
    353355        depends on VENDOR_VIA 
     356 
     357config MAINBOARD_VENDOR 
     358        string 
     359        default "Win Enterprise" 
     360        depends on VENDOR_WINENT 
    354361 
    355362source "src/mainboard/a-trend/Kconfig" 
     
    398405source "src/mainboard/tyan/Kconfig" 
    399406source "src/mainboard/via/Kconfig" 
     407source "src/mainboard/winent/Kconfig" 
    400408 
    401409config BOARD_ROMSIZE_KB_128 
  • trunk/src/superio/winbond/w83627hf/superio.c

    r5152 r5158  
    55 * Copyright (C) 2003-2004 Linux Networx 
    66 * Copyright (C) 2004 Tyan By LYH change from PC87360 
     7 * Copyright (C) 2010 Win Enterprises (anishp@win-ent.com)  
    78 * 
    89 * This program is free software; you can redistribute it and/or modify 
     
    5556        outb(reg, port_base); 
    5657        return inb(port_base + 1); 
     58} 
     59 
     60static void w83627hf_16_bit_addr_qual(device_t dev) 
     61{ 
     62      int port = dev->path.pnp.port >> 8; 
     63      pnp_enter_ext_func_mode(dev); 
     64      outb(0x24, port); 
     65      /* enable 16 bit address qualification */ 
     66      outb(inb(port + 1) | 0x80, port + 1); 
     67      pnp_exit_ext_func_mode(dev); 
    5768} 
    5869 
Note: See TracChangeset for help on using the changeset viewer.