state.c 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. #include "bsp/gpio.h"
  2. #include "bsp/ml5238.h"
  3. #include "bsp/uart.h"
  4. #include "bsp/mcu_power_sleep.h"
  5. #include "app/sox/measure.h"
  6. #include "app/sox/measure_task.h"
  7. #include "libs/shark_task.h"
  8. #include "libs/logger.h"
  9. #include "app/nv_storage.h"
  10. #include "health.h"
  11. #include "soc.h"
  12. #include "state.h"
  13. #include "iostate.h"
  14. #define ALLOW_DEEP_SLEEP 0
  15. #define ALLOW_POWER_DOWN 0 //disable power down for debug
  16. #define ALLOW_5238_BALANCE 1
  17. static void _current_notify(void);
  18. static void _voltage_notify(void);
  19. static void _temperature_notify(void);
  20. static u32 _bms_main_task_handler(void);
  21. static void _balance_timer_handler(shark_timer_t *t);
  22. static bms_state_t _bms_state;
  23. static shark_task_t _bms_main_task = {.handler = _bms_main_task_handler};
  24. static shark_timer_t _balance_timer = {.handler = _balance_timer_handler};
  25. void bms_state_init(void){
  26. set_log_level(MOD_STATE, L_debug);
  27. state_debug("BMS System Starting......\n");
  28. _bms_state.cell_index_of_max_vol = 0xff;
  29. measure_task_init(_current_notify, _voltage_notify, _temperature_notify);
  30. io_state_init();
  31. health_init();
  32. soc_init();
  33. shark_task_add(&_bms_main_task);
  34. }
  35. bms_state_t *bms_state_get(void){
  36. return &_bms_state;
  37. }
  38. /*
  39. 放电mos和充电mos的开关要小心:
  40. 1. 大部分的情况下,尽量能做到同时开关,主要是用来保护被关闭那路mos的体二极管(不能过大电流)
  41. 2. 充电过压的情况下,必须要关闭充电mos,但是这个时候放电mos可能是打开的,这样的情况下,
  42. 需要检测放电电流,超过10A必须强制打开充电mos,防止烧充电mos的体二极管
  43. 3. 收到打开大电的指令后,必须两个mos都要打开,然后再经过2的判断
  44. 。。。。。
  45. */
  46. static void discharger_open(int open){
  47. /* 打开大电前,先打开短路保护*/
  48. if (open) {
  49. ml5238_short_current_detect(SHORT_CURRENT_MODE_100A_200A);//SP600:100A, SP700:200A
  50. }else {
  51. ml5238_short_current_detect(SHORT_CURRENT_MODE_DISABLE);
  52. }
  53. ml5238_enable_discharger_mosfet(open);
  54. }
  55. static void charger_open(int open) {
  56. ml5238_enable_charger_mosfet(open);
  57. }
  58. #define Health_Success 0
  59. #define Health_Discharger_Failt 1
  60. #define Health_charger_Fault 2
  61. #define Health_aux_Fault 4
  62. static s32 _process_unheath(void){
  63. if (bms_health()->load_current_short) {//短路检测后,关闭充放电mos
  64. discharger_open(0);
  65. charger_open(0); //disable charger mosfet
  66. AUX_VOL_OPEN(0);
  67. _bms_state.charging = 0;
  68. return (Health_Discharger_Failt | Health_charger_Fault);
  69. }
  70. if (bms_health()->charger_over_current || bms_health()->charger_over_temp || bms_health()->charger_lower_temp){
  71. charger_open(0); //disable charger mosfet
  72. _bms_state.charging = 0;
  73. return Health_charger_Fault;
  74. }
  75. if (bms_health()->discharger_over_temp || bms_health()->discharger_lower_temp || bms_health()->discharger_lower_voltage){
  76. discharger_open(0); //disable charger mosfet
  77. return Health_Discharger_Failt;
  78. }
  79. if (io_state()->aux_lock_detect || bms_health()->small_current_short) {
  80. return Health_aux_Fault;
  81. }
  82. return Health_Success;
  83. }
  84. //处理PS100/310/320/360,充电底座,充电柜的指令或者bms自己发给自己的指令
  85. static void _process_user_request(s32 health){
  86. if (_bms_state.user_request & USER_REQUEST_PENDING){
  87. if ((health & Health_charger_Fault) == 0){
  88. charger_open(!!(_bms_state.user_request & USER_REQUEST_CHARGER));
  89. }
  90. if ((health & Health_Discharger_Failt) == 0){
  91. discharger_open(!!(_bms_state.user_request & USER_REQUEST_DISCHARGER));
  92. }
  93. if ((health & Health_aux_Fault) == 0){
  94. AUX_VOL_OPEN(!!(_bms_state.user_request & USER_REQUEST_SMALLCURRENT));
  95. }
  96. _bms_state.user_request &= ~USER_REQUEST_PENDING;//clear user request pending
  97. }
  98. }
  99. static void _process_power_down(void){
  100. #if (ALLOW_POWER_DOWN==1)
  101. if (bms_health()->powerdown_lower_voltage){
  102. state_debug("BMS System PowerDown!!\n");
  103. nv_save_soc();
  104. ml5238_enable_charger_detect(AUX_VOL_IS_OPEN(), 1);
  105. delay_us(2* 1000);
  106. shark_uart_flush();
  107. if (!ml5238_charger_is_disconnect(AUX_VOL_IS_OPEN())){//have charger, do'nt power down
  108. bms_health()->powerdown_lower_voltage = 0;
  109. ml5238_enable_charger_detect(AUX_VOL_IS_OPEN(), 0);
  110. return;
  111. }
  112. ml5238_enable_charger_detect(AUX_VOL_IS_OPEN(), 0);
  113. AUX_VOL_OPEN(0);
  114. discharger_open(0);
  115. charger_open(0);
  116. /*需要等待B-和P-之间的电容放电掉后,才能设置5238 power down,
  117. 否则5238会触发充电器插入检测,导致重新开机,进入powerdown <->开机的无限循环*/
  118. ml5238_enable_charger_detect(AUX_VOL_IS_OPEN(), 1);
  119. delay_us(2* 1000);
  120. u64 wait_start = shark_get_mseconds();
  121. while(!ml5238_charger_is_disconnect(AUX_VOL_IS_OPEN())){
  122. shark_uart_flush();
  123. if (shark_get_mseconds() - wait_start >= 2000){
  124. bms_health()->powerdown_lower_voltage = 0;
  125. ml5238_enable_charger_detect(AUX_VOL_IS_OPEN(), 0);
  126. return;
  127. }
  128. }
  129. CS1180_PWR_ENABLE(0);
  130. DCDC_VOL_OPEN(0);
  131. ml5238_power_down();
  132. }
  133. #endif
  134. }
  135. static void _process_deepsleep(s32 health){
  136. #if (ALLOW_DEEP_SLEEP==1)
  137. if (health != Health_Success){
  138. return;
  139. }
  140. if (ml5238_is_charging() || ml5238_is_discharging() || IS_CHARGER_IN()){
  141. return;
  142. }
  143. if(io_state()->hall_detect){
  144. return;
  145. }
  146. /*if (红外或者485通信没有超时){
  147. return;
  148. }*/
  149. if (!AUX_VOL_IS_OPEN()) {
  150. AUX_VOL_OPEN(1);
  151. delay_us(5000);//delay 5ms, to detect if short current
  152. }
  153. if (io_state()->aux_lock_detect){
  154. return;
  155. }
  156. nv_save_soc();
  157. mcu_enter_deepsleep();
  158. #endif
  159. }
  160. static void _process_iostate_changed(void){
  161. if (!(io_state()->hall_detect)){
  162. if (ml5238_is_discharging()){
  163. discharger_open(0);
  164. }
  165. if (!AUX_VOL_IS_OPEN()){
  166. AUX_VOL_OPEN(1);
  167. }
  168. }
  169. if (IS_CHARGER_IN()) {
  170. if (!ml5238_is_charging()){
  171. charger_open(1);
  172. }
  173. }
  174. }
  175. static u32 _bms_main_task_handler(void){
  176. s32 unhealth = _process_unheath();
  177. _process_user_request(unhealth);
  178. _process_deepsleep(unhealth);
  179. _process_power_down();
  180. _process_iostate_changed();
  181. return 0;
  182. }
  183. static debounce_t _charging_detect = {.count = 10, .max_count = 20, .init_count = 10};
  184. static void check_charging(){
  185. if ((measure_value()->load_current >= MIN_START_CHARGER_CURRENT) && !_bms_state.charging) {
  186. debounce_inc(_charging_detect);
  187. if (debounce_reach_max(_charging_detect)){
  188. _bms_state.charging = 1;
  189. debounce_reset(_charging_detect);
  190. }
  191. }else if ((measure_value()->load_current < MIN_START_CHARGER_CURRENT) && _bms_state.charging){
  192. debounce_dec(_charging_detect);
  193. if (debounce_reach_zero(_charging_detect)){
  194. _bms_state.charging = 0;
  195. debounce_reset(_charging_detect);
  196. }
  197. }
  198. }
  199. /* if discharger mos and charger mos, one is open but other is closed.
  200. we must judage the current: if current is large than 10A(-10A),
  201. we must open the closed mos to avoid the closed mos to be destroyed
  202. */
  203. #define MIN_CURRENT_FOR_BOTH_MOS_OPEN (10 * 1000)
  204. static int _min_current_for_both_mos_count = 0;
  205. static void _check_mos_stat(void){
  206. if (abs(measure_value()->load_current) >= MIN_CURRENT_FOR_BOTH_MOS_OPEN){
  207. _min_current_for_both_mos_count ++;
  208. if (_min_current_for_both_mos_count == 2){
  209. int dmos = ml5238_is_discharging();
  210. int cmos = ml5238_is_charging();
  211. if (dmos + cmos == 0){
  212. state_error("current = %d, but all mos is closed\n", measure_value()->load_current);
  213. return;
  214. }
  215. if (dmos == 1 && cmos == 1){
  216. return;
  217. }
  218. uint32_t request = USER_REQUEST_PENDING;
  219. if (!dmos) {
  220. request |= USER_REQUEST_DISCHARGER;
  221. }else {
  222. request |= USER_REQUEST_CHARGER;
  223. }
  224. _bms_state.user_request = request;
  225. }
  226. }else {
  227. _min_current_for_both_mos_count = 0;
  228. }
  229. }
  230. static void _current_notify(void){
  231. check_current_state(); //check health of current
  232. check_charging();
  233. _check_mos_stat();
  234. soc_update(); //计算soc
  235. }
  236. /* 需要检查电芯的电压,如果发现有电芯电压过高,需要开启被动均衡
  237. * 充电过程中考虑balance,主要是希望cell 电压扩散后,保证1. 单电芯不能过压, 2. 单电芯不能比平均电压过低,导致
  238. * 木桶效应,目标是电压最高的那个cell,尽量压制,不让电压再升高,或者升高的尽量慢一些
  239. */
  240. static debounce_t _cell_balance = {.count = 10, .max_count = 20};
  241. static void _balance_timer_handler(shark_timer_t *t){
  242. ml5238_cell_start_balance(0);
  243. _bms_state.pack_balancing = 0;
  244. }
  245. static void check_cell_balance(uint8_t current_max_index){
  246. if (!_bms_state.charging){ //not charging, need not do balance
  247. if (_bms_state.pack_balancing){
  248. _bms_state.pack_balancing = 0;
  249. _cell_balance.count = 10;
  250. ml5238_cell_start_balance(0);
  251. }
  252. return;
  253. }
  254. if (!_bms_state.pack_balancing && _bms_state.cell_min_vol < CELL_FUSION_VOLTAGE){
  255. return;
  256. }
  257. if (_bms_state.cell_max_vol - _bms_state.cell_min_vol >= MAX_DIFF_BETWEEN_MIN_MAX_CELL){
  258. debounce_inc(_cell_balance);
  259. }else {
  260. debounce_dec(_cell_balance);
  261. }
  262. if (!_bms_state.pack_balancing && debounce_reach_max(_cell_balance)){
  263. _bms_state.pack_balancing = 1;
  264. }else if (_bms_state.pack_balancing && debounce_reach_zero(_cell_balance)){
  265. _bms_state.pack_balancing = 0;
  266. ml5238_cell_start_balance(0);
  267. }
  268. if (_bms_state.pack_balancing && (current_max_index != _bms_state.cell_index_of_max_vol)){
  269. ml5238_cell_start_balance(BIT(current_max_index));
  270. shark_timer_post(&_balance_timer, 60 * 1000); //stop balance after 1 minute
  271. }
  272. _bms_state.cell_index_of_max_vol = current_max_index;
  273. }
  274. static uint8_t calc_cell_voltage(void){
  275. uint16_t voltage = 0;
  276. uint16_t max_cell = 0;
  277. uint16_t min_cell = 0xf000;
  278. uint8_t max_index = 0;
  279. for (int i = 0; i < CELLS_NUM; i++){
  280. voltage += measure_value()->cell_vol[i];
  281. if (max_cell > measure_value()->cell_vol[i]){
  282. max_cell = measure_value()->cell_vol[i];
  283. max_index = i;
  284. }
  285. if (min_cell < measure_value()->cell_vol[i]){
  286. min_cell = measure_value()->cell_vol[i];
  287. }
  288. }
  289. _bms_state.pack_voltage = voltage;
  290. _bms_state.cell_max_vol = max_cell;
  291. _bms_state.cell_min_vol = min_cell;
  292. return max_index;
  293. }
  294. static void _voltage_notify(void){
  295. uint8_t max_index = calc_cell_voltage();
  296. check_voltage_state(); //check health of cell voltage
  297. #if (ALLOW_5238_BALANCE==1)
  298. check_cell_balance(max_index);
  299. #endif
  300. }
  301. static void _temperature_notify(void){
  302. check_temp_state(); //check health of cell/pcb temperature
  303. }