mirror of
https://git.proxmox.com/git/grub2
synced 2025-05-17 17:41:37 +00:00

* grub-core/bus/bonito.c (grub_pci_device_map_range_cached): New function. (grub_pci_device_unmap_range): Handle non-cached address. * grub-core/video/sis315pro.c (framebuffer): Remove render_target and add direct_ptr. (grub_video_sis315pro_video_fini): Unmap direct_ptr. (grub_video_sis315pro_setup): Use cache address and grub_video_fb_setup. (grub_video_sis315pro_set_active_render_target): Removed. (grub_video_sis315pro_get_info_and_fini): Use uncached address. (grub_video_adapter): Use grub_video_fb_set_active_render_target. (grub_video_sis315pro_swap_buffers): Call grub_video_fb_swap_buffers and sync caches. * include/grub/mips/loongson/pci.h (grub_pci_device_map_range_cached): New proto.
124 lines
3.9 KiB
C
124 lines
3.9 KiB
C
/*
|
|
* GRUB -- GRand Unified Bootloader
|
|
* Copyright (C) 2008 Free Software Foundation, Inc.
|
|
*
|
|
* GRUB is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* GRUB is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef GRUB_MACHINE_PCI_H
|
|
#define GRUB_MACHINE_PCI_H 1
|
|
|
|
#ifndef ASM_FILE
|
|
#include <grub/types.h>
|
|
#include <grub/cpu/io.h>
|
|
#endif
|
|
|
|
#define GRUB_LOONGSON_OHCI_PCIID 0x00351033
|
|
#define GRUB_LOONGSON_EHCI_PCIID 0x00e01033
|
|
|
|
#define GRUB_PCI_NUM_BUS 1
|
|
#define GRUB_PCI_NUM_DEVICES 16
|
|
|
|
#define GRUB_MACHINE_PCI_IO_BASE 0xbfd00000
|
|
#define GRUB_MACHINE_PCI_CONFSPACE 0xbfe80000
|
|
#define GRUB_MACHINE_PCI_CONTROLLER_HEADER 0xbfe00000
|
|
|
|
#define GRUB_MACHINE_PCI_CONF_CTRL_REG_ADDR 0xbfe00118
|
|
|
|
#ifndef ASM_FILE
|
|
#define GRUB_MACHINE_PCI_CONF_CTRL_REG (*(volatile grub_uint32_t *) \
|
|
GRUB_MACHINE_PCI_CONF_CTRL_REG_ADDR)
|
|
#define GRUB_MACHINE_PCI_IO_CTRL_REG (*(volatile grub_uint32_t *) 0xbfe00110)
|
|
#endif
|
|
#define GRUB_MACHINE_PCI_WIN_MASK_SIZE 6
|
|
#define GRUB_MACHINE_PCI_WIN_MASK ((1 << GRUB_MACHINE_PCI_WIN_MASK_SIZE) - 1)
|
|
|
|
/* We have 3 PCI windows. */
|
|
#define GRUB_MACHINE_PCI_NUM_WIN 3
|
|
/* Each window is 64MiB. */
|
|
#define GRUB_MACHINE_PCI_WIN_SHIFT 26
|
|
#define GRUB_MACHINE_PCI_WIN_OFFSET_MASK ((1 << GRUB_MACHINE_PCI_WIN_SHIFT) - 1)
|
|
|
|
#define GRUB_MACHINE_PCI_WIN_SIZE 0x04000000
|
|
/* Graphical acceleration takes 1 MiB away. */
|
|
#define GRUB_MACHINE_PCI_WIN1_SIZE 0x03f00000
|
|
|
|
#define GRUB_MACHINE_PCI_WIN1_ADDR 0xb0000000
|
|
#define GRUB_MACHINE_PCI_WIN2_ADDR 0xb4000000
|
|
#define GRUB_MACHINE_PCI_WIN3_ADDR 0xb8000000
|
|
|
|
#ifndef ASM_FILE
|
|
static inline grub_uint32_t
|
|
grub_pci_read (grub_pci_address_t addr)
|
|
{
|
|
GRUB_MACHINE_PCI_CONF_CTRL_REG = 1 << ((addr >> 11) & 0xf);
|
|
return *(volatile grub_uint32_t *) (GRUB_MACHINE_PCI_CONFSPACE
|
|
| (addr & 0x07ff));
|
|
}
|
|
|
|
static inline grub_uint16_t
|
|
grub_pci_read_word (grub_pci_address_t addr)
|
|
{
|
|
GRUB_MACHINE_PCI_CONF_CTRL_REG = 1 << ((addr >> 11) & 0xf);
|
|
return *(volatile grub_uint16_t *) (GRUB_MACHINE_PCI_CONFSPACE
|
|
| (addr & 0x07ff));
|
|
}
|
|
|
|
static inline grub_uint8_t
|
|
grub_pci_read_byte (grub_pci_address_t addr)
|
|
{
|
|
GRUB_MACHINE_PCI_CONF_CTRL_REG = 1 << ((addr >> 11) & 0xf);
|
|
return *(volatile grub_uint8_t *) (GRUB_MACHINE_PCI_CONFSPACE
|
|
| (addr & 0x07ff));
|
|
}
|
|
|
|
static inline void
|
|
grub_pci_write (grub_pci_address_t addr, grub_uint32_t data)
|
|
{
|
|
GRUB_MACHINE_PCI_CONF_CTRL_REG = 1 << ((addr >> 11) & 0xf);
|
|
*(volatile grub_uint32_t *) (GRUB_MACHINE_PCI_CONFSPACE
|
|
| (addr & 0x07ff)) = data;
|
|
}
|
|
|
|
static inline void
|
|
grub_pci_write_word (grub_pci_address_t addr, grub_uint16_t data)
|
|
{
|
|
GRUB_MACHINE_PCI_CONF_CTRL_REG = 1 << ((addr >> 11) & 0xf);
|
|
*(volatile grub_uint16_t *) (GRUB_MACHINE_PCI_CONFSPACE
|
|
| (addr & 0x07ff)) = data;
|
|
}
|
|
|
|
static inline void
|
|
grub_pci_write_byte (grub_pci_address_t addr, grub_uint8_t data)
|
|
{
|
|
GRUB_MACHINE_PCI_CONF_CTRL_REG = 1 << ((addr >> 11) & 0xf);
|
|
*(volatile grub_uint8_t *) (GRUB_MACHINE_PCI_CONFSPACE
|
|
| (addr & 0x07ff)) = data;
|
|
}
|
|
|
|
volatile void *
|
|
EXPORT_FUNC (grub_pci_device_map_range) (grub_pci_device_t dev,
|
|
grub_addr_t base, grub_size_t size);
|
|
void *
|
|
EXPORT_FUNC (grub_pci_device_map_range_cached) (grub_pci_device_t dev,
|
|
grub_addr_t base,
|
|
grub_size_t size);
|
|
void
|
|
EXPORT_FUNC (grub_pci_device_unmap_range) (grub_pci_device_t dev,
|
|
volatile void *mem,
|
|
grub_size_t size);
|
|
#endif
|
|
|
|
#endif /* GRUB_MACHINE_PCI_H */
|