123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539 |
- /* SPDX-License-Identifier: GPL-2.0-only */
- /*
- * Copyright (c) 2017-2018, The Linux Foundation. All rights reserved.
- * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
- */
- #ifndef _CPASTOP100_H_
- #define _CPASTOP100_H_
- #define TEST_IRQ_ENABLE 0
- static struct cam_camnoc_irq_sbm cam_cpas100_irq_sbm = {
- .sbm_enable = {
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .enable = true,
- .offset = 0x2040, /* SBM_FAULTINEN0_LOW */
- .value = 0x1 | /* SBM_FAULTINEN0_LOW_PORT0_MASK*/
- 0x2 | /* SBM_FAULTINEN0_LOW_PORT1_MASK */
- 0x4 | /* SBM_FAULTINEN0_LOW_PORT2_MASK */
- 0x8 | /* SBM_FAULTINEN0_LOW_PORT3_MASK */
- 0x10 | /* SBM_FAULTINEN0_LOW_PORT4_MASK */
- 0x20 | /* SBM_FAULTINEN0_LOW_PORT5_MASK */
- (TEST_IRQ_ENABLE ?
- 0x100 : /* SBM_FAULTINEN0_LOW_PORT8_MASK */
- 0x0),
- },
- .sbm_status = {
- .access_type = CAM_REG_TYPE_READ,
- .enable = true,
- .offset = 0x2048, /* SBM_FAULTINSTATUS0_LOW */
- },
- .sbm_clear = {
- .access_type = CAM_REG_TYPE_WRITE,
- .enable = true,
- .offset = 0x2080, /* SBM_FLAGOUTCLR0_LOW */
- .value = TEST_IRQ_ENABLE ? 0x6 : 0x2,
- }
- };
- static struct cam_camnoc_irq_err
- cam_cpas100_irq_err[] = {
- {
- .irq_type = CAM_CAMNOC_HW_IRQ_SLAVE_ERROR,
- .enable = true,
- .sbm_port = 0x1, /* SBM_FAULTINSTATUS0_LOW_PORT0_MASK */
- .err_enable = {
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .enable = true,
- .offset = 0x2708, /* ERRLOGGER_MAINCTL_LOW */
- .value = 1,
- },
- .err_status = {
- .access_type = CAM_REG_TYPE_READ,
- .enable = true,
- .offset = 0x2710, /* ERRLOGGER_ERRVLD_LOW */
- },
- .err_clear = {
- .access_type = CAM_REG_TYPE_WRITE,
- .enable = true,
- .offset = 0x2718, /* ERRLOGGER_ERRCLR_LOW */
- .value = 1,
- },
- },
- {
- .irq_type = CAM_CAMNOC_HW_IRQ_IFE02_UBWC_ENCODE_ERROR,
- .enable = true,
- .sbm_port = 0x2, /* SBM_FAULTINSTATUS0_LOW_PORT1_MASK */
- .err_enable = {
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .enable = true,
- .offset = 0x5a0, /* SPECIFIC_IFE02_ENCERREN_LOW */
- .value = 1,
- },
- .err_status = {
- .access_type = CAM_REG_TYPE_READ,
- .enable = true,
- .offset = 0x590, /* SPECIFIC_IFE02_ENCERRSTATUS_LOW */
- },
- .err_clear = {
- .access_type = CAM_REG_TYPE_WRITE,
- .enable = true,
- .offset = 0x598, /* SPECIFIC_IFE02_ENCERRCLR_LOW */
- .value = 1,
- },
- },
- {
- .irq_type = CAM_CAMNOC_HW_IRQ_IFE13_UBWC_ENCODE_ERROR,
- .enable = true,
- .sbm_port = 0x4, /* SBM_FAULTINSTATUS0_LOW_PORT2_MASK */
- .err_enable = {
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .enable = true,
- .offset = 0x9a0, /* SPECIFIC_IFE13_ENCERREN_LOW */
- .value = 1,
- },
- .err_status = {
- .access_type = CAM_REG_TYPE_READ,
- .enable = true,
- .offset = 0x990, /* SPECIFIC_IFE13_ENCERRSTATUS_LOW */
- },
- .err_clear = {
- .access_type = CAM_REG_TYPE_WRITE,
- .enable = true,
- .offset = 0x998, /* SPECIFIC_IFE13_ENCERRCLR_LOW */
- .value = 1,
- },
- },
- {
- .irq_type = CAM_CAMNOC_HW_IRQ_IPE_BPS_UBWC_DECODE_ERROR,
- .enable = true,
- .sbm_port = 0x8, /* SBM_FAULTINSTATUS0_LOW_PORT3_MASK */
- .err_enable = {
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .enable = true,
- .offset = 0xd20, /* SPECIFIC_IBL_RD_DECERREN_LOW */
- .value = 1,
- },
- .err_status = {
- .access_type = CAM_REG_TYPE_READ,
- .enable = true,
- .offset = 0xd10, /* SPECIFIC_IBL_RD_DECERRSTATUS_LOW */
- },
- .err_clear = {
- .access_type = CAM_REG_TYPE_WRITE,
- .enable = true,
- .offset = 0xd18, /* SPECIFIC_IBL_RD_DECERRCLR_LOW */
- .value = 1,
- },
- },
- {
- .irq_type = CAM_CAMNOC_HW_IRQ_IPE_BPS_UBWC_ENCODE_ERROR,
- .enable = true,
- .sbm_port = 0x10, /* SBM_FAULTINSTATUS0_LOW_PORT4_MASK */
- .err_enable = {
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .enable = true,
- .offset = 0x11a0, /* SPECIFIC_IBL_WR_ENCERREN_LOW */
- .value = 1,
- },
- .err_status = {
- .access_type = CAM_REG_TYPE_READ,
- .enable = true,
- .offset = 0x1190,
- /* SPECIFIC_IBL_WR_ENCERRSTATUS_LOW */
- },
- .err_clear = {
- .access_type = CAM_REG_TYPE_WRITE,
- .enable = true,
- .offset = 0x1198, /* SPECIFIC_IBL_WR_ENCERRCLR_LOW */
- .value = 1,
- },
- },
- {
- .irq_type = CAM_CAMNOC_HW_IRQ_AHB_TIMEOUT,
- .enable = true,
- .sbm_port = 0x20, /* SBM_FAULTINSTATUS0_LOW_PORT5_MASK */
- .err_enable = {
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .enable = true,
- .offset = 0x2088, /* SBM_FLAGOUTSET0_LOW */
- .value = 0x1,
- },
- .err_status = {
- .access_type = CAM_REG_TYPE_READ,
- .enable = true,
- .offset = 0x2090, /* SBM_FLAGOUTSTATUS0_LOW */
- },
- .err_clear = {
- .enable = false,
- },
- },
- {
- .irq_type = CAM_CAMNOC_HW_IRQ_RESERVED1,
- .enable = false,
- },
- {
- .irq_type = CAM_CAMNOC_HW_IRQ_RESERVED2,
- .enable = false,
- },
- {
- .irq_type = CAM_CAMNOC_HW_IRQ_CAMNOC_TEST,
- .enable = TEST_IRQ_ENABLE ? true : false,
- .sbm_port = 0x100, /* SBM_FAULTINSTATUS0_LOW_PORT8_MASK */
- .err_enable = {
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .enable = true,
- .offset = 0x2088, /* SBM_FLAGOUTSET0_LOW */
- .value = 0x5,
- },
- .err_status = {
- .access_type = CAM_REG_TYPE_READ,
- .enable = true,
- .offset = 0x2090, /* SBM_FLAGOUTSTATUS0_LOW */
- },
- .err_clear = {
- .enable = false,
- },
- },
- };
- static struct cam_camnoc_specific
- cam_cpas100_camnoc_specific[] = {
- {
- .port_type = CAM_CAMNOC_CDM,
- .enable = true,
- .priority_lut_low = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0x30, /* SPECIFIC_CDM_PRIORITYLUT_LOW */
- .value = 0x22222222,
- },
- .priority_lut_high = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0x34, /* SPECIFIC_CDM_PRIORITYLUT_HIGH */
- .value = 0x22222222,
- },
- .urgency = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 1,
- .offset = 0x38, /* SPECIFIC_CDM_URGENCY_LOW */
- .mask = 0x7, /* SPECIFIC_CDM_URGENCY_LOW_READ_MASK */
- .shift = 0x0, /* SPECIFIC_CDM_URGENCY_LOW_READ_SHIFT */
- .value = 0,
- },
- .danger_lut = {
- .enable = false,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0x40, /* SPECIFIC_CDM_DANGERLUT_LOW */
- .value = 0x0,
- },
- .safe_lut = {
- .enable = false,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0x48, /* SPECIFIC_CDM_SAFELUT_LOW */
- .value = 0x0,
- },
- .ubwc_ctl = {
- .enable = false,
- },
- },
- {
- .port_type = CAM_CAMNOC_IFE02,
- .enable = true,
- .priority_lut_low = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0x430, /* SPECIFIC_IFE02_PRIORITYLUT_LOW */
- .value = 0x66665433,
- },
- .priority_lut_high = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0x434, /* SPECIFIC_IFE02_PRIORITYLUT_HIGH */
- .value = 0x66666666,
- },
- .urgency = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 1,
- .offset = 0x438, /* SPECIFIC_IFE02_URGENCY_LOW */
- /* SPECIFIC_IFE02_URGENCY_LOW_WRITE_MASK */
- .mask = 0x70,
- /* SPECIFIC_IFE02_URGENCY_LOW_WRITE_SHIFT */
- .shift = 0x4,
- .value = 3,
- },
- .danger_lut = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .offset = 0x440, /* SPECIFIC_IFE02_DANGERLUT_LOW */
- .value = 0xFFFFFF00,
- },
- .safe_lut = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .offset = 0x448, /* SPECIFIC_IFE02_SAFELUT_LOW */
- .value = 0x3,
- },
- .ubwc_ctl = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0x588, /* SPECIFIC_IFE02_ENCCTL_LOW */
- .value = 1,
- },
- },
- {
- .port_type = CAM_CAMNOC_IFE13,
- .enable = true,
- .priority_lut_low = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0x830, /* SPECIFIC_IFE13_PRIORITYLUT_LOW */
- .value = 0x66665433,
- },
- .priority_lut_high = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0x834, /* SPECIFIC_IFE13_PRIORITYLUT_HIGH */
- .value = 0x66666666,
- },
- .urgency = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 1,
- .offset = 0x838, /* SPECIFIC_IFE13_URGENCY_LOW */
- /* SPECIFIC_IFE13_URGENCY_LOW_WRITE_MASK */
- .mask = 0x70,
- /* SPECIFIC_IFE13_URGENCY_LOW_WRITE_SHIFT */
- .shift = 0x4,
- .value = 3,
- },
- .danger_lut = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .offset = 0x840, /* SPECIFIC_IFE13_DANGERLUT_LOW */
- .value = 0xFFFFFF00,
- },
- .safe_lut = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .offset = 0x848, /* SPECIFIC_IFE13_SAFELUT_LOW */
- .value = 0x3,
- },
- .ubwc_ctl = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0x988, /* SPECIFIC_IFE13_ENCCTL_LOW */
- .value = 1,
- },
- },
- {
- .port_type = CAM_CAMNOC_IPE_BPS_LRME_READ,
- .enable = true,
- .priority_lut_low = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0xc30, /* SPECIFIC_IBL_RD_PRIORITYLUT_LOW */
- .value = 0x33333333,
- },
- .priority_lut_high = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0xc34, /* SPECIFIC_IBL_RD_PRIORITYLUT_HIGH */
- .value = 0x33333333,
- },
- .urgency = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 1,
- .offset = 0xc38, /* SPECIFIC_IBL_RD_URGENCY_LOW */
- /* SPECIFIC_IBL_RD_URGENCY_LOW_READ_MASK */
- .mask = 0x7,
- /* SPECIFIC_IBL_RD_URGENCY_LOW_READ_SHIFT */
- .shift = 0x0,
- .value = 3,
- },
- .danger_lut = {
- .enable = false,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0xc40, /* SPECIFIC_IBL_RD_DANGERLUT_LOW */
- .value = 0x0,
- },
- .safe_lut = {
- .enable = false,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0xc48, /* SPECIFIC_IBL_RD_SAFELUT_LOW */
- .value = 0x0,
- },
- .ubwc_ctl = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0xd08, /* SPECIFIC_IBL_RD_DECCTL_LOW */
- .value = 1,
- },
- },
- {
- .port_type = CAM_CAMNOC_IPE_BPS_LRME_WRITE,
- .enable = true,
- .priority_lut_low = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0x1030, /* SPECIFIC_IBL_WR_PRIORITYLUT_LOW */
- .value = 0x33333333,
- },
- .priority_lut_high = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0x1034, /* SPECIFIC_IBL_WR_PRIORITYLUT_HIGH */
- .value = 0x33333333,
- },
- .urgency = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 1,
- .offset = 0x1038, /* SPECIFIC_IBL_WR_URGENCY_LOW */
- /* SPECIFIC_IBL_WR_URGENCY_LOW_WRITE_MASK */
- .mask = 0x70,
- /* SPECIFIC_IBL_WR_URGENCY_LOW_WRITE_SHIFT */
- .shift = 0x4,
- .value = 3,
- },
- .danger_lut = {
- .enable = false,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0x1040, /* SPECIFIC_IBL_WR_DANGERLUT_LOW */
- .value = 0x0,
- },
- .safe_lut = {
- .enable = false,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0x1048, /* SPECIFIC_IBL_WR_SAFELUT_LOW */
- .value = 0x0,
- },
- .ubwc_ctl = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0x1188, /* SPECIFIC_IBL_WR_ENCCTL_LOW */
- .value = 1,
- },
- },
- {
- .port_type = CAM_CAMNOC_JPEG,
- .enable = true,
- .priority_lut_low = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0x1430, /* SPECIFIC_JPEG_PRIORITYLUT_LOW */
- .value = 0x22222222,
- },
- .priority_lut_high = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0x1434, /* SPECIFIC_JPEG_PRIORITYLUT_HIGH */
- .value = 0x22222222,
- },
- .urgency = {
- .enable = true,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0x1438, /* SPECIFIC_JPEG_URGENCY_LOW */
- .value = 0x22,
- },
- .danger_lut = {
- .enable = false,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0x1440, /* SPECIFIC_JPEG_DANGERLUT_LOW */
- .value = 0x0,
- },
- .safe_lut = {
- .enable = false,
- .access_type = CAM_REG_TYPE_READ_WRITE,
- .masked_value = 0,
- .offset = 0x1448, /* SPECIFIC_JPEG_SAFELUT_LOW */
- .value = 0x0,
- },
- .ubwc_ctl = {
- .enable = false,
- },
- },
- {
- .port_type = CAM_CAMNOC_FD,
- .enable = false,
- },
- {
- .port_type = CAM_CAMNOC_ICP,
- .enable = false,
- }
- };
- static struct cam_camnoc_err_logger_info cam170_cpas100_err_logger_offsets = {
- .mainctrl = 0x2708, /* ERRLOGGER_MAINCTL_LOW */
- .errvld = 0x2710, /* ERRLOGGER_ERRVLD_LOW */
- .errlog0_low = 0x2720, /* ERRLOGGER_ERRLOG0_LOW */
- .errlog0_high = 0x2724, /* ERRLOGGER_ERRLOG0_HIGH */
- .errlog1_low = 0x2728, /* ERRLOGGER_ERRLOG1_LOW */
- .errlog1_high = 0x272c, /* ERRLOGGER_ERRLOG1_HIGH */
- .errlog2_low = 0x2730, /* ERRLOGGER_ERRLOG2_LOW */
- .errlog2_high = 0x2734, /* ERRLOGGER_ERRLOG2_HIGH */
- .errlog3_low = 0x2738, /* ERRLOGGER_ERRLOG3_LOW */
- .errlog3_high = 0x273c, /* ERRLOGGER_ERRLOG3_HIGH */
- };
- static struct cam_cpas_hw_errata_wa_list cam170_cpas100_errata_wa_list = {
- .camnoc_flush_slave_pending_trans = {
- .enable = true,
- .data.reg_info = {
- .access_type = CAM_REG_TYPE_READ,
- .offset = 0x2100, /* SidebandManager_SenseIn0_Low */
- .mask = 0xE0000, /* Bits 17, 18, 19 */
- .value = 0, /* expected to be 0 */
- },
- },
- };
- struct cam_camnoc_info cam170_cpas100_camnoc_info = {
- .specific = &cam_cpas100_camnoc_specific[0],
- .specific_size = sizeof(cam_cpas100_camnoc_specific) /
- sizeof(cam_cpas100_camnoc_specific[0]),
- .irq_sbm = &cam_cpas100_irq_sbm,
- .irq_err = &cam_cpas100_irq_err[0],
- .irq_err_size = sizeof(cam_cpas100_irq_err) /
- sizeof(cam_cpas100_irq_err[0]),
- .err_logger = &cam170_cpas100_err_logger_offsets,
- .errata_wa_list = &cam170_cpas100_errata_wa_list,
- };
- static struct cam_cpas_info cam170_cpas100_cpas_info = {
- .hw_caps_info = {
- .num_caps_registers = 1,
- .hw_caps_offsets = {0x8},
- },
- };
- #endif /* _CPASTOP100_H_ */
|