| 1 | /*************************************************************************** |
|---|
| 2 | * Copyright (c) 2005, Broadcom Corporation |
|---|
| 3 | * All Rights Reserved |
|---|
| 4 | * Confidential Property of Broadcom Corporation |
|---|
| 5 | * |
|---|
| 6 | * THIS SOFTWARE MAY ONLY BE USED SUBJECT TO AN EXECUTED SOFTWARE LICENSE |
|---|
| 7 | * AGREEMENT BETWEEN THE USER AND BROADCOM. YOU HAVE NO RIGHT TO USE OR |
|---|
| 8 | * EXPLOIT THIS MATERIAL EXCEPT SUBJECT TO THE TERMS OF SUCH AN AGREEMENT. |
|---|
| 9 | * |
|---|
| 10 | * $brcm_Workfile: bads_priv.h $ |
|---|
| 11 | * $brcm_Revision: Hydra_Software_Devel/1 $ |
|---|
| 12 | * $brcm_Date: 12/13/05 2:55p $ |
|---|
| 13 | * |
|---|
| 14 | * Module Description: |
|---|
| 15 | * |
|---|
| 16 | * Revision History: |
|---|
| 17 | * |
|---|
| 18 | * $brcm_Log: /magnum/portinginterface/ads/bads_priv.h $ |
|---|
| 19 | * |
|---|
| 20 | * Hydra_Software_Devel/1 12/13/05 2:55p dlwin |
|---|
| 21 | * PR 18598: Add new ADS for 3255 |
|---|
| 22 | * |
|---|
| 23 | ***************************************************************************/ |
|---|
| 24 | |
|---|
| 25 | #ifndef BADS_PRIV_H__ |
|---|
| 26 | #define BADS_PRIV_H__ |
|---|
| 27 | |
|---|
| 28 | #include "bchp.h" |
|---|
| 29 | #include "bads.h" |
|---|
| 30 | |
|---|
| 31 | #ifdef __cplusplus |
|---|
| 32 | extern "C" { |
|---|
| 33 | #endif |
|---|
| 34 | |
|---|
| 35 | |
|---|
| 36 | |
|---|
| 37 | /*************************************************************************** |
|---|
| 38 | Summary: |
|---|
| 39 | The handle for Qam In-Band Downstream module. |
|---|
| 40 | |
|---|
| 41 | Description: |
|---|
| 42 | |
|---|
| 43 | See Also: |
|---|
| 44 | BADS_Open() |
|---|
| 45 | |
|---|
| 46 | ****************************************************************************/ |
|---|
| 47 | typedef struct BADS_P_Handle |
|---|
| 48 | { |
|---|
| 49 | uint32_t magicId; /* Used to check if structure is corrupt */ |
|---|
| 50 | BADS_Settings settings; |
|---|
| 51 | |
|---|
| 52 | void *pImpl; /* Device specific structure */ |
|---|
| 53 | } BADS_P_Handle; |
|---|
| 54 | |
|---|
| 55 | /*************************************************************************** |
|---|
| 56 | Summary: |
|---|
| 57 | The handle for Qam In-Band Downstream module. |
|---|
| 58 | |
|---|
| 59 | Description: |
|---|
| 60 | |
|---|
| 61 | See Also: |
|---|
| 62 | BADS_OpenChannel() |
|---|
| 63 | |
|---|
| 64 | ****************************************************************************/ |
|---|
| 65 | typedef struct BADS_P_ChannelHandle |
|---|
| 66 | { |
|---|
| 67 | uint32_t magicId; /* Used to check if structure is corrupt */ |
|---|
| 68 | BADS_Handle hAds; |
|---|
| 69 | |
|---|
| 70 | void *pImpl; /* Device specific structure */ |
|---|
| 71 | } BADS_P_ChannelHandle; |
|---|
| 72 | |
|---|
| 73 | |
|---|
| 74 | |
|---|
| 75 | #ifdef __cplusplus |
|---|
| 76 | } |
|---|
| 77 | #endif |
|---|
| 78 | |
|---|
| 79 | #endif |
|---|
| 80 | |
|---|