| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 |
- /*
- * SPDX-FileCopyrightText: 2016-2021 Espressif Systems (Shanghai) CO LTD
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #ifndef PHY_INIT_DATA_H
- #define PHY_INIT_DATA_H /* don't use #pragma once here, we compile this file sometimes */
- #include "esp_phy_init.h"
- #include "sdkconfig.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- // constrain a value between 'low' and 'high', inclusive
- #define LIMIT(val, low, high) ((val < low) ? low : (val > high) ? high : val)
- #define PHY_INIT_MAGIC "PHYINIT"
- // define the lowest tx power as LOWEST_PHY_TX_POWER
- #define PHY_TX_POWER_LOWEST LIMIT(CONFIG_ESP_PHY_MAX_TX_POWER * 4, 0, 52)
- #define PHY_TX_POWER_OFFSET 44
- #define PHY_TX_POWER_NUM 5
- #if CONFIG_ESP_PHY_MULTIPLE_INIT_DATA_BIN
- #define PHY_CRC_ALGORITHM 1
- #define PHY_COUNTRY_CODE_LEN 2
- #define PHY_INIT_DATA_TYPE_OFFSET 126
- #define PHY_SUPPORT_MULTIPLE_BIN_OFFSET 125
- #endif
- static const char __attribute__((section(".rodata"))) phy_init_magic_pre[] = PHY_INIT_MAGIC;
- /**
- * @brief Structure containing default recommended PHY initialization parameters.
- */
- static const esp_phy_init_data_t phy_init_data= { {
- 0x00,
- 0x00,
- LIMIT(CONFIG_ESP_PHY_MAX_TX_POWER * 4, 0, 0x50),
- LIMIT(CONFIG_ESP_PHY_MAX_TX_POWER * 4, 0, 0x50),
- LIMIT(CONFIG_ESP_PHY_MAX_TX_POWER * 4, 0, 0x50),
- LIMIT(CONFIG_ESP_PHY_MAX_TX_POWER * 4, 0, 0x4c),
- LIMIT(CONFIG_ESP_PHY_MAX_TX_POWER * 4, 0, 0x4c),
- LIMIT(CONFIG_ESP_PHY_MAX_TX_POWER * 4, 0, 0x48),
- LIMIT(CONFIG_ESP_PHY_MAX_TX_POWER * 4, 0, 0x4c),
- LIMIT(CONFIG_ESP_PHY_MAX_TX_POWER * 4, 0, 0x48),
- LIMIT(CONFIG_ESP_PHY_MAX_TX_POWER * 4, 0, 0x48),
- LIMIT(CONFIG_ESP_PHY_MAX_TX_POWER * 4, 0, 0x44),
- LIMIT(CONFIG_ESP_PHY_MAX_TX_POWER * 4, 0, 0x4a),
- LIMIT(CONFIG_ESP_PHY_MAX_TX_POWER * 4, 0, 0x46),
- LIMIT(CONFIG_ESP_PHY_MAX_TX_POWER * 4, 0, 0x46),
- LIMIT(CONFIG_ESP_PHY_MAX_TX_POWER * 4, 0, 0x42),
- 0x00,
- 0x00,
- 0x00,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0xff,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0,
- 0x74
- } };
- static const char __attribute__((section(".rodata"))) phy_init_magic_post[] = PHY_INIT_MAGIC;
- #if CONFIG_ESP_PHY_MULTIPLE_INIT_DATA_BIN
- /**
- * @brief PHY init data control infomation structure
- */
- typedef struct {
- uint8_t control_info_checksum[4]; /*!< 4-byte control infomation checksum */
- uint8_t multiple_bin_checksum[4]; /*!< 4-byte multiple bin checksum */
- uint8_t check_algorithm; /*!< check algorithm */
- uint8_t version; /*!< PHY init data bin version */
- uint8_t number; /*!< PHY init data bin number */
- uint8_t length[2]; /*!< Length of each PHY init data bin */
- uint8_t reserved[19]; /*!< 19-byte reserved */
- } __attribute__ ((packed)) phy_control_info_data_t;
- /**
- * @brief Country corresponds to PHY init data type structure
- */
- typedef struct {
- char cc[PHY_COUNTRY_CODE_LEN];
- uint8_t type;
- } phy_country_to_bin_type_t;
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif /* PHY_INIT_DATA_H */
|