pdc_in_aop = true;
        else if (adreno_is_a618(adreno_gpu) || adreno_is_a640_family(adreno_gpu))
                pdc_address_offset = 0x30090;
+       else if (adreno_is_a619(adreno_gpu))
+               pdc_address_offset = 0x300a0;
        else
                pdc_address_offset = 0x30080;
 
 
        pdc_write(pdcptr, REG_A6XX_PDC_GPU_TCS3_CMD0_MSGID + 4, 0x10108);
        pdc_write(pdcptr, REG_A6XX_PDC_GPU_TCS3_CMD0_ADDR + 4, 0x30000);
-       if (adreno_is_a618(adreno_gpu) || adreno_is_a650_family(adreno_gpu))
+       if (adreno_is_a618(adreno_gpu) || adreno_is_a619(adreno_gpu) ||
+                       adreno_is_a650_family(adreno_gpu))
                pdc_write(pdcptr, REG_A6XX_PDC_GPU_TCS3_CMD0_DATA + 4, 0x2);
        else
                pdc_write(pdcptr, REG_A6XX_PDC_GPU_TCS3_CMD0_DATA + 4, 0x3);
                        SZ_16M - SZ_16K, 0x04000, "icache");
                if (ret)
                        goto err_memory;
+       /*
+        * NOTE: when porting legacy ("pre-650-family") GPUs you may be tempted to add a condition
+        * to allocate icache/dcache here, as per downstream code flow, but it may not actually be
+        * necessary. If you omit this step and you don't get random pagefaults, you are likely
+        * good to go without this!
+        */
        } else if (adreno_is_a640_family(adreno_gpu)) {
                ret = a6xx_gmu_memory_alloc(gmu, &gmu->icache,
                        SZ_256K - SZ_16K, 0x04000, "icache");
                        SZ_256K - SZ_16K, 0x44000, "dcache");
                if (ret)
                        goto err_memory;
-       } else {
+       } else if (adreno_is_a630(adreno_gpu) || adreno_is_a615_family(adreno_gpu)) {
                /* HFI v1, has sptprac */
                gmu->legacy = true;
 
 
        a6xx_flush(gpu, ring);
 }
 
+/* For a615 family (a615, a616, a618 and a619) */
+const struct adreno_reglist a615_hwcg[] = {
+       {REG_A6XX_RBBM_CLOCK_CNTL_SP0,  0x02222222},
+       {REG_A6XX_RBBM_CLOCK_CNTL2_SP0, 0x02222220},
+       {REG_A6XX_RBBM_CLOCK_DELAY_SP0, 0x00000080},
+       {REG_A6XX_RBBM_CLOCK_HYST_SP0,  0x0000F3CF},
+       {REG_A6XX_RBBM_CLOCK_CNTL_TP0,  0x02222222},
+       {REG_A6XX_RBBM_CLOCK_CNTL_TP1,  0x02222222},
+       {REG_A6XX_RBBM_CLOCK_CNTL2_TP0, 0x22222222},
+       {REG_A6XX_RBBM_CLOCK_CNTL2_TP1, 0x22222222},
+       {REG_A6XX_RBBM_CLOCK_CNTL3_TP0, 0x22222222},
+       {REG_A6XX_RBBM_CLOCK_CNTL3_TP1, 0x22222222},
+       {REG_A6XX_RBBM_CLOCK_CNTL4_TP0, 0x00022222},
+       {REG_A6XX_RBBM_CLOCK_CNTL4_TP1, 0x00022222},
+       {REG_A6XX_RBBM_CLOCK_HYST_TP0,  0x77777777},
+       {REG_A6XX_RBBM_CLOCK_HYST_TP1,  0x77777777},
+       {REG_A6XX_RBBM_CLOCK_HYST2_TP0, 0x77777777},
+       {REG_A6XX_RBBM_CLOCK_HYST2_TP1, 0x77777777},
+       {REG_A6XX_RBBM_CLOCK_HYST3_TP0, 0x77777777},
+       {REG_A6XX_RBBM_CLOCK_HYST3_TP1, 0x77777777},
+       {REG_A6XX_RBBM_CLOCK_HYST4_TP0, 0x00077777},
+       {REG_A6XX_RBBM_CLOCK_HYST4_TP1, 0x00077777},
+       {REG_A6XX_RBBM_CLOCK_DELAY_TP0, 0x11111111},
+       {REG_A6XX_RBBM_CLOCK_DELAY_TP1, 0x11111111},
+       {REG_A6XX_RBBM_CLOCK_DELAY2_TP0, 0x11111111},
+       {REG_A6XX_RBBM_CLOCK_DELAY2_TP1, 0x11111111},
+       {REG_A6XX_RBBM_CLOCK_DELAY3_TP0, 0x11111111},
+       {REG_A6XX_RBBM_CLOCK_DELAY3_TP1, 0x11111111},
+       {REG_A6XX_RBBM_CLOCK_DELAY4_TP0, 0x00011111},
+       {REG_A6XX_RBBM_CLOCK_DELAY4_TP1, 0x00011111},
+       {REG_A6XX_RBBM_CLOCK_CNTL_UCHE,  0x22222222},
+       {REG_A6XX_RBBM_CLOCK_CNTL2_UCHE, 0x22222222},
+       {REG_A6XX_RBBM_CLOCK_CNTL3_UCHE, 0x22222222},
+       {REG_A6XX_RBBM_CLOCK_CNTL4_UCHE, 0x00222222},
+       {REG_A6XX_RBBM_CLOCK_HYST_UCHE,  0x00000004},
+       {REG_A6XX_RBBM_CLOCK_DELAY_UCHE, 0x00000002},
+       {REG_A6XX_RBBM_CLOCK_CNTL_RB0, 0x22222222},
+       {REG_A6XX_RBBM_CLOCK_CNTL2_RB0, 0x00002222},
+       {REG_A6XX_RBBM_CLOCK_CNTL_CCU0, 0x00002020},
+       {REG_A6XX_RBBM_CLOCK_CNTL_CCU1, 0x00002220},
+       {REG_A6XX_RBBM_CLOCK_CNTL_CCU2, 0x00002220},
+       {REG_A6XX_RBBM_CLOCK_CNTL_CCU3, 0x00002220},
+       {REG_A6XX_RBBM_CLOCK_HYST_RB_CCU0, 0x00040F00},
+       {REG_A6XX_RBBM_CLOCK_HYST_RB_CCU1, 0x00040F00},
+       {REG_A6XX_RBBM_CLOCK_HYST_RB_CCU2, 0x00040F00},
+       {REG_A6XX_RBBM_CLOCK_HYST_RB_CCU3, 0x00040F00},
+       {REG_A6XX_RBBM_CLOCK_CNTL_RAC, 0x05022022},
+       {REG_A6XX_RBBM_CLOCK_CNTL2_RAC, 0x00005555},
+       {REG_A6XX_RBBM_CLOCK_DELAY_RAC, 0x00000011},
+       {REG_A6XX_RBBM_CLOCK_HYST_RAC, 0x00445044},
+       {REG_A6XX_RBBM_CLOCK_CNTL_TSE_RAS_RBBM, 0x04222222},
+       {REG_A6XX_RBBM_CLOCK_MODE_GPC, 0x00222222},
+       {REG_A6XX_RBBM_CLOCK_MODE_VFD, 0x00002222},
+       {REG_A6XX_RBBM_CLOCK_HYST_TSE_RAS_RBBM, 0x00000000},
+       {REG_A6XX_RBBM_CLOCK_HYST_GPC, 0x04104004},
+       {REG_A6XX_RBBM_CLOCK_HYST_VFD, 0x00000000},
+       {REG_A6XX_RBBM_CLOCK_DELAY_HLSQ, 0x00000000},
+       {REG_A6XX_RBBM_CLOCK_DELAY_TSE_RAS_RBBM, 0x00004000},
+       {REG_A6XX_RBBM_CLOCK_DELAY_GPC, 0x00000200},
+       {REG_A6XX_RBBM_CLOCK_DELAY_VFD, 0x00002222},
+       {REG_A6XX_RBBM_CLOCK_DELAY_HLSQ_2, 0x00000002},
+       {REG_A6XX_RBBM_CLOCK_MODE_HLSQ, 0x00002222},
+       {REG_A6XX_RBBM_CLOCK_CNTL_GMU_GX, 0x00000222},
+       {REG_A6XX_RBBM_CLOCK_DELAY_GMU_GX, 0x00000111},
+       {REG_A6XX_RBBM_CLOCK_HYST_GMU_GX, 0x00000555},
+       {},
+};
+
 const struct adreno_reglist a630_hwcg[] = {
        {REG_A6XX_RBBM_CLOCK_CNTL_SP0, 0x22222222},
        {REG_A6XX_RBBM_CLOCK_CNTL_SP1, 0x22222222},
        gpu_write(gpu, REG_A6XX_RBBM_CLOCK_CNTL, state ? clock_cntl_on : 0);
 }
 
-/* For a615, a616, a618, A619, a630, a640 and a680 */
+/* For a615, a616, a618, a619, a630, a640 and a680 */
 static const u32 a6xx_protect[] = {
        A6XX_PROTECT_RDONLY(0x00000, 0x04ff),
        A6XX_PROTECT_RDONLY(0x00501, 0x0005),
 
 {
        struct a6xx_hfi_msg_fw_version msg = { 0 };
 
-       /* Currently supporting version 1.1 */
-       msg.supported_version = (1 << 28) | (1 << 16);
+       /* Currently supporting version 1.10 */
+       msg.supported_version = (1 << 28) | (1 << 19) | (1 << 17);
 
        return a6xx_hfi_send_msg(gmu, HFI_H2F_MSG_FW_VERSION, &msg, sizeof(msg),
                version, sizeof(*version));
        msg->cnoc_cmds_data[1][0] =  0x60000001;
 }
 
+static void a619_build_bw_table(struct a6xx_hfi_msg_bw_table *msg)
+{
+       msg->bw_level_num = 13;
+
+       msg->ddr_cmds_num = 3;
+       msg->ddr_wait_bitmask = 0x0;
+
+       msg->ddr_cmds_addrs[0] = 0x50000;
+       msg->ddr_cmds_addrs[1] = 0x50004;
+       msg->ddr_cmds_addrs[2] = 0x50080;
+
+       msg->ddr_cmds_data[0][0]  = 0x40000000;
+       msg->ddr_cmds_data[0][1]  = 0x40000000;
+       msg->ddr_cmds_data[0][2]  = 0x40000000;
+       msg->ddr_cmds_data[1][0]  = 0x6000030c;
+       msg->ddr_cmds_data[1][1]  = 0x600000db;
+       msg->ddr_cmds_data[1][2]  = 0x60000008;
+       msg->ddr_cmds_data[2][0]  = 0x60000618;
+       msg->ddr_cmds_data[2][1]  = 0x600001b6;
+       msg->ddr_cmds_data[2][2]  = 0x60000008;
+       msg->ddr_cmds_data[3][0]  = 0x60000925;
+       msg->ddr_cmds_data[3][1]  = 0x60000291;
+       msg->ddr_cmds_data[3][2]  = 0x60000008;
+       msg->ddr_cmds_data[4][0]  = 0x60000dc1;
+       msg->ddr_cmds_data[4][1]  = 0x600003dc;
+       msg->ddr_cmds_data[4][2]  = 0x60000008;
+       msg->ddr_cmds_data[5][0]  = 0x600010ad;
+       msg->ddr_cmds_data[5][1]  = 0x600004ae;
+       msg->ddr_cmds_data[5][2]  = 0x60000008;
+       msg->ddr_cmds_data[6][0]  = 0x600014c3;
+       msg->ddr_cmds_data[6][1]  = 0x600005d4;
+       msg->ddr_cmds_data[6][2]  = 0x60000008;
+       msg->ddr_cmds_data[7][0]  = 0x6000176a;
+       msg->ddr_cmds_data[7][1]  = 0x60000693;
+       msg->ddr_cmds_data[7][2]  = 0x60000008;
+       msg->ddr_cmds_data[8][0]  = 0x60001f01;
+       msg->ddr_cmds_data[8][1]  = 0x600008b5;
+       msg->ddr_cmds_data[8][2]  = 0x60000008;
+       msg->ddr_cmds_data[9][0]  = 0x60002940;
+       msg->ddr_cmds_data[9][1]  = 0x60000b95;
+       msg->ddr_cmds_data[9][2]  = 0x60000008;
+       msg->ddr_cmds_data[10][0] = 0x60002f68;
+       msg->ddr_cmds_data[10][1] = 0x60000d50;
+       msg->ddr_cmds_data[10][2] = 0x60000008;
+       msg->ddr_cmds_data[11][0] = 0x60003700;
+       msg->ddr_cmds_data[11][1] = 0x60000f71;
+       msg->ddr_cmds_data[11][2] = 0x60000008;
+       msg->ddr_cmds_data[12][0] = 0x60003fce;
+       msg->ddr_cmds_data[12][1] = 0x600011ea;
+       msg->ddr_cmds_data[12][2] = 0x60000008;
+
+       msg->cnoc_cmds_num = 1;
+       msg->cnoc_wait_bitmask = 0x0;
+
+       msg->cnoc_cmds_addrs[0] = 0x50054;
+
+       msg->cnoc_cmds_data[0][0] = 0x40000000;
+}
+
 static void a640_build_bw_table(struct a6xx_hfi_msg_bw_table *msg)
 {
        /*
 
        if (adreno_is_a618(adreno_gpu))
                a618_build_bw_table(&msg);
+       else if (adreno_is_a619(adreno_gpu))
+               a619_build_bw_table(&msg);
        else if (adreno_is_a640_family(adreno_gpu))
                a640_build_bw_table(&msg);
        else if (adreno_is_a650(adreno_gpu))