1185377Ssam/*
2185377Ssam * Copyright (c) 2002-2008 Sam Leffler, Errno Consulting
3185377Ssam * Copyright (c) 2002-2008 Atheros Communications, Inc.
4185377Ssam *
5185377Ssam * Permission to use, copy, modify, and/or distribute this software for any
6185377Ssam * purpose with or without fee is hereby granted, provided that the above
7185377Ssam * copyright notice and this permission notice appear in all copies.
8185377Ssam *
9185377Ssam * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10185377Ssam * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11185377Ssam * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12185377Ssam * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13185377Ssam * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14185377Ssam * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15185377Ssam * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16185377Ssam *
17203158Srpaulo * $FreeBSD$
18185377Ssam */
19185377Ssam#include "opt_ah.h"
20185377Ssam
21185377Ssam#include "ah.h"
22185377Ssam#include "ah_internal.h"
23185377Ssam#include "ah_devid.h"
24185377Ssam
25185377Ssam#include "ah_eeprom_v14.h"
26185377Ssam
27185377Ssam#include "ar5416/ar5416.h"
28185377Ssam#include "ar5416/ar5416reg.h"
29185377Ssam#include "ar5416/ar5416phy.h"
30185377Ssam
31185377Ssam/*
32185377Ssam * Read 16 bits of data from offset into *data
33185377Ssam */
34185377SsamHAL_BOOL
35185377Ssamar5416EepromRead(struct ath_hal *ah, u_int off, uint16_t *data)
36185377Ssam{
37185377Ssam        OS_REG_READ(ah,  AR5416_EEPROM_OFFSET + (off << AR5416_EEPROM_S));
38185377Ssam       	if (!ath_hal_wait(ah, AR_EEPROM_STATUS_DATA,
39185377Ssam	    AR_EEPROM_STATUS_DATA_BUSY | AR_EEPROM_STATUS_DATA_PROT_ACCESS, 0))
40185377Ssam		return AH_FALSE;
41185377Ssam       	*data = MS(OS_REG_READ(ah, AR_EEPROM_STATUS_DATA),
42185377Ssam		   AR_EEPROM_STATUS_DATA_VAL);
43185377Ssam	return AH_TRUE;
44185377Ssam}
45