Changeset 54861ca in mainline
- Timestamp:
- 2016-10-31T23:16:37Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 340513c
- Parents:
- 6c34be69
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/platform/sun4u/sun4u.c
r6c34be69 r54861ca 59 59 #define PBM_SIZE UINT64_C(0x00200000000) 60 60 61 #define PBM_PCI_CONFIG_ OFFSETUINT64_C(0x00001000000)61 #define PBM_PCI_CONFIG_BASE UINT64_C(0x00001000000) 62 62 #define PBM_PCI_CONFIG_SIZE UINT64_C(0x00001000000) 63 64 #define PBM_PCI_IO_BASE UINT64_C(0x00002000000) 65 #define PBM_PCI_IO_SIZE UINT64_C(0x00001000000) 66 67 #define PBM_PCI_MEM_BASE UINT64_C(0x00100000000) 68 #define PBM_PCI_MEM_SIZE UINT64_C(0x00100000000) 63 69 64 70 typedef struct sun4u_fun { … … 85 91 .type = MEM_RANGE, 86 92 .res.mem_range = { 87 .address = PBM_ PCI_CONFIG_OFFSET,93 .address = PBM_BASE + PBM_PCI_CONFIG_BASE, 88 94 .size = PBM_PCI_CONFIG_SIZE, 89 .relative = true,95 .relative = false, 90 96 .endianness = LITTLE_ENDIAN 91 97 } … … 100 106 .pio_window = { 101 107 .mem = { 102 .base = PBM_BASE ,103 .size = PBM_ SIZE108 .base = PBM_BASE + PBM_PCI_MEM_BASE, 109 .size = PBM_PCI_MEM_SIZE 104 110 }, 105 111 .io = { 106 .base = PBM_BASE ,107 .size = PBM_ SIZE112 .base = PBM_BASE + PBM_PCI_IO_BASE, 113 .size = PBM_PCI_IO_SIZE 108 114 } 109 115 }
Note:
See TracChangeset
for help on using the changeset viewer.