Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Dec 2008 16:43:08 +0000 (UTC)
From:      Sam Leffler <sam@FreeBSD.org>
To:        cvs-src-old@freebsd.org
Subject:   cvs commit: src/sys/dev/ath/ath_hal ah.c ah.h ah_debug.h ah_decode.h ah_desc.h ah_devid.h ah_eeprom.h ah_eeprom_v1.c ah_eeprom_v1.h ah_eeprom_v14.c ah_eeprom_v14.h ah_eeprom_v3.c ah_eeprom_v3.h ah_internal.h ah_regdomain.c ah_soc.h ...
Message-ID:  <200812011643.mB1GhKHd074355@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
sam         2008-12-01 16:43:08 UTC

  FreeBSD src repository

  Added files:
    sys/dev/ath/ath_hal  ah.c ah.h ah_debug.h ah_decode.h 
                         ah_desc.h ah_devid.h ah_eeprom.h 
                         ah_eeprom_v1.c ah_eeprom_v1.h 
                         ah_eeprom_v14.c ah_eeprom_v14.h 
                         ah_eeprom_v3.c ah_eeprom_v3.h 
                         ah_internal.h ah_regdomain.c ah_soc.h 
    sys/dev/ath/ath_hal/ar5210 ar5210.h ar5210_attach.c 
                               ar5210_beacon.c ar5210_interrupts.c 
                               ar5210_keycache.c ar5210_misc.c 
                               ar5210_phy.c ar5210_power.c 
                               ar5210_recv.c ar5210_reset.c 
                               ar5210_xmit.c ar5210desc.h 
                               ar5210phy.h ar5210reg.h 
                               ar5k_0007.ini 
    sys/dev/ath/ath_hal/ar5211 ar5211.h ar5211_attach.c 
                               ar5211_beacon.c ar5211_interrupts.c 
                               ar5211_keycache.c ar5211_misc.c 
                               ar5211_phy.c ar5211_power.c 
                               ar5211_recv.c ar5211_reset.c 
                               ar5211_xmit.c ar5211desc.h 
                               ar5211phy.h ar5211reg.h boss.ini 
    sys/dev/ath/ath_hal/ar5212 ar2316.c ar2317.c ar2413.c ar2425.c 
                               ar5111.c ar5112.c ar5212.h 
                               ar5212.ini ar5212_ani.c 
                               ar5212_attach.c ar5212_beacon.c 
                               ar5212_eeprom.c ar5212_gpio.c 
                               ar5212_interrupts.c 
                               ar5212_keycache.c ar5212_misc.c 
                               ar5212_phy.c ar5212_power.c 
                               ar5212_recv.c ar5212_reset.c 
                               ar5212_rfgain.c ar5212_xmit.c 
                               ar5212desc.h ar5212phy.h 
                               ar5212reg.h ar5311reg.h ar5413.c 
    sys/dev/ath/ath_hal/ar5312 ar5312.h ar5312_attach.c 
                               ar5312_eeprom.c ar5312_gpio.c 
                               ar5312_interrupts.c ar5312_misc.c 
                               ar5312_power.c ar5312_reset.c 
                               ar5312phy.h ar5312reg.h 
                               ar5315_gpio.c 
    sys/dev/ath/ath_hal/ar5416 ar2133.c ar5416.h ar5416.ini 
                               ar5416_ani.c ar5416_attach.c 
                               ar5416_beacon.c ar5416_cal.c 
                               ar5416_cal.h ar5416_cal_adcdc.c 
                               ar5416_cal_adcgain.c 
                               ar5416_cal_iq.c ar5416_eeprom.c 
                               ar5416_gpio.c ar5416_interrupts.c 
                               ar5416_keycache.c ar5416_misc.c 
                               ar5416_phy.c ar5416_power.c 
                               ar5416_recv.c ar5416_reset.c 
                               ar5416_xmit.c ar5416desc.h 
                               ar5416phy.h ar5416reg.h ar9160.ini 
                               ar9160_attach.c 
  Log:
  SVN rev 185521 on 2008-12-01 16:43:08Z by sam
  
  import ath hal
  
  Revision  Changes    Path
  1.1       +885 -0    src/sys/dev/ath/ath_hal/ah.c (new)
  1.1       +899 -0    src/sys/dev/ath/ath_hal/ah.h (new)
  1.1       +49 -0     src/sys/dev/ath/ath_hal/ah_debug.h (new)
  1.1       +55 -0     src/sys/dev/ath/ath_hal/ah_decode.h (new)
  1.1       +220 -0    src/sys/dev/ath/ath_hal/ah_desc.h (new)
  1.1       +84 -0     src/sys/dev/ath/ath_hal/ah_devid.h (new)
  1.1       +133 -0    src/sys/dev/ath/ath_hal/ah_eeprom.h (new)
  1.1       +253 -0    src/sys/dev/ath/ath_hal/ah_eeprom_v1.c (new)
  1.1       +99 -0     src/sys/dev/ath/ath_hal/ah_eeprom_v1.h (new)
  1.1       +415 -0    src/sys/dev/ath/ath_hal/ah_eeprom_v14.c (new)
  1.1       +271 -0    src/sys/dev/ath/ath_hal/ah_eeprom_v14.h (new)
  1.1       +1876 -0   src/sys/dev/ath/ath_hal/ah_eeprom_v3.c (new)
  1.1       +462 -0    src/sys/dev/ath/ath_hal/ah_eeprom_v3.h (new)
  1.1       +804 -0    src/sys/dev/ath/ath_hal/ah_internal.h (new)
  1.1       +2861 -0   src/sys/dev/ath/ath_hal/ah_regdomain.c (new)
  1.1       +91 -0     src/sys/dev/ath/ath_hal/ah_soc.h (new)
  1.1       +278 -0    src/sys/dev/ath/ath_hal/ar5210/ar5210.h (new)
  1.1       +383 -0    src/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c (new)
  1.1       +191 -0    src/sys/dev/ath/ath_hal/ar5210/ar5210_beacon.c (new)
  1.1       +134 -0    src/sys/dev/ath/ath_hal/ar5210/ar5210_interrupts.c (new)
  1.1       +156 -0    src/sys/dev/ath/ath_hal/ar5210/ar5210_keycache.c (new)
  1.1       +642 -0    src/sys/dev/ath/ath_hal/ar5210/ar5210_misc.c (new)
  1.1       +85 -0     src/sys/dev/ath/ath_hal/ar5210/ar5210_phy.c (new)
  1.1       +134 -0    src/sys/dev/ath/ath_hal/ar5210/ar5210_power.c (new)
  1.1       +266 -0    src/sys/dev/ath/ath_hal/ar5210/ar5210_recv.c (new)
  1.1       +1003 -0   src/sys/dev/ath/ath_hal/ar5210/ar5210_reset.c (new)
  1.1       +623 -0    src/sys/dev/ath/ath_hal/ar5210/ar5210_xmit.c (new)
  1.1       +130 -0    src/sys/dev/ath/ath_hal/ar5210/ar5210desc.h (new)
  1.1       +59 -0     src/sys/dev/ath/ath_hal/ar5210/ar5210phy.h (new)
  1.1       +401 -0    src/sys/dev/ath/ath_hal/ar5210/ar5210reg.h (new)
  1.1       +194 -0    src/sys/dev/ath/ath_hal/ar5210/ar5k_0007.ini (new)
  1.1       +308 -0    src/sys/dev/ath/ath_hal/ar5211/ar5211.h (new)
  1.1       +516 -0    src/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c (new)
  1.1       +173 -0    src/sys/dev/ath/ath_hal/ar5211/ar5211_beacon.c (new)
  1.1       +160 -0    src/sys/dev/ath/ath_hal/ar5211/ar5211_interrupts.c (new)
  1.1       +178 -0    src/sys/dev/ath/ath_hal/ar5211/ar5211_keycache.c (new)
  1.1       +685 -0    src/sys/dev/ath/ath_hal/ar5211/ar5211_misc.c (new)
  1.1       +104 -0    src/sys/dev/ath/ath_hal/ar5211/ar5211_phy.c (new)
  1.1       +136 -0    src/sys/dev/ath/ath_hal/ar5211/ar5211_power.c (new)
  1.1       +245 -0    src/sys/dev/ath/ath_hal/ar5211/ar5211_recv.c (new)
  1.1       +2138 -0   src/sys/dev/ath/ath_hal/ar5211/ar5211_reset.c (new)
  1.1       +662 -0    src/sys/dev/ath/ath_hal/ar5211/ar5211_xmit.c (new)
  1.1       +134 -0    src/sys/dev/ath/ath_hal/ar5211/ar5211desc.h (new)
  1.1       +94 -0     src/sys/dev/ath/ath_hal/ar5211/ar5211phy.h (new)
  1.1       +853 -0    src/sys/dev/ath/ath_hal/ar5211/ar5211reg.h (new)
  1.1       +358 -0    src/sys/dev/ath/ath_hal/ar5211/boss.ini (new)
  1.1       +767 -0    src/sys/dev/ath/ath_hal/ar5212/ar2316.c (new)
  1.1       +744 -0    src/sys/dev/ath/ath_hal/ar5212/ar2317.c (new)
  1.1       +759 -0    src/sys/dev/ath/ath_hal/ar5212/ar2413.c (new)
  1.1       +722 -0    src/sys/dev/ath/ath_hal/ar5212/ar2425.c (new)
  1.1       +711 -0    src/sys/dev/ath/ath_hal/ar5212/ar5111.c (new)
  1.1       +881 -0    src/sys/dev/ath/ath_hal/ar5212/ar5112.c (new)
  1.1       +603 -0    src/sys/dev/ath/ath_hal/ar5212/ar5212.h (new)
  1.1       +2171 -0   src/sys/dev/ath/ath_hal/ar5212/ar5212.ini (new)
  1.1       +1016 -0   src/sys/dev/ath/ath_hal/ar5212/ar5212_ani.c (new)
  1.1       +870 -0    src/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c (new)
  1.1       +253 -0    src/sys/dev/ath/ath_hal/ar5212/ar5212_beacon.c (new)
  1.1       +50 -0     src/sys/dev/ath/ath_hal/ar5212/ar5212_eeprom.c (new)
  1.1       +124 -0    src/sys/dev/ath/ath_hal/ar5212/ar5212_gpio.c (new)
  1.1       +206 -0    src/sys/dev/ath/ath_hal/ar5212/ar5212_interrupts.c (new)
  1.1       +285 -0    src/sys/dev/ath/ath_hal/ar5212/ar5212_keycache.c (new)
  1.1       +1074 -0   src/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c (new)
  1.1       +199 -0    src/sys/dev/ath/ath_hal/ar5212/ar5212_phy.c (new)
  1.1       +175 -0    src/sys/dev/ath/ath_hal/ar5212/ar5212_power.c (new)
  1.1       +286 -0    src/sys/dev/ath/ath_hal/ar5212/ar5212_recv.c (new)
  1.1       +2659 -0   src/sys/dev/ath/ath_hal/ar5212/ar5212_reset.c (new)
  1.1       +330 -0    src/sys/dev/ath/ath_hal/ar5212/ar5212_rfgain.c (new)
  1.1       +918 -0    src/sys/dev/ath/ath_hal/ar5212/ar5212_xmit.c (new)
  1.1       +177 -0    src/sys/dev/ath/ath_hal/ar5212/ar5212desc.h (new)
  1.1       +347 -0    src/sys/dev/ath/ath_hal/ar5212/ar5212phy.h (new)
  1.1       +995 -0    src/sys/dev/ath/ath_hal/ar5212/ar5212reg.h (new)
  1.1       +50 -0     src/sys/dev/ath/ath_hal/ar5212/ar5311reg.h (new)
  1.1       +797 -0    src/sys/dev/ath/ath_hal/ar5212/ar5413.c (new)
  1.1       +79 -0     src/sys/dev/ath/ath_hal/ar5312/ar5312.h (new)
  1.1       +334 -0    src/sys/dev/ath/ath_hal/ar5312/ar5312_attach.c (new)
  1.1       +47 -0     src/sys/dev/ath/ath_hal/ar5312/ar5312_eeprom.c (new)
  1.1       +131 -0    src/sys/dev/ath/ath_hal/ar5312/ar5312_gpio.c (new)
  1.1       +47 -0     src/sys/dev/ath/ath_hal/ar5312/ar5312_interrupts.c (new)
  1.1       +168 -0    src/sys/dev/ath/ath_hal/ar5312/ar5312_misc.c (new)
  1.1       +125 -0    src/sys/dev/ath/ath_hal/ar5312/ar5312_power.c (new)
  1.1       +919 -0    src/sys/dev/ath/ath_hal/ar5312/ar5312_reset.c (new)
  1.1       +31 -0     src/sys/dev/ath/ath_hal/ar5312/ar5312phy.h (new)
  1.1       +139 -0    src/sys/dev/ath/ath_hal/ar5312/ar5312reg.h (new)
  1.1       +130 -0    src/sys/dev/ath/ath_hal/ar5312/ar5315_gpio.c (new)
  1.1       +466 -0    src/sys/dev/ath/ath_hal/ar5416/ar2133.c (new)
  1.1       +193 -0    src/sys/dev/ath/ath_hal/ar5416/ar5416.h (new)
  1.1       +688 -0    src/sys/dev/ath/ath_hal/ar5416/ar5416.ini (new)
  1.1       +886 -0    src/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c (new)
  1.1       +486 -0    src/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c (new)
  1.1       +246 -0    src/sys/dev/ath/ath_hal/ar5416/ar5416_beacon.c (new)
  1.1       +663 -0    src/sys/dev/ath/ath_hal/ar5416/ar5416_cal.c (new)
  1.1       +119 -0    src/sys/dev/ath/ath_hal/ar5416/ar5416_cal.h (new)
  1.1       +111 -0    src/sys/dev/ath/ath_hal/ar5416/ar5416_cal_adcdc.c (new)
  1.1       +116 -0    src/sys/dev/ath/ath_hal/ar5416/ar5416_cal_adcgain.c (new)
  1.1       +132 -0    src/sys/dev/ath/ath_hal/ar5416/ar5416_cal_iq.c (new)
  1.1       +44 -0     src/sys/dev/ath/ath_hal/ar5416/ar5416_eeprom.c (new)
  1.1       +112 -0    src/sys/dev/ath/ath_hal/ar5416/ar5416_gpio.c (new)
  1.1       +259 -0    src/sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c (new)
  1.1       +66 -0     src/sys/dev/ath/ath_hal/ar5416/ar5416_keycache.c (new)
  1.1       +499 -0    src/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c (new)
  1.1       +126 -0    src/sys/dev/ath/ath_hal/ar5416/ar5416_phy.c (new)
  1.1       +173 -0    src/sys/dev/ath/ath_hal/ar5416/ar5416_power.c (new)
  1.1       +178 -0    src/sys/dev/ath/ath_hal/ar5416/ar5416_recv.c (new)
  1.1       +2895 -0   src/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c (new)
  1.1       +698 -0    src/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c (new)
  1.1       +397 -0    src/sys/dev/ath/ath_hal/ar5416/ar5416desc.h (new)
  1.1       +250 -0    src/sys/dev/ath/ath_hal/ar5416/ar5416phy.h (new)
  1.1       +506 -0    src/sys/dev/ath/ath_hal/ar5416/ar5416reg.h (new)
  1.1       +699 -0    src/sys/dev/ath/ath_hal/ar5416/ar9160.ini (new)
  1.1       +307 -0    src/sys/dev/ath/ath_hal/ar5416/ar9160_attach.c (new)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200812011643.mB1GhKHd074355>