| Index: chromeos/drivers/ath6kl/miscdrv/ar3kps/ar3kpsconfig.h
|
| diff --git a/chromeos/drivers/ath6kl/miscdrv/ar3kps/ar3kpsconfig.h b/chromeos/drivers/ath6kl/miscdrv/ar3kps/ar3kpsconfig.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2dd664e477982c8ba0013efdfd79c1cb612bc782
|
| --- /dev/null
|
| +++ b/chromeos/drivers/ath6kl/miscdrv/ar3kps/ar3kpsconfig.h
|
| @@ -0,0 +1,74 @@
|
| +/*
|
| + * Copyright (c) 2004-2008 Atheros Communications Inc.
|
| + * All rights reserved.
|
| + *
|
| + * This file defines the symbols exported by Atheros PS and patch download module.
|
| + * define the constant HCI_TRANSPORT_SDIO if the module is being used for HCI SDIO transport.
|
| + * defined.
|
| + *
|
| + *
|
| + * ar3kcpsconfig.h
|
| + *
|
| + *
|
| + *
|
| + * The software source and binaries included in this development package are
|
| + * licensed, not sold. You, or your company, received the package under one
|
| + * or more license agreements. The rights granted to you are specifically
|
| + * listed in these license agreement(s). All other rights remain with Atheros
|
| + * Communications, Inc., its subsidiaries, or the respective owner including
|
| + * those listed on the included copyright notices.. Distribution of any
|
| + * portion of this package must be in strict compliance with the license
|
| + * agreement(s) terms.
|
| + *
|
| + *
|
| + *
|
| + */
|
| +
|
| +
|
| +
|
| +#ifndef __AR3KPSCONFIG_H
|
| +#define __AR3KPSCONFIG_H
|
| +
|
| +/*
|
| + * Define the flag HCI_TRANSPORT_SDIO and undefine HCI_TRANSPORT_UART if the transport being used is SDIO.
|
| + */
|
| +#undef HCI_TRANSPORT_UART
|
| +
|
| +#include <linux/fs.h>
|
| +#include <linux/errno.h>
|
| +#include <linux/string.h>
|
| +#include <linux/signal.h>
|
| +#include <linux/timer.h>
|
| +
|
| +
|
| +#include <linux/ioctl.h>
|
| +#include <linux/skbuff.h>
|
| +#include <linux/firmware.h>
|
| +#include <linux/wait.h>
|
| +
|
| +
|
| +#include <net/bluetooth/bluetooth.h>
|
| +#include <net/bluetooth/hci_core.h>
|
| +
|
| +#include "ar3kpsparser.h"
|
| +
|
| +#define FPGA_REGISTER 0x4FFC
|
| +
|
| +
|
| +#define PS_ASIC_FILE "PS_ASIC.pst"
|
| +#define PS_FPGA_FILE "PS_FPGA.pst"
|
| +
|
| +#define PATCH_FILE "RamPatch.txt"
|
| +#define BDADDR_FILE "ar3kbdaddr.pst"
|
| +
|
| +
|
| +#ifndef HCI_TRANSPORT_SDIO
|
| +#define AR3K_CONFIG_INFO struct hci_dev
|
| +extern wait_queue_head_t HciEvent;
|
| +extern wait_queue_t Eventwait;
|
| +extern A_UCHAR *HciEventpacket;
|
| +#endif /* #ifndef HCI_TRANSPORT_SDIO */
|
| +
|
| +A_STATUS AthPSInitialize(AR3K_CONFIG_INFO *hdev);
|
| +A_STATUS ReadPSEvent(A_UCHAR* Data);
|
| +#endif /* __AR3KPSCONFIG_H */
|
|
|