Subversion Repositories Kolibri OS

Rev

Rev 1239 | Rev 1268 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1239 Rev 1246
Line 858... Line 858...
858
}
858
}
Line 859... Line 859...
859
 
859
 
Line 860... Line -...
860
void r100_pll_errata_after_index(struct radeon_device *rdev);
-
 
861
 
-
 
862
 
-
 
863
 
-
 
864
enum chipset_type {
-
 
865
    NOT_SUPPORTED,
-
 
866
    SUPPORTED,
-
 
867
};
-
 
868
 
-
 
869
struct agp_version {
-
 
870
    u16_t major;
-
 
871
    u16_t minor;
-
 
872
};
-
 
873
 
-
 
874
struct agp_bridge_data;
-
 
875
 
-
 
876
struct agp_kern_info {
-
 
877
    struct agp_version version;
-
 
878
    struct pci_dev *device;
-
 
879
    enum chipset_type chipset;
-
 
880
    unsigned long mode;
-
 
881
    unsigned long aper_base;
-
 
882
    size_t aper_size;
-
 
883
    int max_memory;     /* In pages */
-
 
884
    int current_memory;
-
 
885
    bool cant_use_aperture;
-
 
886
    unsigned long page_mask;
-
 
887
//    struct vm_operations_struct *vm_ops;
-
 
888
};
-
 
889
 
-
 
890
 
-
 
891
/**
-
 
892
 * AGP data.
-
 
893
 *
-
 
894
 * \sa drm_agp_init() and drm_device::agp.
-
 
895
 */
-
 
896
struct drm_agp_head {
-
 
897
    struct agp_kern_info agp_info;      /**< AGP device information */
-
 
898
//    struct list_head memory;
-
 
899
    unsigned long mode;     /**< AGP mode */
-
 
900
    struct agp_bridge_data *bridge;
-
 
901
    int enabled;            /**< whether the AGP bus as been enabled */
-
 
902
    int acquired;           /**< whether the AGP device has been acquired */
-
 
903
    unsigned long base;
-
 
904
    int agp_mtrr;
-
 
905
    int cant_use_aperture;
-
 
906
    unsigned long page_mask;
-
 
907
};
-
 
908
 
860
void r100_pll_errata_after_index(struct radeon_device *rdev);
909
 
861
 
910
 
862
 
911
/*
863
/*
912
 * ASICs helpers.
864
 * ASICs helpers.