[update][lhal] update lhal

* update lhal api comments
* add cam driver
* add efuse driver
* add iso11898 driver
This commit is contained in:
jzlv 2022-12-21 20:20:33 +08:00
parent 185805cbbe
commit a77b0dc866
60 changed files with 8782 additions and 429 deletions

View file

@ -205,6 +205,34 @@ struct bflb_device_s bl616_device_table[] = {
.sub_idx = 0,
.dev_type = BFLB_DEVICE_TYPE_IR,
.user_data = NULL },
{ .name = "cam0",
.reg_base = DVP2AXI0_BASE,
.irq_num = BL616_IRQ_DVP2BUS_INT0,
.idx = 0,
.sub_idx = 0,
.dev_type = BFLB_DEVICE_TYPE_CAMERA,
.user_data = NULL },
{ .name = "cam1",
.reg_base = DVP2AXI1_BASE,
.irq_num = BL616_IRQ_DVP2BUS_INT1,
.idx = 0,
.sub_idx = 0,
.dev_type = BFLB_DEVICE_TYPE_CAMERA,
.user_data = NULL },
{ .name = "audac",
.reg_base = AUDAC_BASE,
.irq_num = BL616_IRQ_AUDAC,
.idx = 0,
.sub_idx = 0,
.dev_type = BFLB_DEVICE_TYPE_AUDIODAC,
.user_data = NULL },
{ .name = "sdio2",
.reg_base = SDU_BASE,
.irq_num = BL616_IRQ_SDIO,
.idx = 0,
.sub_idx = 0,
.dev_type = BFLB_DEVICE_TYPE_SDIO2,
.user_data = NULL },
};
struct bflb_device_s *bflb_device_get_by_name(const char *name)