mirror of
				https://git.suyu.dev/suyu/suyu.git
				synced 2025-11-04 12:34:39 +08:00 
			
		
		
		
	GPU: Added the TSC registers to the Maxwell3D register structure.
This commit is contained in:
		
							parent
							
								
									cff7b29bba
								
							
						
					
					
						commit
						dcae0c9a4f
					
				@ -62,7 +62,20 @@ public:
 | 
			
		||||
 | 
			
		||||
        union {
 | 
			
		||||
            struct {
 | 
			
		||||
                INSERT_PADDING_WORDS(0x55D);
 | 
			
		||||
                INSERT_PADDING_WORDS(0x557);
 | 
			
		||||
 | 
			
		||||
                struct {
 | 
			
		||||
                    u32 tsc_address_high;
 | 
			
		||||
                    u32 tsc_address_low;
 | 
			
		||||
                    u32 tsc_limit;
 | 
			
		||||
 | 
			
		||||
                    GPUVAddr TSCAddress() const {
 | 
			
		||||
                        return static_cast<GPUVAddr>(
 | 
			
		||||
                            (static_cast<GPUVAddr>(tsc_address_high) << 32) | tsc_address_low);
 | 
			
		||||
                    }
 | 
			
		||||
                } tsc;
 | 
			
		||||
 | 
			
		||||
                INSERT_PADDING_WORDS(0x3);
 | 
			
		||||
 | 
			
		||||
                struct {
 | 
			
		||||
                    u32 tic_address_high;
 | 
			
		||||
@ -278,6 +291,7 @@ private:
 | 
			
		||||
    static_assert(offsetof(Maxwell3D::Regs, field_name) == position * 4,                           \
 | 
			
		||||
                  "Field " #field_name " has invalid position")
 | 
			
		||||
 | 
			
		||||
ASSERT_REG_POSITION(tsc, 0x557);
 | 
			
		||||
ASSERT_REG_POSITION(tic, 0x55D);
 | 
			
		||||
ASSERT_REG_POSITION(code_address, 0x582);
 | 
			
		||||
ASSERT_REG_POSITION(draw, 0x585);
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user