diff options
Diffstat (limited to 'include')
68 files changed, 1345 insertions, 314 deletions
diff --git a/include/asm-alpha/bitops.h b/include/asm-alpha/bitops.h index 4b6ef7f21b93..3a0cbeb03fa1 100644 --- a/include/asm-alpha/bitops.h +++ b/include/asm-alpha/bitops.h | |||
| @@ -313,32 +313,29 @@ static inline int ffs(int word) | |||
| 313 | * fls: find last bit set. | 313 | * fls: find last bit set. |
| 314 | */ | 314 | */ |
| 315 | #if defined(CONFIG_ALPHA_EV6) && defined(CONFIG_ALPHA_EV67) | 315 | #if defined(CONFIG_ALPHA_EV6) && defined(CONFIG_ALPHA_EV67) |
| 316 | static inline int fls(int word) | 316 | static inline int fls64(unsigned long word) |
| 317 | { | 317 | { |
| 318 | return 64 - __kernel_ctlz(word & 0xffffffff); | 318 | return 64 - __kernel_ctlz(word); |
| 319 | } | 319 | } |
| 320 | #else | 320 | #else |
| 321 | #include <asm-generic/bitops/fls.h> | 321 | extern const unsigned char __flsm1_tab[256]; |
| 322 | #endif | ||
| 323 | #include <asm-generic/bitops/fls64.h> | ||
| 324 | 322 | ||
| 325 | /* Compute powers of two for the given integer. */ | 323 | static inline int fls64(unsigned long x) |
| 326 | static inline long floor_log2(unsigned long word) | ||
| 327 | { | 324 | { |
| 328 | #if defined(CONFIG_ALPHA_EV6) && defined(CONFIG_ALPHA_EV67) | 325 | unsigned long t, a, r; |
| 329 | return 63 - __kernel_ctlz(word); | 326 | |
| 330 | #else | 327 | t = __kernel_cmpbge (x, 0x0101010101010101); |
| 331 | long bit; | 328 | a = __flsm1_tab[t]; |
| 332 | for (bit = -1; word ; bit++) | 329 | t = __kernel_extbl (x, a); |
| 333 | word >>= 1; | 330 | r = a*8 + __flsm1_tab[t] + (x != 0); |
| 334 | return bit; | 331 | |
| 335 | #endif | 332 | return r; |
| 336 | } | 333 | } |
| 334 | #endif | ||
| 337 | 335 | ||
| 338 | static inline long ceil_log2(unsigned long word) | 336 | static inline int fls(int x) |
| 339 | { | 337 | { |
| 340 | long bit = floor_log2(word); | 338 | return fls64((unsigned int) x); |
| 341 | return bit + (word > (1UL << bit)); | ||
| 342 | } | 339 | } |
| 343 | 340 | ||
| 344 | /* | 341 | /* |
| @@ -353,9 +350,20 @@ static inline unsigned long hweight64(unsigned long w) | |||
| 353 | return __kernel_ctpop(w); | 350 | return __kernel_ctpop(w); |
| 354 | } | 351 | } |
| 355 | 352 | ||
| 356 | #define hweight32(x) (unsigned int) hweight64((x) & 0xfffffffful) | 353 | static inline unsigned int hweight32(unsigned int w) |
| 357 | #define hweight16(x) (unsigned int) hweight64((x) & 0xfffful) | 354 | { |
| 358 | #define hweight8(x) (unsigned int) hweight64((x) & 0xfful) | 355 | return hweight64(w); |
| 356 | } | ||
| 357 | |||
| 358 | static inline unsigned int hweight16(unsigned int w) | ||
| 359 | { | ||
| 360 | return hweight64(w & 0xffff); | ||
| 361 | } | ||
| 362 | |||
| 363 | static inline unsigned int hweight8(unsigned int w) | ||
| 364 | { | ||
| 365 | return hweight64(w & 0xff); | ||
| 366 | } | ||
| 359 | #else | 367 | #else |
| 360 | #include <asm-generic/bitops/hweight.h> | 368 | #include <asm-generic/bitops/hweight.h> |
| 361 | #endif | 369 | #endif |
diff --git a/include/asm-alpha/core_t2.h b/include/asm-alpha/core_t2.h index 457c34b6eb09..90e6b5d6c214 100644 --- a/include/asm-alpha/core_t2.h +++ b/include/asm-alpha/core_t2.h | |||
| @@ -437,9 +437,15 @@ static inline void t2_outl(u32 b, unsigned long addr) | |||
| 437 | 437 | ||
| 438 | static DEFINE_SPINLOCK(t2_hae_lock); | 438 | static DEFINE_SPINLOCK(t2_hae_lock); |
| 439 | 439 | ||
| 440 | /* | ||
| 441 | * NOTE: take T2_DENSE_MEM off in each readX/writeX routine, since | ||
| 442 | * they may be called directly, rather than through the | ||
| 443 | * ioreadNN/iowriteNN routines. | ||
| 444 | */ | ||
| 445 | |||
| 440 | __EXTERN_INLINE u8 t2_readb(const volatile void __iomem *xaddr) | 446 | __EXTERN_INLINE u8 t2_readb(const volatile void __iomem *xaddr) |
| 441 | { | 447 | { |
| 442 | unsigned long addr = (unsigned long) xaddr; | 448 | unsigned long addr = (unsigned long) xaddr - T2_DENSE_MEM; |
| 443 | unsigned long result, msb; | 449 | unsigned long result, msb; |
| 444 | unsigned long flags; | 450 | unsigned long flags; |
| 445 | spin_lock_irqsave(&t2_hae_lock, flags); | 451 | spin_lock_irqsave(&t2_hae_lock, flags); |
| @@ -453,7 +459,7 @@ __EXTERN_INLINE u8 t2_readb(const volatile void __iomem *xaddr) | |||
| 453 | 459 | ||
| 454 | __EXTERN_INLINE u16 t2_readw(const volatile void __iomem *xaddr) | 460 | __EXTERN_INLINE u16 t2_readw(const volatile void __iomem *xaddr) |
| 455 | { | 461 | { |
| 456 | unsigned long addr = (unsigned long) xaddr; | 462 | unsigned long addr = (unsigned long) xaddr - T2_DENSE_MEM; |
| 457 | unsigned long result, msb; | 463 | unsigned long result, msb; |
| 458 | unsigned long flags; | 464 | unsigned long flags; |
| 459 | spin_lock_irqsave(&t2_hae_lock, flags); | 465 | spin_lock_irqsave(&t2_hae_lock, flags); |
| @@ -471,7 +477,7 @@ __EXTERN_INLINE u16 t2_readw(const volatile void __iomem *xaddr) | |||
| 471 | */ | 477 | */ |
| 472 | __EXTERN_INLINE u32 t2_readl(const volatile void __iomem *xaddr) | 478 | __EXTERN_INLINE u32 t2_readl(const volatile void __iomem *xaddr) |
| 473 | { | 479 | { |
| 474 | unsigned long addr = (unsigned long) xaddr; | 480 | unsigned long addr = (unsigned long) xaddr - T2_DENSE_MEM; |
| 475 | unsigned long result, msb; | 481 | unsigned long result, msb; |
| 476 | unsigned long flags; | 482 | unsigned long flags; |
| 477 | spin_lock_irqsave(&t2_hae_lock, flags); | 483 | spin_lock_irqsave(&t2_hae_lock, flags); |
| @@ -485,7 +491,7 @@ __EXTERN_INLINE u32 t2_readl(const volatile void __iomem *xaddr) | |||
| 485 | 491 | ||
| 486 | __EXTERN_INLINE u64 t2_readq(const volatile void __iomem *xaddr) | 492 | __EXTERN_INLINE u64 t2_readq(const volatile void __iomem *xaddr) |
| 487 | { | 493 | { |
| 488 | unsigned long addr = (unsigned long) xaddr; | 494 | unsigned long addr = (unsigned long) xaddr - T2_DENSE_MEM; |
| 489 | unsigned long r0, r1, work, msb; | 495 | unsigned long r0, r1, work, msb; |
| 490 | unsigned long flags; | 496 | unsigned long flags; |
| 491 | spin_lock_irqsave(&t2_hae_lock, flags); | 497 | spin_lock_irqsave(&t2_hae_lock, flags); |
| @@ -501,7 +507,7 @@ __EXTERN_INLINE u64 t2_readq(const volatile void __iomem *xaddr) | |||
| 501 | 507 | ||
| 502 | __EXTERN_INLINE void t2_writeb(u8 b, volatile void __iomem *xaddr) | 508 | __EXTERN_INLINE void t2_writeb(u8 b, volatile void __iomem *xaddr) |
| 503 | { | 509 | { |
| 504 | unsigned long addr = (unsigned long) xaddr; | 510 | unsigned long addr = (unsigned long) xaddr - T2_DENSE_MEM; |
| 505 | unsigned long msb, w; | 511 | unsigned long msb, w; |
| 506 | unsigned long flags; | 512 | unsigned long flags; |
| 507 | spin_lock_irqsave(&t2_hae_lock, flags); | 513 | spin_lock_irqsave(&t2_hae_lock, flags); |
| @@ -515,7 +521,7 @@ __EXTERN_INLINE void t2_writeb(u8 b, volatile void __iomem *xaddr) | |||
| 515 | 521 | ||
| 516 | __EXTERN_INLINE void t2_writew(u16 b, volatile void __iomem *xaddr) | 522 | __EXTERN_INLINE void t2_writew(u16 b, volatile void __iomem *xaddr) |
| 517 | { | 523 | { |
| 518 | unsigned long addr = (unsigned long) xaddr; | 524 | unsigned long addr = (unsigned long) xaddr - T2_DENSE_MEM; |
| 519 | unsigned long msb, w; | 525 | unsigned long msb, w; |
| 520 | unsigned long flags; | 526 | unsigned long flags; |
| 521 | spin_lock_irqsave(&t2_hae_lock, flags); | 527 | spin_lock_irqsave(&t2_hae_lock, flags); |
| @@ -533,7 +539,7 @@ __EXTERN_INLINE void t2_writew(u16 b, volatile void __iomem *xaddr) | |||
| 533 | */ | 539 | */ |
| 534 | __EXTERN_INLINE void t2_writel(u32 b, volatile void __iomem *xaddr) | 540 | __EXTERN_INLINE void t2_writel(u32 b, volatile void __iomem *xaddr) |
| 535 | { | 541 | { |
| 536 | unsigned long addr = (unsigned long) xaddr; | 542 | unsigned long addr = (unsigned long) xaddr - T2_DENSE_MEM; |
| 537 | unsigned long msb; | 543 | unsigned long msb; |
| 538 | unsigned long flags; | 544 | unsigned long flags; |
| 539 | spin_lock_irqsave(&t2_hae_lock, flags); | 545 | spin_lock_irqsave(&t2_hae_lock, flags); |
| @@ -546,7 +552,7 @@ __EXTERN_INLINE void t2_writel(u32 b, volatile void __iomem *xaddr) | |||
| 546 | 552 | ||
| 547 | __EXTERN_INLINE void t2_writeq(u64 b, volatile void __iomem *xaddr) | 553 | __EXTERN_INLINE void t2_writeq(u64 b, volatile void __iomem *xaddr) |
| 548 | { | 554 | { |
| 549 | unsigned long addr = (unsigned long) xaddr; | 555 | unsigned long addr = (unsigned long) xaddr - T2_DENSE_MEM; |
| 550 | unsigned long msb, work; | 556 | unsigned long msb, work; |
| 551 | unsigned long flags; | 557 | unsigned long flags; |
| 552 | spin_lock_irqsave(&t2_hae_lock, flags); | 558 | spin_lock_irqsave(&t2_hae_lock, flags); |
| @@ -587,14 +593,14 @@ __EXTERN_INLINE int t2_is_mmio(const volatile void __iomem *addr) | |||
| 587 | __EXTERN_INLINE unsigned int t2_ioread##NS(void __iomem *xaddr) \ | 593 | __EXTERN_INLINE unsigned int t2_ioread##NS(void __iomem *xaddr) \ |
| 588 | { \ | 594 | { \ |
| 589 | if (t2_is_mmio(xaddr)) \ | 595 | if (t2_is_mmio(xaddr)) \ |
| 590 | return t2_read##OS(xaddr - T2_DENSE_MEM); \ | 596 | return t2_read##OS(xaddr); \ |
| 591 | else \ | 597 | else \ |
| 592 | return t2_in##OS((unsigned long)xaddr - T2_IO); \ | 598 | return t2_in##OS((unsigned long)xaddr - T2_IO); \ |
| 593 | } \ | 599 | } \ |
| 594 | __EXTERN_INLINE void t2_iowrite##NS(u##NS b, void __iomem *xaddr) \ | 600 | __EXTERN_INLINE void t2_iowrite##NS(u##NS b, void __iomem *xaddr) \ |
| 595 | { \ | 601 | { \ |
| 596 | if (t2_is_mmio(xaddr)) \ | 602 | if (t2_is_mmio(xaddr)) \ |
| 597 | t2_write##OS(b, xaddr - T2_DENSE_MEM); \ | 603 | t2_write##OS(b, xaddr); \ |
| 598 | else \ | 604 | else \ |
| 599 | t2_out##OS(b, (unsigned long)xaddr - T2_IO); \ | 605 | t2_out##OS(b, (unsigned long)xaddr - T2_IO); \ |
| 600 | } | 606 | } |
diff --git a/include/asm-alpha/core_titan.h b/include/asm-alpha/core_titan.h index a64ccbff7d98..a17f6f33b68e 100644 --- a/include/asm-alpha/core_titan.h +++ b/include/asm-alpha/core_titan.h | |||
| @@ -380,12 +380,7 @@ struct el_PRIVATEER_envdata_mcheck { | |||
| 380 | /* | 380 | /* |
| 381 | * Memory functions. all accesses are done through linear space. | 381 | * Memory functions. all accesses are done through linear space. |
| 382 | */ | 382 | */ |
| 383 | 383 | extern void __iomem *titan_ioportmap(unsigned long addr); | |
| 384 | __EXTERN_INLINE void __iomem *titan_ioportmap(unsigned long addr) | ||
| 385 | { | ||
| 386 | return (void __iomem *)(addr + TITAN_IO_BIAS); | ||
| 387 | } | ||
| 388 | |||
| 389 | extern void __iomem *titan_ioremap(unsigned long addr, unsigned long size); | 384 | extern void __iomem *titan_ioremap(unsigned long addr, unsigned long size); |
| 390 | extern void titan_iounmap(volatile void __iomem *addr); | 385 | extern void titan_iounmap(volatile void __iomem *addr); |
| 391 | 386 | ||
diff --git a/include/asm-alpha/core_tsunami.h b/include/asm-alpha/core_tsunami.h index 44e635d2c571..58d4fe48742c 100644 --- a/include/asm-alpha/core_tsunami.h +++ b/include/asm-alpha/core_tsunami.h | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | #define __ALPHA_TSUNAMI__H__ | 2 | #define __ALPHA_TSUNAMI__H__ |
| 3 | 3 | ||
| 4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
| 5 | #include <linux/pci.h> | ||
| 5 | #include <asm/compiler.h> | 6 | #include <asm/compiler.h> |
| 6 | 7 | ||
| 7 | /* | 8 | /* |
| @@ -302,18 +303,8 @@ struct el_TSUNAMI_sysdata_mcheck { | |||
| 302 | /* | 303 | /* |
| 303 | * Memory functions. all accesses are done through linear space. | 304 | * Memory functions. all accesses are done through linear space. |
| 304 | */ | 305 | */ |
| 305 | 306 | extern void __iomem *tsunami_ioportmap(unsigned long addr); | |
| 306 | __EXTERN_INLINE void __iomem *tsunami_ioportmap(unsigned long addr) | 307 | extern void __iomem *tsunami_ioremap(unsigned long addr, unsigned long size); |
| 307 | { | ||
| 308 | return (void __iomem *)(addr + TSUNAMI_IO_BIAS); | ||
| 309 | } | ||
| 310 | |||
| 311 | __EXTERN_INLINE void __iomem *tsunami_ioremap(unsigned long addr, | ||
| 312 | unsigned long size) | ||
| 313 | { | ||
| 314 | return (void __iomem *)(addr + TSUNAMI_MEM_BIAS); | ||
| 315 | } | ||
| 316 | |||
| 317 | __EXTERN_INLINE int tsunami_is_ioaddr(unsigned long addr) | 308 | __EXTERN_INLINE int tsunami_is_ioaddr(unsigned long addr) |
| 318 | { | 309 | { |
| 319 | return addr >= TSUNAMI_BASE; | 310 | return addr >= TSUNAMI_BASE; |
diff --git a/include/asm-alpha/core_wildfire.h b/include/asm-alpha/core_wildfire.h index 12af803d445a..cd562f544ba2 100644 --- a/include/asm-alpha/core_wildfire.h +++ b/include/asm-alpha/core_wildfire.h | |||
| @@ -295,7 +295,7 @@ __EXTERN_INLINE int wildfire_is_ioaddr(unsigned long addr) | |||
| 295 | 295 | ||
| 296 | __EXTERN_INLINE int wildfire_is_mmio(const volatile void __iomem *xaddr) | 296 | __EXTERN_INLINE int wildfire_is_mmio(const volatile void __iomem *xaddr) |
| 297 | { | 297 | { |
| 298 | unsigned long addr = (unsigned long)addr; | 298 | unsigned long addr = (unsigned long)xaddr; |
| 299 | return (addr & 0x100000000UL) == 0; | 299 | return (addr & 0x100000000UL) == 0; |
| 300 | } | 300 | } |
| 301 | 301 | ||
diff --git a/include/asm-alpha/thread_info.h b/include/asm-alpha/thread_info.h index f4defc2bd3fb..48a22e3e6f32 100644 --- a/include/asm-alpha/thread_info.h +++ b/include/asm-alpha/thread_info.h | |||
| @@ -76,12 +76,14 @@ register struct thread_info *__current_thread_info __asm__("$8"); | |||
| 76 | #define TIF_UAC_NOFIX 7 | 76 | #define TIF_UAC_NOFIX 7 |
| 77 | #define TIF_UAC_SIGBUS 8 | 77 | #define TIF_UAC_SIGBUS 8 |
| 78 | #define TIF_MEMDIE 9 | 78 | #define TIF_MEMDIE 9 |
| 79 | #define TIF_RESTORE_SIGMASK 10 /* restore signal mask in do_signal */ | ||
| 79 | 80 | ||
| 80 | #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) | 81 | #define _TIF_SYSCALL_TRACE (1<<TIF_SYSCALL_TRACE) |
| 81 | #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME) | 82 | #define _TIF_NOTIFY_RESUME (1<<TIF_NOTIFY_RESUME) |
| 82 | #define _TIF_SIGPENDING (1<<TIF_SIGPENDING) | 83 | #define _TIF_SIGPENDING (1<<TIF_SIGPENDING) |
| 83 | #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED) | 84 | #define _TIF_NEED_RESCHED (1<<TIF_NEED_RESCHED) |
| 84 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) | 85 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) |
| 86 | #define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK) | ||
| 85 | 87 | ||
| 86 | /* Work to do on interrupt/exception return. */ | 88 | /* Work to do on interrupt/exception return. */ |
| 87 | #define _TIF_WORK_MASK (_TIF_NOTIFY_RESUME \ | 89 | #define _TIF_WORK_MASK (_TIF_NOTIFY_RESUME \ |
diff --git a/include/asm-alpha/unistd.h b/include/asm-alpha/unistd.h index e58a427012dd..29bf2fdc91c0 100644 --- a/include/asm-alpha/unistd.h +++ b/include/asm-alpha/unistd.h | |||
| @@ -233,6 +233,20 @@ | |||
| 233 | #define __NR_osf_memcntl 260 /* not implemented */ | 233 | #define __NR_osf_memcntl 260 /* not implemented */ |
| 234 | #define __NR_osf_fdatasync 261 /* not implemented */ | 234 | #define __NR_osf_fdatasync 261 /* not implemented */ |
| 235 | 235 | ||
| 236 | /* | ||
| 237 | * Ignore legacy syscalls that we don't use. | ||
| 238 | */ | ||
| 239 | #define __IGNORE_alarm | ||
| 240 | #define __IGNORE_creat | ||
| 241 | #define __IGNORE_getegid | ||
| 242 | #define __IGNORE_geteuid | ||
| 243 | #define __IGNORE_getgid | ||
| 244 | #define __IGNORE_getpid | ||
| 245 | #define __IGNORE_getppid | ||
| 246 | #define __IGNORE_getuid | ||
| 247 | #define __IGNORE_pause | ||
| 248 | #define __IGNORE_time | ||
| 249 | #define __IGNORE_utime | ||
| 236 | 250 | ||
| 237 | /* | 251 | /* |
| 238 | * Linux-specific system calls begin at 300 | 252 | * Linux-specific system calls begin at 300 |
| @@ -387,10 +401,42 @@ | |||
| 387 | #define __NR_inotify_init 444 | 401 | #define __NR_inotify_init 444 |
| 388 | #define __NR_inotify_add_watch 445 | 402 | #define __NR_inotify_add_watch 445 |
| 389 | #define __NR_inotify_rm_watch 446 | 403 | #define __NR_inotify_rm_watch 446 |
| 404 | #define __NR_fdatasync 447 | ||
| 405 | #define __NR_kexec_load 448 | ||
| 406 | #define __NR_migrate_pages 449 | ||
| 407 | #define __NR_openat 450 | ||
| 408 | #define __NR_mkdirat 451 | ||
| 409 | #define __NR_mknodat 452 | ||
| 410 | #define __NR_fchownat 453 | ||
| 411 | #define __NR_futimesat 454 | ||
| 412 | #define __NR_fstatat64 455 | ||
| 413 | #define __NR_unlinkat 456 | ||
| 414 | #define __NR_renameat 457 | ||
| 415 | #define __NR_linkat 458 | ||
| 416 | #define __NR_symlinkat 459 | ||
| 417 | #define __NR_readlinkat 460 | ||
| 418 | #define __NR_fchmodat 461 | ||
| 419 | #define __NR_faccessat 462 | ||
| 420 | #define __NR_pselect6 463 | ||
| 421 | #define __NR_ppoll 464 | ||
| 422 | #define __NR_unshare 465 | ||
| 423 | #define __NR_set_robust_list 466 | ||
| 424 | #define __NR_get_robust_list 467 | ||
| 425 | #define __NR_splice 468 | ||
| 426 | #define __NR_sync_file_range 469 | ||
| 427 | #define __NR_tee 470 | ||
| 428 | #define __NR_vmsplice 471 | ||
| 429 | #define __NR_move_pages 472 | ||
| 430 | #define __NR_getcpu 473 | ||
| 431 | #define __NR_epoll_pwait 474 | ||
| 432 | #define __NR_utimensat 475 | ||
| 433 | #define __NR_signalfd 476 | ||
| 434 | #define __NR_timerfd 477 | ||
| 435 | #define __NR_eventfd 478 | ||
| 390 | 436 | ||
| 391 | #ifdef __KERNEL__ | 437 | #ifdef __KERNEL__ |
| 392 | 438 | ||
| 393 | #define NR_SYSCALLS 447 | 439 | #define NR_SYSCALLS 479 |
| 394 | 440 | ||
| 395 | #define __ARCH_WANT_IPC_PARSE_VERSION | 441 | #define __ARCH_WANT_IPC_PARSE_VERSION |
| 396 | #define __ARCH_WANT_OLD_READDIR | 442 | #define __ARCH_WANT_OLD_READDIR |
diff --git a/include/asm-alpha/vga.h b/include/asm-alpha/vga.h index ed06f59b544d..e8df1e7aae6b 100644 --- a/include/asm-alpha/vga.h +++ b/include/asm-alpha/vga.h | |||
| @@ -46,6 +46,37 @@ extern void scr_memcpyw(u16 *d, const u16 *s, unsigned int count); | |||
| 46 | #define vga_readb(a) readb((u8 __iomem *)(a)) | 46 | #define vga_readb(a) readb((u8 __iomem *)(a)) |
| 47 | #define vga_writeb(v,a) writeb(v, (u8 __iomem *)(a)) | 47 | #define vga_writeb(v,a) writeb(v, (u8 __iomem *)(a)) |
| 48 | 48 | ||
| 49 | #ifdef CONFIG_VGA_HOSE | ||
| 50 | #include <linux/ioport.h> | ||
| 51 | #include <linux/pci.h> | ||
| 52 | |||
| 53 | extern struct pci_controller *pci_vga_hose; | ||
| 54 | |||
| 55 | # define __is_port_vga(a) \ | ||
| 56 | (((a) >= 0x3b0) && ((a) < 0x3e0) && \ | ||
| 57 | ((a) != 0x3b3) && ((a) != 0x3d3)) | ||
| 58 | |||
| 59 | # define __is_mem_vga(a) \ | ||
| 60 | (((a) >= 0xa0000) && ((a) <= 0xc0000)) | ||
| 61 | |||
| 62 | # define FIXUP_IOADDR_VGA(a) do { \ | ||
| 63 | if (pci_vga_hose && __is_port_vga(a)) \ | ||
| 64 | (a) += pci_vga_hose->io_space->start; \ | ||
| 65 | } while(0) | ||
| 66 | |||
| 67 | # define FIXUP_MEMADDR_VGA(a) do { \ | ||
| 68 | if (pci_vga_hose && __is_mem_vga(a)) \ | ||
| 69 | (a) += pci_vga_hose->mem_space->start; \ | ||
| 70 | } while(0) | ||
| 71 | |||
| 72 | #else /* CONFIG_VGA_HOSE */ | ||
| 73 | # define pci_vga_hose 0 | ||
| 74 | # define __is_port_vga(a) 0 | ||
| 75 | # define __is_mem_vga(a) 0 | ||
| 76 | # define FIXUP_IOADDR_VGA(a) | ||
| 77 | # define FIXUP_MEMADDR_VGA(a) | ||
| 78 | #endif /* CONFIG_VGA_HOSE */ | ||
| 79 | |||
| 49 | #define VGA_MAP_MEM(x,s) ((unsigned long) ioremap(x, s)) | 80 | #define VGA_MAP_MEM(x,s) ((unsigned long) ioremap(x, s)) |
| 50 | 81 | ||
| 51 | #endif | 82 | #endif |
diff --git a/include/asm-arm/arch-ixp4xx/nas100d.h b/include/asm-arm/arch-ixp4xx/nas100d.h index 84467a5190d0..131e0a1d0df3 100644 --- a/include/asm-arm/arch-ixp4xx/nas100d.h +++ b/include/asm-arm/arch-ixp4xx/nas100d.h | |||
| @@ -10,7 +10,7 @@ | |||
| 10 | * based on ixdp425.h: | 10 | * based on ixdp425.h: |
| 11 | * Copyright 2004 (c) MontaVista, Software, Inc. | 11 | * Copyright 2004 (c) MontaVista, Software, Inc. |
| 12 | * | 12 | * |
| 13 | * This file is licensed under the terms of the GNU General Public | 13 | * This file is licensed under the terms of the GNU General Public |
| 14 | * License version 2. This program is licensed "as is" without any | 14 | * License version 2. This program is licensed "as is" without any |
| 15 | * warranty of any kind, whether express or implied. | 15 | * warranty of any kind, whether express or implied. |
| 16 | */ | 16 | */ |
| @@ -36,31 +36,11 @@ | |||
| 36 | #define NAS100D_PCI_INTD_PIN 8 | 36 | #define NAS100D_PCI_INTD_PIN 8 |
| 37 | #define NAS100D_PCI_INTE_PIN 7 | 37 | #define NAS100D_PCI_INTE_PIN 7 |
| 38 | 38 | ||
| 39 | /* GPIO */ | ||
| 40 | |||
| 41 | #define NAS100D_GPIO0 0 | ||
| 42 | #define NAS100D_GPIO1 1 | ||
| 43 | #define NAS100D_GPIO2 2 | ||
| 44 | #define NAS100D_GPIO3 3 | ||
| 45 | #define NAS100D_GPIO4 4 | ||
| 46 | #define NAS100D_GPIO5 5 | ||
| 47 | #define NAS100D_GPIO6 6 | ||
| 48 | #define NAS100D_GPIO7 7 | ||
| 49 | #define NAS100D_GPIO8 8 | ||
| 50 | #define NAS100D_GPIO9 9 | ||
| 51 | #define NAS100D_GPIO10 10 | ||
| 52 | #define NAS100D_GPIO11 11 | ||
| 53 | #define NAS100D_GPIO12 12 | ||
| 54 | #define NAS100D_GPIO13 13 | ||
| 55 | #define NAS100D_GPIO14 14 | ||
| 56 | #define NAS100D_GPIO15 15 | ||
| 57 | |||
| 58 | |||
| 59 | /* Buttons */ | 39 | /* Buttons */ |
| 60 | 40 | ||
| 61 | #define NAS100D_PB_GPIO NAS100D_GPIO14 | 41 | #define NAS100D_PB_GPIO 14 |
| 62 | #define NAS100D_RB_GPIO NAS100D_GPIO4 | 42 | #define NAS100D_RB_GPIO 4 |
| 63 | #define NAS100D_PO_GPIO NAS100D_GPIO12 /* power off */ | 43 | #define NAS100D_PO_GPIO 12 /* power off */ |
| 64 | 44 | ||
| 65 | #define NAS100D_PB_IRQ IRQ_IXP4XX_GPIO14 | 45 | #define NAS100D_PB_IRQ IRQ_IXP4XX_GPIO14 |
| 66 | #define NAS100D_RB_IRQ IRQ_IXP4XX_GPIO4 | 46 | #define NAS100D_RB_IRQ IRQ_IXP4XX_GPIO4 |
diff --git a/include/asm-arm/arch-ixp4xx/nslu2.h b/include/asm-arm/arch-ixp4xx/nslu2.h index 6b437f7c9955..850fdc5b45da 100644 --- a/include/asm-arm/arch-ixp4xx/nslu2.h +++ b/include/asm-arm/arch-ixp4xx/nslu2.h | |||
| @@ -9,7 +9,7 @@ | |||
| 9 | * based on ixdp425.h: | 9 | * based on ixdp425.h: |
| 10 | * Copyright 2004 (c) MontaVista, Software, Inc. | 10 | * Copyright 2004 (c) MontaVista, Software, Inc. |
| 11 | * | 11 | * |
| 12 | * This file is licensed under the terms of the GNU General Public | 12 | * This file is licensed under the terms of the GNU General Public |
| 13 | * License version 2. This program is licensed "as is" without any | 13 | * License version 2. This program is licensed "as is" without any |
| 14 | * warranty of any kind, whether express or implied. | 14 | * warranty of any kind, whether express or implied. |
| 15 | */ | 15 | */ |
| @@ -34,36 +34,14 @@ | |||
| 34 | #define NSLU2_PCI_INTC_PIN 9 | 34 | #define NSLU2_PCI_INTC_PIN 9 |
| 35 | #define NSLU2_PCI_INTD_PIN 8 | 35 | #define NSLU2_PCI_INTD_PIN 8 |
| 36 | 36 | ||
| 37 | |||
| 38 | /* NSLU2 Timer */ | 37 | /* NSLU2 Timer */ |
| 39 | #define NSLU2_FREQ 66000000 | 38 | #define NSLU2_FREQ 66000000 |
| 40 | #define NSLU2_CLOCK_TICK_RATE (((NSLU2_FREQ / HZ & ~IXP4XX_OST_RELOAD_MASK) + 1) * HZ) | ||
| 41 | #define NSLU2_CLOCK_TICKS_PER_USEC ((NSLU2_CLOCK_TICK_RATE + USEC_PER_SEC/2) / USEC_PER_SEC) | ||
| 42 | |||
| 43 | /* GPIO */ | ||
| 44 | |||
| 45 | #define NSLU2_GPIO0 0 | ||
| 46 | #define NSLU2_GPIO1 1 | ||
| 47 | #define NSLU2_GPIO2 2 | ||
| 48 | #define NSLU2_GPIO3 3 | ||
| 49 | #define NSLU2_GPIO4 4 | ||
| 50 | #define NSLU2_GPIO5 5 | ||
| 51 | #define NSLU2_GPIO6 6 | ||
| 52 | #define NSLU2_GPIO7 7 | ||
| 53 | #define NSLU2_GPIO8 8 | ||
| 54 | #define NSLU2_GPIO9 9 | ||
| 55 | #define NSLU2_GPIO10 10 | ||
| 56 | #define NSLU2_GPIO11 11 | ||
| 57 | #define NSLU2_GPIO12 12 | ||
| 58 | #define NSLU2_GPIO13 13 | ||
| 59 | #define NSLU2_GPIO14 14 | ||
| 60 | #define NSLU2_GPIO15 15 | ||
| 61 | 39 | ||
| 62 | /* Buttons */ | 40 | /* Buttons */ |
| 63 | 41 | ||
| 64 | #define NSLU2_PB_GPIO NSLU2_GPIO5 | 42 | #define NSLU2_PB_GPIO 5 |
| 65 | #define NSLU2_PO_GPIO NSLU2_GPIO8 /* power off */ | 43 | #define NSLU2_PO_GPIO 8 /* power off */ |
| 66 | #define NSLU2_RB_GPIO NSLU2_GPIO12 | 44 | #define NSLU2_RB_GPIO 12 |
| 67 | 45 | ||
| 68 | #define NSLU2_PB_IRQ IRQ_IXP4XX_GPIO5 | 46 | #define NSLU2_PB_IRQ IRQ_IXP4XX_GPIO5 |
| 69 | #define NSLU2_RB_IRQ IRQ_IXP4XX_GPIO12 | 47 | #define NSLU2_RB_IRQ IRQ_IXP4XX_GPIO12 |
| @@ -79,16 +57,16 @@ | |||
| 79 | 57 | ||
| 80 | /* LEDs */ | 58 | /* LEDs */ |
| 81 | 59 | ||
| 82 | #define NSLU2_LED_RED NSLU2_GPIO0 | 60 | #define NSLU2_LED_RED_GPIO 0 |
| 83 | #define NSLU2_LED_GRN NSLU2_GPIO1 | 61 | #define NSLU2_LED_GRN_GPIO 1 |
| 84 | 62 | ||
| 85 | #define NSLU2_LED_RED_BM (1L << NSLU2_LED_RED) | 63 | #define NSLU2_LED_RED_BM (1L << NSLU2_LED_RED_GPIO) |
| 86 | #define NSLU2_LED_GRN_BM (1L << NSLU2_LED_GRN) | 64 | #define NSLU2_LED_GRN_BM (1L << NSLU2_LED_GRN_GPIO) |
| 87 | 65 | ||
| 88 | #define NSLU2_LED_DISK1 NSLU2_GPIO3 | 66 | #define NSLU2_LED_DISK1_GPIO 3 |
| 89 | #define NSLU2_LED_DISK2 NSLU2_GPIO2 | 67 | #define NSLU2_LED_DISK2_GPIO 2 |
| 90 | 68 | ||
| 91 | #define NSLU2_LED_DISK1_BM (1L << NSLU2_GPIO2) | 69 | #define NSLU2_LED_DISK1_BM (1L << NSLU2_LED_DISK1_GPIO) |
| 92 | #define NSLU2_LED_DISK2_BM (1L << NSLU2_GPIO3) | 70 | #define NSLU2_LED_DISK2_BM (1L << NSLU2_LED_DISK2_GPIO) |
| 93 | 71 | ||
| 94 | 72 | ||
diff --git a/include/asm-arm/arch-ixp4xx/platform.h b/include/asm-arm/arch-ixp4xx/platform.h index ab194e5f6653..2a44d3d67980 100644 --- a/include/asm-arm/arch-ixp4xx/platform.h +++ b/include/asm-arm/arch-ixp4xx/platform.h | |||
| @@ -113,6 +113,7 @@ extern unsigned long ixp4xx_timer_freq; | |||
| 113 | extern void ixp4xx_map_io(void); | 113 | extern void ixp4xx_map_io(void); |
| 114 | extern void ixp4xx_init_irq(void); | 114 | extern void ixp4xx_init_irq(void); |
| 115 | extern void ixp4xx_sys_init(void); | 115 | extern void ixp4xx_sys_init(void); |
| 116 | extern void ixp4xx_timer_init(void); | ||
| 116 | extern struct sys_timer ixp4xx_timer; | 117 | extern struct sys_timer ixp4xx_timer; |
| 117 | extern void ixp4xx_pci_preinit(void); | 118 | extern void ixp4xx_pci_preinit(void); |
| 118 | struct pci_sys_data; | 119 | struct pci_sys_data; |
diff --git a/include/asm-arm/arch-s3c2410/map.h b/include/asm-arm/arch-s3c2410/map.h index 4505aefbad17..19e77f038042 100644 --- a/include/asm-arm/arch-s3c2410/map.h +++ b/include/asm-arm/arch-s3c2410/map.h | |||
| @@ -153,6 +153,10 @@ | |||
| 153 | #define S3C2440_PA_AC97 (0x5B000000) | 153 | #define S3C2440_PA_AC97 (0x5B000000) |
| 154 | #define S3C2440_SZ_AC97 SZ_1M | 154 | #define S3C2440_SZ_AC97 SZ_1M |
| 155 | 155 | ||
| 156 | /* S3C2443 High-speed SD/MMC */ | ||
| 157 | #define S3C2443_PA_HSMMC (0x4A800000) | ||
| 158 | #define S3C2443_SZ_HSMMC (256) | ||
| 159 | |||
| 156 | /* ISA style IO, for each machine to sort out mappings for, if it | 160 | /* ISA style IO, for each machine to sort out mappings for, if it |
| 157 | * implements it. We reserve two 16M regions for ISA. | 161 | * implements it. We reserve two 16M regions for ISA. |
| 158 | */ | 162 | */ |
diff --git a/include/asm-arm/arch-s3c2410/regs-gpioj.h b/include/asm-arm/arch-s3c2410/regs-gpioj.h index 02131a5a1d3a..0362332faaf0 100644 --- a/include/asm-arm/arch-s3c2410/regs-gpioj.h +++ b/include/asm-arm/arch-s3c2410/regs-gpioj.h | |||
| @@ -98,5 +98,9 @@ | |||
| 98 | #define S3C2440_GPJ12_OUTP (0x01 << 24) | 98 | #define S3C2440_GPJ12_OUTP (0x01 << 24) |
| 99 | #define S3C2440_GPJ12_CAMRESET (0x02 << 24) | 99 | #define S3C2440_GPJ12_CAMRESET (0x02 << 24) |
| 100 | 100 | ||
| 101 | #define S3C2443_GPJ13 S3C2410_GPIONO(S3C2440_GPIO_BANKJ, 13) | ||
| 102 | #define S3C2443_GPJ14 S3C2410_GPIONO(S3C2440_GPIO_BANKJ, 14) | ||
| 103 | #define S3C2443_GPJ15 S3C2410_GPIONO(S3C2440_GPIO_BANKJ, 15) | ||
| 104 | |||
| 101 | #endif /* __ASM_ARCH_REGS_GPIOJ_H */ | 105 | #endif /* __ASM_ARCH_REGS_GPIOJ_H */ |
| 102 | 106 | ||
diff --git a/include/asm-arm/arch-s3c2410/regs-s3c2412.h b/include/asm-arm/arch-s3c2410/regs-s3c2412.h new file mode 100644 index 000000000000..8ca6a3bc8555 --- /dev/null +++ b/include/asm-arm/arch-s3c2410/regs-s3c2412.h | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | /* linux/include/asm-arm/arch-s3c2410/regs-s3c2412.h | ||
| 2 | * | ||
| 3 | * Copyright 2007 Simtec Electronics | ||
| 4 | * http://armlinux.simtec.co.uk/ | ||
| 5 | * Ben Dooks <ben@simtec.co.uk> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License version 2 as | ||
| 9 | * published by the Free Software Foundation. | ||
| 10 | * | ||
| 11 | * S3C2412 specific register definitions | ||
| 12 | */ | ||
| 13 | |||
| 14 | #ifndef __ASM_ARCH_REGS_S3C2412_H | ||
| 15 | #define __ASM_ARCH_REGS_S3C2412_H "s3c2412" | ||
| 16 | |||
| 17 | #define S3C2412_SWRST (S3C24XX_VA_CLKPWR + 0x30) | ||
| 18 | #define S3C2412_SWRST_RESET (0x533C2412) | ||
| 19 | |||
| 20 | #endif /* __ASM_ARCH_REGS_S3C2412_H */ | ||
| 21 | |||
diff --git a/include/asm-arm/ioctls.h b/include/asm-arm/ioctls.h index bb9a7aa10c12..a91d8a1523cf 100644 --- a/include/asm-arm/ioctls.h +++ b/include/asm-arm/ioctls.h | |||
| @@ -46,6 +46,10 @@ | |||
| 46 | #define TIOCSBRK 0x5427 /* BSD compatibility */ | 46 | #define TIOCSBRK 0x5427 /* BSD compatibility */ |
| 47 | #define TIOCCBRK 0x5428 /* BSD compatibility */ | 47 | #define TIOCCBRK 0x5428 /* BSD compatibility */ |
| 48 | #define TIOCGSID 0x5429 /* Return the session ID of FD */ | 48 | #define TIOCGSID 0x5429 /* Return the session ID of FD */ |
| 49 | #define TCGETS2 _IOR('T',0x2A, struct termios2) | ||
| 50 | #define TCSETS2 _IOW('T',0x2B, struct termios2) | ||
| 51 | #define TCSETSW2 _IOW('T',0x2C, struct termios2) | ||
| 52 | #define TCSETSF2 _IOW('T',0x2D, struct termios2) | ||
| 49 | #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ | 53 | #define TIOCGPTN _IOR('T',0x30, unsigned int) /* Get Pty Number (of pty-mux device) */ |
| 50 | #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ | 54 | #define TIOCSPTLCK _IOW('T',0x31, int) /* Lock/unlock Pty */ |
| 51 | 55 | ||
diff --git a/include/asm-arm/mach/arch.h b/include/asm-arm/mach/arch.h index fd2f9bf4dcc6..c59fad18e73b 100644 --- a/include/asm-arm/mach/arch.h +++ b/include/asm-arm/mach/arch.h | |||
| @@ -49,7 +49,7 @@ struct machine_desc { | |||
| 49 | */ | 49 | */ |
| 50 | #define MACHINE_START(_type,_name) \ | 50 | #define MACHINE_START(_type,_name) \ |
| 51 | static const struct machine_desc __mach_desc_##_type \ | 51 | static const struct machine_desc __mach_desc_##_type \ |
| 52 | __attribute_used__ \ | 52 | __used \ |
| 53 | __attribute__((__section__(".arch.info.init"))) = { \ | 53 | __attribute__((__section__(".arch.info.init"))) = { \ |
| 54 | .nr = MACH_TYPE_##_type, \ | 54 | .nr = MACH_TYPE_##_type, \ |
| 55 | .name = _name, | 55 | .name = _name, |
diff --git a/include/asm-arm/setup.h b/include/asm-arm/setup.h index e5407392afca..7bbf105463f1 100644 --- a/include/asm-arm/setup.h +++ b/include/asm-arm/setup.h | |||
| @@ -185,7 +185,7 @@ struct tagtable { | |||
| 185 | 185 | ||
| 186 | #ifdef __KERNEL__ | 186 | #ifdef __KERNEL__ |
| 187 | 187 | ||
| 188 | #define __tag __attribute_used__ __attribute__((__section__(".taglist.init"))) | 188 | #define __tag __used __attribute__((__section__(".taglist.init"))) |
| 189 | #define __tagtable(tag, fn) \ | 189 | #define __tagtable(tag, fn) \ |
| 190 | static struct tagtable __tagtable_##fn __tag = { tag, fn } | 190 | static struct tagtable __tagtable_##fn __tag = { tag, fn } |
| 191 | 191 | ||
| @@ -218,7 +218,7 @@ struct early_params { | |||
| 218 | }; | 218 | }; |
| 219 | 219 | ||
| 220 | #define __early_param(name,fn) \ | 220 | #define __early_param(name,fn) \ |
| 221 | static struct early_params __early_##fn __attribute_used__ \ | 221 | static struct early_params __early_##fn __used \ |
| 222 | __attribute__((__section__(".early_param.init"))) = { name, fn } | 222 | __attribute__((__section__(".early_param.init"))) = { name, fn } |
| 223 | 223 | ||
| 224 | #endif /* __KERNEL__ */ | 224 | #endif /* __KERNEL__ */ |
diff --git a/include/asm-arm/termbits.h b/include/asm-arm/termbits.h index a3f4fe1742d0..f784d11f40b5 100644 --- a/include/asm-arm/termbits.h +++ b/include/asm-arm/termbits.h | |||
| @@ -15,6 +15,17 @@ struct termios { | |||
| 15 | cc_t c_cc[NCCS]; /* control characters */ | 15 | cc_t c_cc[NCCS]; /* control characters */ |
| 16 | }; | 16 | }; |
| 17 | 17 | ||
| 18 | struct termios2 { | ||
| 19 | tcflag_t c_iflag; /* input mode flags */ | ||
| 20 | tcflag_t c_oflag; /* output mode flags */ | ||
| 21 | tcflag_t c_cflag; /* control mode flags */ | ||
| 22 | tcflag_t c_lflag; /* local mode flags */ | ||
| 23 | cc_t c_line; /* line discipline */ | ||
| 24 | cc_t c_cc[NCCS]; /* control characters */ | ||
| 25 | speed_t c_ispeed; /* input speed */ | ||
| 26 | speed_t c_ospeed; /* output speed */ | ||
| 27 | }; | ||
| 28 | |||
| 18 | struct ktermios { | 29 | struct ktermios { |
| 19 | tcflag_t c_iflag; /* input mode flags */ | 30 | tcflag_t c_iflag; /* input mode flags */ |
| 20 | tcflag_t c_oflag; /* output mode flags */ | 31 | tcflag_t c_oflag; /* output mode flags */ |
| @@ -128,6 +139,7 @@ struct ktermios { | |||
| 128 | #define HUPCL 0002000 | 139 | #define HUPCL 0002000 |
| 129 | #define CLOCAL 0004000 | 140 | #define CLOCAL 0004000 |
| 130 | #define CBAUDEX 0010000 | 141 | #define CBAUDEX 0010000 |
| 142 | #define BOTHER 0010000 | ||
| 131 | #define B57600 0010001 | 143 | #define B57600 0010001 |
| 132 | #define B115200 0010002 | 144 | #define B115200 0010002 |
| 133 | #define B230400 0010003 | 145 | #define B230400 0010003 |
| @@ -143,10 +155,12 @@ struct ktermios { | |||
| 143 | #define B3000000 0010015 | 155 | #define B3000000 0010015 |
| 144 | #define B3500000 0010016 | 156 | #define B3500000 0010016 |
| 145 | #define B4000000 0010017 | 157 | #define B4000000 0010017 |
| 146 | #define CIBAUD 002003600000 /* input baud rate (not used) */ | 158 | #define CIBAUD 002003600000 /* input baud rate */ |
| 147 | #define CMSPAR 010000000000 /* mark or space (stick) parity */ | 159 | #define CMSPAR 010000000000 /* mark or space (stick) parity */ |
| 148 | #define CRTSCTS 020000000000 /* flow control */ | 160 | #define CRTSCTS 020000000000 /* flow control */ |
| 149 | 161 | ||
| 162 | #define IBSHIFT 16 | ||
| 163 | |||
| 150 | /* c_lflag bits */ | 164 | /* c_lflag bits */ |
| 151 | #define ISIG 0000001 | 165 | #define ISIG 0000001 |
| 152 | #define ICANON 0000002 | 166 | #define ICANON 0000002 |
diff --git a/include/asm-arm/termios.h b/include/asm-arm/termios.h index 329c324c4040..293e3f1bc3f2 100644 --- a/include/asm-arm/termios.h +++ b/include/asm-arm/termios.h | |||
| @@ -82,8 +82,10 @@ struct termio { | |||
| 82 | copy_to_user((termio)->c_cc, (termios)->c_cc, NCC); \ | 82 | copy_to_user((termio)->c_cc, (termios)->c_cc, NCC); \ |
| 83 | }) | 83 | }) |
| 84 | 84 | ||
| 85 | #define user_termios_to_kernel_termios(k, u) copy_from_user(k, u, sizeof(struct termios)) | 85 | #define user_termios_to_kernel_termios(k, u) copy_from_user(k, u, sizeof(struct termios2)) |
| 86 | #define kernel_termios_to_user_termios(u, k) copy_to_user(u, k, sizeof(struct termios)) | 86 | #define kernel_termios_to_user_termios(u, k) copy_to_user(u, k, sizeof(struct termios2)) |
| 87 | #define user_termios_to_kernel_termios_1(k, u) copy_from_user(k, u, sizeof(struct termios)) | ||
| 88 | #define kernel_termios_to_user_termios_1(u, k) copy_to_user(u, k, sizeof(struct termios)) | ||
| 87 | 89 | ||
| 88 | #endif /* __KERNEL__ */ | 90 | #endif /* __KERNEL__ */ |
| 89 | 91 | ||
diff --git a/include/asm-arm/tlbflush.h b/include/asm-arm/tlbflush.h index ccd0de010e81..71be4fded7e2 100644 --- a/include/asm-arm/tlbflush.h +++ b/include/asm-arm/tlbflush.h | |||
| @@ -138,6 +138,19 @@ | |||
| 138 | # define v6wbi_always_flags (-1UL) | 138 | # define v6wbi_always_flags (-1UL) |
| 139 | #endif | 139 | #endif |
| 140 | 140 | ||
| 141 | #ifdef CONFIG_CPU_TLB_V7 | ||
| 142 | # define v7wbi_possible_flags v6wbi_tlb_flags | ||
| 143 | # define v7wbi_always_flags v6wbi_tlb_flags | ||
| 144 | # ifdef _TLB | ||
| 145 | # define MULTI_TLB 1 | ||
| 146 | # else | ||
| 147 | # define _TLB v7wbi | ||
| 148 | # endif | ||
| 149 | #else | ||
| 150 | # define v7wbi_possible_flags 0 | ||
| 151 | # define v7wbi_always_flags (-1UL) | ||
| 152 | #endif | ||
| 153 | |||
| 141 | #ifndef _TLB | 154 | #ifndef _TLB |
| 142 | #error Unknown TLB model | 155 | #error Unknown TLB model |
| 143 | #endif | 156 | #endif |
diff --git a/include/asm-arm26/setup.h b/include/asm-arm26/setup.h index 10fd07c76662..e82562306475 100644 --- a/include/asm-arm26/setup.h +++ b/include/asm-arm26/setup.h | |||
| @@ -173,7 +173,7 @@ struct tagtable { | |||
| 173 | int (*parse)(const struct tag *); | 173 | int (*parse)(const struct tag *); |
| 174 | }; | 174 | }; |
| 175 | 175 | ||
| 176 | #define __tag __attribute_used__ __attribute__((__section__(".taglist"))) | 176 | #define __tag __used __attribute__((__section__(".taglist"))) |
| 177 | #define __tagtable(tag, fn) \ | 177 | #define __tagtable(tag, fn) \ |
| 178 | static struct tagtable __tagtable_##fn __tag = { tag, fn } | 178 | static struct tagtable __tagtable_##fn __tag = { tag, fn } |
| 179 | 179 | ||
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h index 8307b1bb337a..84155eb67f1d 100644 --- a/include/asm-generic/vmlinux.lds.h +++ b/include/asm-generic/vmlinux.lds.h | |||
| @@ -14,8 +14,8 @@ | |||
| 14 | *(.data) \ | 14 | *(.data) \ |
| 15 | *(.data.init.refok) | 15 | *(.data.init.refok) |
| 16 | 16 | ||
| 17 | #define RODATA \ | 17 | #define RO_DATA(align) \ |
| 18 | . = ALIGN(4096); \ | 18 | . = ALIGN((align)); \ |
| 19 | .rodata : AT(ADDR(.rodata) - LOAD_OFFSET) { \ | 19 | .rodata : AT(ADDR(.rodata) - LOAD_OFFSET) { \ |
| 20 | VMLINUX_SYMBOL(__start_rodata) = .; \ | 20 | VMLINUX_SYMBOL(__start_rodata) = .; \ |
| 21 | *(.rodata) *(.rodata.*) \ | 21 | *(.rodata) *(.rodata.*) \ |
| @@ -135,7 +135,11 @@ | |||
| 135 | VMLINUX_SYMBOL(__end_rodata) = .; \ | 135 | VMLINUX_SYMBOL(__end_rodata) = .; \ |
| 136 | } \ | 136 | } \ |
| 137 | \ | 137 | \ |
| 138 | . = ALIGN(4096); | 138 | . = ALIGN((align)); |
| 139 | |||
| 140 | /* RODATA provided for backward compatibility. | ||
| 141 | * All archs are supposed to use RO_DATA() */ | ||
| 142 | #define RODATA RO_DATA(4096) | ||
| 139 | 143 | ||
| 140 | #define SECURITY_INIT \ | 144 | #define SECURITY_INIT \ |
| 141 | .security_initcall.init : AT(ADDR(.security_initcall.init) - LOAD_OFFSET) { \ | 145 | .security_initcall.init : AT(ADDR(.security_initcall.init) - LOAD_OFFSET) { \ |
diff --git a/include/asm-h8300/processor.h b/include/asm-h8300/processor.h index 99b664aa2083..49fc886a6232 100644 --- a/include/asm-h8300/processor.h +++ b/include/asm-h8300/processor.h | |||
| @@ -78,7 +78,7 @@ struct thread_struct { | |||
| 78 | do { \ | 78 | do { \ |
| 79 | set_fs(USER_DS); /* reads from user space */ \ | 79 | set_fs(USER_DS); /* reads from user space */ \ |
| 80 | (_regs)->pc = (_pc); \ | 80 | (_regs)->pc = (_pc); \ |
| 81 | (_regs)->ccr &= 0x00; /* clear kernel flag */ \ | 81 | (_regs)->ccr = 0x00; /* clear all flags */ \ |
| 82 | (_regs)->er5 = current->mm->start_data; /* GOT base */ \ | 82 | (_regs)->er5 = current->mm->start_data; /* GOT base */ \ |
| 83 | wrusp((unsigned long)(_usp) - sizeof(unsigned long)*3); \ | 83 | wrusp((unsigned long)(_usp) - sizeof(unsigned long)*3); \ |
| 84 | } while(0) | 84 | } while(0) |
diff --git a/include/asm-m68k/mmzone.h b/include/asm-m68k/mmzone.h new file mode 100644 index 000000000000..e1f1ec7b7006 --- /dev/null +++ b/include/asm-m68k/mmzone.h | |||
| @@ -0,0 +1,9 @@ | |||
| 1 | #ifndef _ASM_M68K_MMZONE_H_ | ||
| 2 | #define _ASM_M68K_MMZONE_H_ | ||
| 3 | |||
| 4 | extern pg_data_t pg_data_map[]; | ||
| 5 | |||
| 6 | #define NODE_DATA(nid) (&pg_data_map[nid]) | ||
| 7 | #define NODE_MEM_MAP(nid) (NODE_DATA(nid)->node_mem_map) | ||
| 8 | |||
| 9 | #endif /* _ASM_M68K_MMZONE_H_ */ | ||
diff --git a/include/asm-m68k/module.h b/include/asm-m68k/module.h index c6d75af2d8d3..382d20a6fc18 100644 --- a/include/asm-m68k/module.h +++ b/include/asm-m68k/module.h | |||
| @@ -1,7 +1,39 @@ | |||
| 1 | #ifndef _ASM_M68K_MODULE_H | 1 | #ifndef _ASM_M68K_MODULE_H |
| 2 | #define _ASM_M68K_MODULE_H | 2 | #define _ASM_M68K_MODULE_H |
| 3 | struct mod_arch_specific { }; | 3 | |
| 4 | struct mod_arch_specific { | ||
| 5 | struct m68k_fixup_info *fixup_start, *fixup_end; | ||
| 6 | }; | ||
| 7 | |||
| 8 | #define MODULE_ARCH_INIT { \ | ||
| 9 | .fixup_start = __start_fixup, \ | ||
| 10 | .fixup_end = __stop_fixup, \ | ||
| 11 | } | ||
| 12 | |||
| 4 | #define Elf_Shdr Elf32_Shdr | 13 | #define Elf_Shdr Elf32_Shdr |
| 5 | #define Elf_Sym Elf32_Sym | 14 | #define Elf_Sym Elf32_Sym |
| 6 | #define Elf_Ehdr Elf32_Ehdr | 15 | #define Elf_Ehdr Elf32_Ehdr |
| 16 | |||
| 17 | |||
| 18 | enum m68k_fixup_type { | ||
| 19 | m68k_fixup_memoffset, | ||
| 20 | m68k_fixup_vnode_shift, | ||
| 21 | }; | ||
| 22 | |||
| 23 | struct m68k_fixup_info { | ||
| 24 | enum m68k_fixup_type type; | ||
| 25 | void *addr; | ||
| 26 | }; | ||
| 27 | |||
| 28 | #define m68k_fixup(type, addr) \ | ||
| 29 | " .section \".m68k_fixup\",\"aw\"\n" \ | ||
| 30 | " .long " #type "," #addr "\n" \ | ||
| 31 | " .previous\n" | ||
| 32 | |||
| 33 | extern struct m68k_fixup_info __start_fixup[], __stop_fixup[]; | ||
| 34 | |||
| 35 | struct module; | ||
| 36 | extern void module_fixup(struct module *mod, struct m68k_fixup_info *start, | ||
| 37 | struct m68k_fixup_info *end); | ||
| 38 | |||
| 7 | #endif /* _ASM_M68K_MODULE_H */ | 39 | #endif /* _ASM_M68K_MODULE_H */ |
diff --git a/include/asm-m68k/motorola_pgtable.h b/include/asm-m68k/motorola_pgtable.h index 61e4406ed96a..b5b78c01eb6c 100644 --- a/include/asm-m68k/motorola_pgtable.h +++ b/include/asm-m68k/motorola_pgtable.h | |||
| @@ -130,7 +130,7 @@ static inline void pgd_set(pgd_t *pgdp, pmd_t *pmdp) | |||
| 130 | #define pte_present(pte) (pte_val(pte) & (_PAGE_PRESENT | _PAGE_PROTNONE)) | 130 | #define pte_present(pte) (pte_val(pte) & (_PAGE_PRESENT | _PAGE_PROTNONE)) |
| 131 | #define pte_clear(mm,addr,ptep) ({ pte_val(*(ptep)) = 0; }) | 131 | #define pte_clear(mm,addr,ptep) ({ pte_val(*(ptep)) = 0; }) |
| 132 | 132 | ||
| 133 | #define pte_page(pte) (mem_map + ((unsigned long)(__va(pte_val(pte)) - PAGE_OFFSET) >> PAGE_SHIFT)) | 133 | #define pte_page(pte) virt_to_page(__va(pte_val(pte))) |
| 134 | #define pte_pfn(pte) (pte_val(pte) >> PAGE_SHIFT) | 134 | #define pte_pfn(pte) (pte_val(pte) >> PAGE_SHIFT) |
| 135 | #define pfn_pte(pfn, prot) __pte(((pfn) << PAGE_SHIFT) | pgprot_val(prot)) | 135 | #define pfn_pte(pfn, prot) __pte(((pfn) << PAGE_SHIFT) | pgprot_val(prot)) |
| 136 | 136 | ||
| @@ -143,7 +143,7 @@ static inline void pgd_set(pgd_t *pgdp, pmd_t *pmdp) | |||
| 143 | while (--__i >= 0) \ | 143 | while (--__i >= 0) \ |
| 144 | *__ptr++ = 0; \ | 144 | *__ptr++ = 0; \ |
| 145 | }) | 145 | }) |
| 146 | #define pmd_page(pmd) (mem_map + ((unsigned long)(__va(pmd_val(pmd)) - PAGE_OFFSET) >> PAGE_SHIFT)) | 146 | #define pmd_page(pmd) virt_to_page(__va(pmd_val(pmd))) |
| 147 | 147 | ||
| 148 | 148 | ||
| 149 | #define pgd_none(pgd) (!pgd_val(pgd)) | 149 | #define pgd_none(pgd) (!pgd_val(pgd)) |
| @@ -223,10 +223,10 @@ static inline pte_t *pte_offset_kernel(pmd_t *pmdp, unsigned long address) | |||
| 223 | return (pte_t *)__pmd_page(*pmdp) + ((address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1)); | 223 | return (pte_t *)__pmd_page(*pmdp) + ((address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1)); |
| 224 | } | 224 | } |
| 225 | 225 | ||
| 226 | #define pte_offset_map(pmdp,address) ((pte_t *)kmap(pmd_page(*pmdp)) + ((address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))) | 226 | #define pte_offset_map(pmdp,address) ((pte_t *)__pmd_page(*pmdp) + (((address) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1))) |
| 227 | #define pte_offset_map_nested(pmdp, address) pte_offset_map(pmdp, address) | 227 | #define pte_offset_map_nested(pmdp, address) pte_offset_map(pmdp, address) |
| 228 | #define pte_unmap(pte) kunmap(pte) | 228 | #define pte_unmap(pte) ((void)0) |
| 229 | #define pte_unmap_nested(pte) kunmap(pte) | 229 | #define pte_unmap_nested(pte) ((void)0) |
| 230 | 230 | ||
| 231 | /* | 231 | /* |
| 232 | * Allocate and free page tables. The xxx_kernel() versions are | 232 | * Allocate and free page tables. The xxx_kernel() versions are |
diff --git a/include/asm-m68k/page.h b/include/asm-m68k/page.h index fcc165ddd09e..9e6d0d6debdb 100644 --- a/include/asm-m68k/page.h +++ b/include/asm-m68k/page.h | |||
| @@ -27,6 +27,8 @@ | |||
| 27 | 27 | ||
| 28 | #ifndef __ASSEMBLY__ | 28 | #ifndef __ASSEMBLY__ |
| 29 | 29 | ||
| 30 | #include <asm/module.h> | ||
| 31 | |||
| 30 | #define get_user_page(vaddr) __get_free_page(GFP_KERNEL) | 32 | #define get_user_page(vaddr) __get_free_page(GFP_KERNEL) |
| 31 | #define free_user_page(page, addr) free_page(addr) | 33 | #define free_user_page(page, addr) free_page(addr) |
| 32 | 34 | ||
| @@ -114,18 +116,33 @@ typedef struct { unsigned long pgprot; } pgprot_t; | |||
| 114 | 116 | ||
| 115 | #ifndef __ASSEMBLY__ | 117 | #ifndef __ASSEMBLY__ |
| 116 | 118 | ||
| 119 | extern unsigned long m68k_memoffset; | ||
| 120 | |||
| 117 | #ifndef CONFIG_SUN3 | 121 | #ifndef CONFIG_SUN3 |
| 118 | 122 | ||
| 119 | #define WANT_PAGE_VIRTUAL | 123 | #define WANT_PAGE_VIRTUAL |
| 120 | #ifdef CONFIG_SINGLE_MEMORY_CHUNK | ||
| 121 | extern unsigned long m68k_memoffset; | ||
| 122 | 124 | ||
| 123 | #define __pa(vaddr) ((unsigned long)(vaddr)+m68k_memoffset) | 125 | static inline unsigned long ___pa(void *vaddr) |
| 124 | #define __va(paddr) ((void *)((unsigned long)(paddr)-m68k_memoffset)) | 126 | { |
| 125 | #else | 127 | unsigned long paddr; |
| 126 | #define __pa(vaddr) virt_to_phys((void *)(vaddr)) | 128 | asm ( |
| 127 | #define __va(paddr) phys_to_virt((unsigned long)(paddr)) | 129 | "1: addl #0,%0\n" |
| 128 | #endif | 130 | m68k_fixup(%c2, 1b+2) |
| 131 | : "=r" (paddr) | ||
| 132 | : "0" (vaddr), "i" (m68k_fixup_memoffset)); | ||
| 133 | return paddr; | ||
| 134 | } | ||
| 135 | #define __pa(vaddr) ___pa((void *)(vaddr)) | ||
| 136 | static inline void *__va(unsigned long paddr) | ||
| 137 | { | ||
| 138 | void *vaddr; | ||
| 139 | asm ( | ||
| 140 | "1: subl #0,%0\n" | ||
| 141 | m68k_fixup(%c2, 1b+2) | ||
| 142 | : "=r" (vaddr) | ||
| 143 | : "0" (paddr), "i" (m68k_fixup_memoffset)); | ||
| 144 | return vaddr; | ||
| 145 | } | ||
| 129 | 146 | ||
| 130 | #else /* !CONFIG_SUN3 */ | 147 | #else /* !CONFIG_SUN3 */ |
| 131 | /* This #define is a horrible hack to suppress lots of warnings. --m */ | 148 | /* This #define is a horrible hack to suppress lots of warnings. --m */ |
| @@ -161,11 +178,47 @@ static inline void *__va(unsigned long x) | |||
| 161 | #define virt_to_pfn(kaddr) (__pa(kaddr) >> PAGE_SHIFT) | 178 | #define virt_to_pfn(kaddr) (__pa(kaddr) >> PAGE_SHIFT) |
| 162 | #define pfn_to_virt(pfn) __va((pfn) << PAGE_SHIFT) | 179 | #define pfn_to_virt(pfn) __va((pfn) << PAGE_SHIFT) |
| 163 | 180 | ||
| 164 | #define virt_to_page(kaddr) (mem_map + (((unsigned long)(kaddr)-PAGE_OFFSET) >> PAGE_SHIFT)) | 181 | extern int m68k_virt_to_node_shift; |
| 165 | #define page_to_virt(page) ((((page) - mem_map) << PAGE_SHIFT) + PAGE_OFFSET) | 182 | |
| 183 | #ifdef CONFIG_SINGLE_MEMORY_CHUNK | ||
| 184 | #define __virt_to_node(addr) (&pg_data_map[0]) | ||
| 185 | #else | ||
| 186 | extern struct pglist_data *pg_data_table[]; | ||
| 187 | |||
| 188 | static inline __attribute_const__ int __virt_to_node_shift(void) | ||
| 189 | { | ||
| 190 | int shift; | ||
| 191 | |||
| 192 | asm ( | ||
| 193 | "1: moveq #0,%0\n" | ||
| 194 | m68k_fixup(%c1, 1b) | ||
| 195 | : "=d" (shift) | ||
| 196 | : "i" (m68k_fixup_vnode_shift)); | ||
| 197 | return shift; | ||
| 198 | } | ||
| 199 | |||
| 200 | #define __virt_to_node(addr) (pg_data_table[(unsigned long)(addr) >> __virt_to_node_shift()]) | ||
| 201 | #endif | ||
| 166 | 202 | ||
| 167 | #define pfn_to_page(pfn) virt_to_page(pfn_to_virt(pfn)) | 203 | #define virt_to_page(addr) ({ \ |
| 168 | #define page_to_pfn(page) virt_to_pfn(page_to_virt(page)) | 204 | pfn_to_page(virt_to_pfn(addr)); \ |
| 205 | }) | ||
| 206 | #define page_to_virt(page) ({ \ | ||
| 207 | pfn_to_virt(page_to_pfn(page)); \ | ||
| 208 | }) | ||
| 209 | |||
| 210 | #define pfn_to_page(pfn) ({ \ | ||
| 211 | unsigned long __pfn = (pfn); \ | ||
| 212 | struct pglist_data *pgdat; \ | ||
| 213 | pgdat = __virt_to_node((unsigned long)pfn_to_virt(__pfn)); \ | ||
| 214 | pgdat->node_mem_map + (__pfn - pgdat->node_start_pfn); \ | ||
| 215 | }) | ||
| 216 | #define page_to_pfn(_page) ({ \ | ||
| 217 | struct page *__p = (_page); \ | ||
| 218 | struct pglist_data *pgdat; \ | ||
| 219 | pgdat = &pg_data_map[page_to_nid(__p)]; \ | ||
| 220 | ((__p) - pgdat->node_mem_map) + pgdat->node_start_pfn; \ | ||
| 221 | }) | ||
| 169 | 222 | ||
| 170 | #define virt_addr_valid(kaddr) ((void *)(kaddr) >= (void *)PAGE_OFFSET && (void *)(kaddr) < high_memory) | 223 | #define virt_addr_valid(kaddr) ((void *)(kaddr) >= (void *)PAGE_OFFSET && (void *)(kaddr) < high_memory) |
| 171 | #define pfn_valid(pfn) virt_addr_valid(pfn_to_virt(pfn)) | 224 | #define pfn_valid(pfn) virt_addr_valid(pfn_to_virt(pfn)) |
diff --git a/include/asm-m68k/pgalloc.h b/include/asm-m68k/pgalloc.h index a9cfb4b99d88..4cb1a57ab763 100644 --- a/include/asm-m68k/pgalloc.h +++ b/include/asm-m68k/pgalloc.h | |||
| @@ -8,11 +8,12 @@ | |||
| 8 | #include <asm/virtconvert.h> | 8 | #include <asm/virtconvert.h> |
| 9 | 9 | ||
| 10 | 10 | ||
| 11 | |||
| 12 | #ifdef CONFIG_SUN3 | 11 | #ifdef CONFIG_SUN3 |
| 13 | #include <asm/sun3_pgalloc.h> | 12 | #include <asm/sun3_pgalloc.h> |
| 14 | #else | 13 | #else |
| 15 | #include <asm/motorola_pgalloc.h> | 14 | #include <asm/motorola_pgalloc.h> |
| 16 | #endif | 15 | #endif |
| 17 | 16 | ||
| 17 | extern void m68k_setup_node(int node); | ||
| 18 | |||
| 18 | #endif /* M68K_PGALLOC_H */ | 19 | #endif /* M68K_PGALLOC_H */ |
diff --git a/include/asm-m68k/pgtable.h b/include/asm-m68k/pgtable.h index 555b87a1f7e3..778a4c538eb2 100644 --- a/include/asm-m68k/pgtable.h +++ b/include/asm-m68k/pgtable.h | |||
| @@ -107,22 +107,7 @@ extern void *empty_zero_page; | |||
| 107 | /* 64-bit machines, beware! SRB. */ | 107 | /* 64-bit machines, beware! SRB. */ |
| 108 | #define SIZEOF_PTR_LOG2 2 | 108 | #define SIZEOF_PTR_LOG2 2 |
| 109 | 109 | ||
| 110 | /* | 110 | #define mm_end_of_chunk(addr, len) 0 |
| 111 | * Check if the addr/len goes up to the end of a physical | ||
| 112 | * memory chunk. Used for DMA functions. | ||
| 113 | */ | ||
| 114 | #ifdef CONFIG_SINGLE_MEMORY_CHUNK | ||
| 115 | /* | ||
| 116 | * It makes no sense to consider whether we cross a memory boundary if | ||
| 117 | * we support just one physical chunk of memory. | ||
| 118 | */ | ||
| 119 | static inline int mm_end_of_chunk(unsigned long addr, int len) | ||
| 120 | { | ||
| 121 | return 0; | ||
| 122 | } | ||
| 123 | #else | ||
| 124 | int mm_end_of_chunk (unsigned long addr, int len); | ||
| 125 | #endif | ||
| 126 | 111 | ||
| 127 | extern void kernel_set_cachemode(void *addr, unsigned long size, int cmode); | 112 | extern void kernel_set_cachemode(void *addr, unsigned long size, int cmode); |
| 128 | 113 | ||
diff --git a/include/asm-m68k/sun3_pgtable.h b/include/asm-m68k/sun3_pgtable.h index 5156a28a18d8..b9e62c1e7ae3 100644 --- a/include/asm-m68k/sun3_pgtable.h +++ b/include/asm-m68k/sun3_pgtable.h | |||
| @@ -132,8 +132,8 @@ static inline void pte_clear (struct mm_struct *mm, unsigned long addr, pte_t *p | |||
| 132 | #define pfn_pte(pfn, pgprot) \ | 132 | #define pfn_pte(pfn, pgprot) \ |
| 133 | ({ pte_t __pte; pte_val(__pte) = pfn | pgprot_val(pgprot); __pte; }) | 133 | ({ pte_t __pte; pte_val(__pte) = pfn | pgprot_val(pgprot); __pte; }) |
| 134 | 134 | ||
| 135 | #define pte_page(pte) (mem_map+((__pte_page(pte) - PAGE_OFFSET) >> PAGE_SHIFT)) | 135 | #define pte_page(pte) virt_to_page(__pte_page(pte)) |
| 136 | #define pmd_page(pmd) (mem_map+((__pmd_page(pmd) - PAGE_OFFSET) >> PAGE_SHIFT)) | 136 | #define pmd_page(pmd) virt_to_page(__pmd_page(pmd)) |
| 137 | 137 | ||
| 138 | 138 | ||
| 139 | static inline int pmd_none2 (pmd_t *pmd) { return !pmd_val (*pmd); } | 139 | static inline int pmd_none2 (pmd_t *pmd) { return !pmd_val (*pmd); } |
diff --git a/include/asm-m68k/virtconvert.h b/include/asm-m68k/virtconvert.h index 83a87c9b1a16..dea32fbc7e51 100644 --- a/include/asm-m68k/virtconvert.h +++ b/include/asm-m68k/virtconvert.h | |||
| @@ -8,56 +8,35 @@ | |||
| 8 | #ifdef __KERNEL__ | 8 | #ifdef __KERNEL__ |
| 9 | 9 | ||
| 10 | #include <linux/compiler.h> | 10 | #include <linux/compiler.h> |
| 11 | #include <linux/mmzone.h> | ||
| 11 | #include <asm/setup.h> | 12 | #include <asm/setup.h> |
| 12 | #include <asm/page.h> | 13 | #include <asm/page.h> |
| 13 | 14 | ||
| 14 | #ifdef CONFIG_AMIGA | ||
| 15 | #include <asm/amigahw.h> | ||
| 16 | #endif | ||
| 17 | |||
| 18 | /* | 15 | /* |
| 19 | * Change virtual addresses to physical addresses and vv. | 16 | * Change virtual addresses to physical addresses and vv. |
| 20 | */ | 17 | */ |
| 21 | #ifndef CONFIG_SUN3 | ||
| 22 | extern unsigned long mm_vtop(unsigned long addr) __attribute_const__; | ||
| 23 | extern unsigned long mm_ptov(unsigned long addr) __attribute_const__; | ||
| 24 | #else | ||
| 25 | static inline unsigned long mm_vtop(unsigned long vaddr) | ||
| 26 | { | ||
| 27 | return __pa(vaddr); | ||
| 28 | } | ||
| 29 | |||
| 30 | static inline unsigned long mm_ptov(unsigned long paddr) | ||
| 31 | { | ||
| 32 | return (unsigned long)__va(paddr); | ||
| 33 | } | ||
| 34 | #endif | ||
| 35 | |||
| 36 | #ifdef CONFIG_SINGLE_MEMORY_CHUNK | ||
| 37 | static inline unsigned long virt_to_phys(void *vaddr) | ||
| 38 | { | ||
| 39 | return (unsigned long)vaddr - PAGE_OFFSET + m68k_memory[0].addr; | ||
| 40 | } | ||
| 41 | |||
| 42 | static inline void * phys_to_virt(unsigned long paddr) | ||
| 43 | { | ||
| 44 | return (void *)(paddr - m68k_memory[0].addr + PAGE_OFFSET); | ||
| 45 | } | ||
| 46 | #else | ||
| 47 | static inline unsigned long virt_to_phys(void *address) | 18 | static inline unsigned long virt_to_phys(void *address) |
| 48 | { | 19 | { |
| 49 | return mm_vtop((unsigned long)address); | 20 | return __pa(address); |
| 50 | } | 21 | } |
| 51 | 22 | ||
| 52 | static inline void *phys_to_virt(unsigned long address) | 23 | static inline void *phys_to_virt(unsigned long address) |
| 53 | { | 24 | { |
| 54 | return (void *) mm_ptov(address); | 25 | return __va(address); |
| 55 | } | 26 | } |
| 56 | #endif | ||
| 57 | 27 | ||
| 58 | /* Permanent address of a page. */ | 28 | /* Permanent address of a page. */ |
| 59 | #define __page_address(page) (PAGE_OFFSET + (((page) - mem_map) << PAGE_SHIFT)) | 29 | #ifdef CONFIG_SINGLE_MEMORY_CHUNK |
| 60 | #define page_to_phys(page) virt_to_phys((void *)__page_address(page)) | 30 | #define page_to_phys(page) \ |
| 31 | __pa(PAGE_OFFSET + (((page) - pg_data_map[0].node_mem_map) << PAGE_SHIFT)) | ||
| 32 | #else | ||
| 33 | #define page_to_phys(_page) ({ \ | ||
| 34 | struct page *__page = _page; \ | ||
| 35 | struct pglist_data *pgdat; \ | ||
| 36 | pgdat = pg_data_table[page_to_nid(__page)]; \ | ||
| 37 | page_to_pfn(__page) << PAGE_SHIFT; \ | ||
| 38 | }) | ||
| 39 | #endif | ||
| 61 | 40 | ||
| 62 | /* | 41 | /* |
| 63 | * IO bus memory addresses are 1:1 with the physical address, | 42 | * IO bus memory addresses are 1:1 with the physical address, |
diff --git a/include/asm-sh/cpu-sh4/freq.h b/include/asm-sh/cpu-sh4/freq.h index 86564e7a26ae..39f41fcd509d 100644 --- a/include/asm-sh/cpu-sh4/freq.h +++ b/include/asm-sh/cpu-sh4/freq.h | |||
| @@ -24,6 +24,9 @@ | |||
| 24 | #define FRQMR1 0xffc80014 | 24 | #define FRQMR1 0xffc80014 |
| 25 | #else | 25 | #else |
| 26 | #define FRQCR 0xffc00000 | 26 | #define FRQCR 0xffc00000 |
| 27 | #define FRQCR_PSTBY 0x0200 | ||
| 28 | #define FRQCR_PLLEN 0x0400 | ||
| 29 | #define FRQCR_CKOEN 0x0800 | ||
| 27 | #endif | 30 | #endif |
| 28 | #define MIN_DIVISOR_NR 0 | 31 | #define MIN_DIVISOR_NR 0 |
| 29 | #define MAX_DIVISOR_NR 3 | 32 | #define MAX_DIVISOR_NR 3 |
diff --git a/include/asm-sh/dma.h b/include/asm-sh/dma.h index faf3051cd429..6034d4a29e73 100644 --- a/include/asm-sh/dma.h +++ b/include/asm-sh/dma.h | |||
| @@ -13,6 +13,7 @@ | |||
| 13 | 13 | ||
| 14 | #include <linux/spinlock.h> | 14 | #include <linux/spinlock.h> |
| 15 | #include <linux/wait.h> | 15 | #include <linux/wait.h> |
| 16 | #include <linux/sched.h> | ||
| 16 | #include <linux/sysdev.h> | 17 | #include <linux/sysdev.h> |
| 17 | #include <asm/cpu/dma.h> | 18 | #include <asm/cpu/dma.h> |
| 18 | 19 | ||
diff --git a/include/asm-sh/io.h b/include/asm-sh/io.h index a0e55b09e4fd..aa80930ce8e4 100644 --- a/include/asm-sh/io.h +++ b/include/asm-sh/io.h | |||
| @@ -116,13 +116,13 @@ void __raw_readsl(unsigned long addr, void *data, int longlen); | |||
| 116 | * redefined by userlevel programs. | 116 | * redefined by userlevel programs. |
| 117 | */ | 117 | */ |
| 118 | #ifdef __readb | 118 | #ifdef __readb |
| 119 | # define readb(a) ({ unsigned long r_ = __raw_readb(a); mb(); r_; }) | 119 | # define readb(a) ({ unsigned int r_ = __raw_readb(a); mb(); r_; }) |
| 120 | #endif | 120 | #endif |
| 121 | #ifdef __raw_readw | 121 | #ifdef __raw_readw |
| 122 | # define readw(a) ({ unsigned long r_ = __raw_readw(a); mb(); r_; }) | 122 | # define readw(a) ({ unsigned int r_ = __raw_readw(a); mb(); r_; }) |
| 123 | #endif | 123 | #endif |
| 124 | #ifdef __raw_readl | 124 | #ifdef __raw_readl |
| 125 | # define readl(a) ({ unsigned long r_ = __raw_readl(a); mb(); r_; }) | 125 | # define readl(a) ({ unsigned int r_ = __raw_readl(a); mb(); r_; }) |
| 126 | #endif | 126 | #endif |
| 127 | 127 | ||
| 128 | #ifdef __raw_writeb | 128 | #ifdef __raw_writeb |
diff --git a/include/asm-sh/smp.h b/include/asm-sh/smp.h index 71ecddf70db3..caa7b93f1bce 100644 --- a/include/asm-sh/smp.h +++ b/include/asm-sh/smp.h | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | 15 | ||
| 16 | #ifdef CONFIG_SMP | 16 | #ifdef CONFIG_SMP |
| 17 | 17 | ||
| 18 | #include <asm/spinlock.h> | 18 | #include <linux/spinlock.h> |
| 19 | #include <asm/atomic.h> | 19 | #include <asm/atomic.h> |
| 20 | #include <asm/current.h> | 20 | #include <asm/current.h> |
| 21 | 21 | ||
diff --git a/include/asm-sh/spinlock.h b/include/asm-sh/spinlock.h index 2586eef07d57..92f6e2008b2e 100644 --- a/include/asm-sh/spinlock.h +++ b/include/asm-sh/spinlock.h | |||
| @@ -11,6 +11,7 @@ | |||
| 11 | #define __ASM_SH_SPINLOCK_H | 11 | #define __ASM_SH_SPINLOCK_H |
| 12 | 12 | ||
| 13 | #include <asm/atomic.h> | 13 | #include <asm/atomic.h> |
| 14 | #include <asm/spinlock_types.h> | ||
| 14 | 15 | ||
| 15 | /* | 16 | /* |
| 16 | * Your basic SMP spinlocks, allowing only a single CPU anywhere | 17 | * Your basic SMP spinlocks, allowing only a single CPU anywhere |
| @@ -42,7 +43,7 @@ static inline void __raw_spin_lock(raw_spinlock_t *lock) | |||
| 42 | 43 | ||
| 43 | static inline void __raw_spin_unlock(raw_spinlock_t *lock) | 44 | static inline void __raw_spin_unlock(raw_spinlock_t *lock) |
| 44 | { | 45 | { |
| 45 | assert_spin_locked(lock); | 46 | //assert_spin_locked(lock); |
| 46 | 47 | ||
| 47 | lock->lock = 0; | 48 | lock->lock = 0; |
| 48 | } | 49 | } |
| @@ -88,6 +89,11 @@ static inline void __raw_write_unlock(raw_rwlock_t *rw) | |||
| 88 | __raw_spin_unlock(&rw->lock); | 89 | __raw_spin_unlock(&rw->lock); |
| 89 | } | 90 | } |
| 90 | 91 | ||
| 92 | static inline int __raw_write_can_lock(raw_rwlock_t *rw) | ||
| 93 | { | ||
| 94 | return (atomic_read(&rw->counter) == RW_LOCK_BIAS); | ||
| 95 | } | ||
| 96 | |||
| 91 | static inline int __raw_read_trylock(raw_rwlock_t *lock) | 97 | static inline int __raw_read_trylock(raw_rwlock_t *lock) |
| 92 | { | 98 | { |
| 93 | atomic_t *count = (atomic_t*)lock; | 99 | atomic_t *count = (atomic_t*)lock; |
diff --git a/include/asm-sh/spinlock_types.h b/include/asm-sh/spinlock_types.h index 8c41b6c3aac8..5c58134f2c4e 100644 --- a/include/asm-sh/spinlock_types.h +++ b/include/asm-sh/spinlock_types.h | |||
| @@ -9,7 +9,9 @@ typedef struct { | |||
| 9 | volatile unsigned long lock; | 9 | volatile unsigned long lock; |
| 10 | } raw_spinlock_t; | 10 | } raw_spinlock_t; |
| 11 | 11 | ||
| 12 | #define __SPIN_LOCK_UNLOCKED { 0 } | 12 | #define __RAW_SPIN_LOCK_UNLOCKED { 1 } |
| 13 | |||
| 14 | #include <asm/atomic.h> | ||
| 13 | 15 | ||
| 14 | typedef struct { | 16 | typedef struct { |
| 15 | raw_spinlock_t lock; | 17 | raw_spinlock_t lock; |
diff --git a/include/asm-sparc/atomic.h b/include/asm-sparc/atomic.h index 731fa56e0c37..bdca5416d8b0 100644 --- a/include/asm-sparc/atomic.h +++ b/include/asm-sparc/atomic.h | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | * | 2 | * |
| 3 | * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu) | 3 | * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu) |
| 4 | * Copyright (C) 2000 Anton Blanchard (anton@linuxcare.com.au) | 4 | * Copyright (C) 2000 Anton Blanchard (anton@linuxcare.com.au) |
| 5 | * Copyright (C) 2007 Kyle McMartin (kyle@parisc-linux.org) | ||
| 5 | * | 6 | * |
| 6 | * Additions by Keith M Wesolowski (wesolows@foobazco.org) based | 7 | * Additions by Keith M Wesolowski (wesolows@foobazco.org) based |
| 7 | * on asm-parisc/atomic.h Copyright (C) 2000 Philipp Rumpf <prumpf@tux.org>. | 8 | * on asm-parisc/atomic.h Copyright (C) 2000 Philipp Rumpf <prumpf@tux.org>. |
| @@ -10,11 +11,48 @@ | |||
| 10 | #ifndef __ARCH_SPARC_ATOMIC__ | 11 | #ifndef __ARCH_SPARC_ATOMIC__ |
| 11 | #define __ARCH_SPARC_ATOMIC__ | 12 | #define __ARCH_SPARC_ATOMIC__ |
| 12 | 13 | ||
| 14 | #include <linux/types.h> | ||
| 13 | 15 | ||
| 14 | typedef struct { volatile int counter; } atomic_t; | 16 | typedef struct { volatile int counter; } atomic_t; |
| 15 | 17 | ||
| 16 | #ifdef __KERNEL__ | 18 | #ifdef __KERNEL__ |
| 17 | 19 | ||
| 20 | /* Emulate cmpxchg() the same way we emulate atomics, | ||
| 21 | * by hashing the object address and indexing into an array | ||
| 22 | * of spinlocks to get a bit of performance... | ||
| 23 | * | ||
| 24 | * See arch/sparc/lib/atomic32.c for implementation. | ||
| 25 | * | ||
| 26 | * Cribbed from <asm-parisc/atomic.h> | ||
| 27 | */ | ||
| 28 | #define __HAVE_ARCH_CMPXCHG 1 | ||
| 29 | |||
| 30 | /* bug catcher for when unsupported size is used - won't link */ | ||
| 31 | extern void __cmpxchg_called_with_bad_pointer(void); | ||
| 32 | /* we only need to support cmpxchg of a u32 on sparc */ | ||
| 33 | extern unsigned long __cmpxchg_u32(volatile u32 *m, u32 old, u32 new_); | ||
| 34 | |||
| 35 | /* don't worry...optimizer will get rid of most of this */ | ||
| 36 | static __inline__ unsigned long | ||
| 37 | __cmpxchg(volatile void *ptr, unsigned long old, unsigned long new_, int size) | ||
| 38 | { | ||
| 39 | switch(size) { | ||
| 40 | case 4: | ||
| 41 | return __cmpxchg_u32((u32 *)ptr, (u32)old, (u32)new_); | ||
| 42 | default: | ||
| 43 | __cmpxchg_called_with_bad_pointer(); | ||
| 44 | break; | ||
| 45 | } | ||
| 46 | return old; | ||
| 47 | } | ||
| 48 | |||
| 49 | #define cmpxchg(ptr,o,n) ({ \ | ||
| 50 | __typeof__(*(ptr)) _o_ = (o); \ | ||
| 51 | __typeof__(*(ptr)) _n_ = (n); \ | ||
| 52 | (__typeof__(*(ptr))) __cmpxchg((ptr), (unsigned long)_o_, \ | ||
| 53 | (unsigned long)_n_, sizeof(*(ptr))); \ | ||
| 54 | }) | ||
| 55 | |||
| 18 | #define ATOMIC_INIT(i) { (i) } | 56 | #define ATOMIC_INIT(i) { (i) } |
| 19 | 57 | ||
| 20 | extern int __atomic_add_return(int, atomic_t *); | 58 | extern int __atomic_add_return(int, atomic_t *); |
diff --git a/include/asm-sparc64/bugs.h b/include/asm-sparc64/bugs.h index 120422fdb02f..bf39d86c0c9e 100644 --- a/include/asm-sparc64/bugs.h +++ b/include/asm-sparc64/bugs.h | |||
| @@ -1,9 +1,8 @@ | |||
| 1 | /* $Id: bugs.h,v 1.1 1996/12/26 13:25:20 davem Exp $ | 1 | /* bugs.h: Sparc64 probes for various bugs. |
| 2 | * include/asm-sparc64/bugs.h: Sparc probes for various bugs. | ||
| 3 | * | 2 | * |
| 4 | * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu) | 3 | * Copyright (C) 1996, 2007 David S. Miller (davem@davemloft.net) |
| 5 | */ | 4 | */ |
| 6 | 5 | #include <asm/sstate.h> | |
| 7 | 6 | ||
| 8 | extern unsigned long loops_per_jiffy; | 7 | extern unsigned long loops_per_jiffy; |
| 9 | 8 | ||
| @@ -12,4 +11,5 @@ static void __init check_bugs(void) | |||
| 12 | #ifndef CONFIG_SMP | 11 | #ifndef CONFIG_SMP |
| 13 | cpu_data(0).udelay_val = loops_per_jiffy; | 12 | cpu_data(0).udelay_val = loops_per_jiffy; |
| 14 | #endif | 13 | #endif |
| 14 | sstate_running(); | ||
| 15 | } | 15 | } |
diff --git a/include/asm-sparc64/cpudata.h b/include/asm-sparc64/cpudata.h index e89922d6718c..03c385de7619 100644 --- a/include/asm-sparc64/cpudata.h +++ b/include/asm-sparc64/cpudata.h | |||
| @@ -17,11 +17,11 @@ | |||
| 17 | typedef struct { | 17 | typedef struct { |
| 18 | /* Dcache line 1 */ | 18 | /* Dcache line 1 */ |
| 19 | unsigned int __softirq_pending; /* must be 1st, see rtrap.S */ | 19 | unsigned int __softirq_pending; /* must be 1st, see rtrap.S */ |
| 20 | unsigned int __pad0_1; | 20 | unsigned int __pad0; |
| 21 | unsigned int __pad0_2; | ||
| 22 | unsigned int __pad1; | ||
| 23 | unsigned long clock_tick; /* %tick's per second */ | 21 | unsigned long clock_tick; /* %tick's per second */ |
| 24 | unsigned long udelay_val; | 22 | unsigned long udelay_val; |
| 23 | unsigned int __pad1; | ||
| 24 | unsigned int __pad2; | ||
| 25 | 25 | ||
| 26 | /* Dcache line 2, rarely used */ | 26 | /* Dcache line 2, rarely used */ |
| 27 | unsigned int dcache_size; | 27 | unsigned int dcache_size; |
| @@ -30,8 +30,8 @@ typedef struct { | |||
| 30 | unsigned int icache_line_size; | 30 | unsigned int icache_line_size; |
| 31 | unsigned int ecache_size; | 31 | unsigned int ecache_size; |
| 32 | unsigned int ecache_line_size; | 32 | unsigned int ecache_line_size; |
| 33 | int core_id; | ||
| 33 | unsigned int __pad3; | 34 | unsigned int __pad3; |
| 34 | unsigned int __pad4; | ||
| 35 | } cpuinfo_sparc; | 35 | } cpuinfo_sparc; |
| 36 | 36 | ||
| 37 | DECLARE_PER_CPU(cpuinfo_sparc, __cpu_data); | 37 | DECLARE_PER_CPU(cpuinfo_sparc, __cpu_data); |
| @@ -76,12 +76,18 @@ struct trap_per_cpu { | |||
| 76 | 76 | ||
| 77 | /* Dcache line 8: IRQ work list, and keep trap_block a power-of-2 in size. */ | 77 | /* Dcache line 8: IRQ work list, and keep trap_block a power-of-2 in size. */ |
| 78 | unsigned int irq_worklist; | 78 | unsigned int irq_worklist; |
| 79 | unsigned int __pad1; | 79 | unsigned int cpu_mondo_qmask; |
| 80 | unsigned long __pad2[3]; | 80 | unsigned int dev_mondo_qmask; |
| 81 | unsigned int resum_qmask; | ||
| 82 | unsigned int nonresum_qmask; | ||
| 83 | unsigned int __pad2[3]; | ||
| 81 | } __attribute__((aligned(64))); | 84 | } __attribute__((aligned(64))); |
| 82 | extern struct trap_per_cpu trap_block[NR_CPUS]; | 85 | extern struct trap_per_cpu trap_block[NR_CPUS]; |
| 83 | extern void init_cur_cpu_trap(struct thread_info *); | 86 | extern void init_cur_cpu_trap(struct thread_info *); |
| 84 | extern void setup_tba(void); | 87 | extern void setup_tba(void); |
| 88 | extern int ncpus_probed; | ||
| 89 | |||
| 90 | extern unsigned long real_hard_smp_processor_id(void); | ||
| 85 | 91 | ||
| 86 | struct cpuid_patch_entry { | 92 | struct cpuid_patch_entry { |
| 87 | unsigned int addr; | 93 | unsigned int addr; |
| @@ -122,6 +128,10 @@ extern struct sun4v_2insn_patch_entry __sun4v_2insn_patch, | |||
| 122 | #define TRAP_PER_CPU_TSB_HUGE 0xd0 | 128 | #define TRAP_PER_CPU_TSB_HUGE 0xd0 |
| 123 | #define TRAP_PER_CPU_TSB_HUGE_TEMP 0xd8 | 129 | #define TRAP_PER_CPU_TSB_HUGE_TEMP 0xd8 |
| 124 | #define TRAP_PER_CPU_IRQ_WORKLIST 0xe0 | 130 | #define TRAP_PER_CPU_IRQ_WORKLIST 0xe0 |
| 131 | #define TRAP_PER_CPU_CPU_MONDO_QMASK 0xe4 | ||
| 132 | #define TRAP_PER_CPU_DEV_MONDO_QMASK 0xe8 | ||
| 133 | #define TRAP_PER_CPU_RESUM_QMASK 0xec | ||
| 134 | #define TRAP_PER_CPU_NONRESUM_QMASK 0xf0 | ||
| 125 | 135 | ||
| 126 | #define TRAP_BLOCK_SZ_SHIFT 8 | 136 | #define TRAP_BLOCK_SZ_SHIFT 8 |
| 127 | 137 | ||
| @@ -192,7 +202,7 @@ extern struct sun4v_2insn_patch_entry __sun4v_2insn_patch, | |||
| 192 | * the calculations done by the macro mid-stream. | 202 | * the calculations done by the macro mid-stream. |
| 193 | */ | 203 | */ |
| 194 | #define LOAD_PER_CPU_BASE(DEST, THR, REG1, REG2, REG3) \ | 204 | #define LOAD_PER_CPU_BASE(DEST, THR, REG1, REG2, REG3) \ |
| 195 | ldub [THR + TI_CPU], REG1; \ | 205 | lduh [THR + TI_CPU], REG1; \ |
| 196 | sethi %hi(__per_cpu_shift), REG3; \ | 206 | sethi %hi(__per_cpu_shift), REG3; \ |
| 197 | sethi %hi(__per_cpu_base), REG2; \ | 207 | sethi %hi(__per_cpu_base), REG2; \ |
| 198 | ldx [REG3 + %lo(__per_cpu_shift)], REG3; \ | 208 | ldx [REG3 + %lo(__per_cpu_shift)], REG3; \ |
diff --git a/include/asm-sparc64/hypervisor.h b/include/asm-sparc64/hypervisor.h index a5558c87556d..4a43075a0619 100644 --- a/include/asm-sparc64/hypervisor.h +++ b/include/asm-sparc64/hypervisor.h | |||
| @@ -73,6 +73,8 @@ | |||
| 73 | #define HV_ENOTSUPPORTED 13 /* Function not supported */ | 73 | #define HV_ENOTSUPPORTED 13 /* Function not supported */ |
| 74 | #define HV_ENOMAP 14 /* No mapping found */ | 74 | #define HV_ENOMAP 14 /* No mapping found */ |
| 75 | #define HV_ETOOMANY 15 /* Too many items specified */ | 75 | #define HV_ETOOMANY 15 /* Too many items specified */ |
| 76 | #define HV_ECHANNEL 16 /* Invalid LDC channel */ | ||
| 77 | #define HV_EBUSY 17 /* Resource busy */ | ||
| 76 | 78 | ||
| 77 | /* mach_exit() | 79 | /* mach_exit() |
| 78 | * TRAP: HV_FAST_TRAP | 80 | * TRAP: HV_FAST_TRAP |
| @@ -95,6 +97,10 @@ | |||
| 95 | */ | 97 | */ |
| 96 | #define HV_FAST_MACH_EXIT 0x00 | 98 | #define HV_FAST_MACH_EXIT 0x00 |
| 97 | 99 | ||
| 100 | #ifndef __ASSEMBLY__ | ||
| 101 | extern void sun4v_mach_exit(unsigned long exit_core); | ||
| 102 | #endif | ||
| 103 | |||
| 98 | /* Domain services. */ | 104 | /* Domain services. */ |
| 99 | 105 | ||
| 100 | /* mach_desc() | 106 | /* mach_desc() |
| @@ -120,7 +126,13 @@ | |||
| 120 | */ | 126 | */ |
| 121 | #define HV_FAST_MACH_DESC 0x01 | 127 | #define HV_FAST_MACH_DESC 0x01 |
| 122 | 128 | ||
| 123 | /* mach_exit() | 129 | #ifndef __ASSEMBLY__ |
| 130 | extern unsigned long sun4v_mach_desc(unsigned long buffer_pa, | ||
| 131 | unsigned long buf_len, | ||
| 132 | unsigned long *real_buf_len); | ||
| 133 | #endif | ||
| 134 | |||
| 135 | /* mach_sir() | ||
| 124 | * TRAP: HV_FAST_TRAP | 136 | * TRAP: HV_FAST_TRAP |
| 125 | * FUNCTION: HV_FAST_MACH_SIR | 137 | * FUNCTION: HV_FAST_MACH_SIR |
| 126 | * ERRORS: This service does not return. | 138 | * ERRORS: This service does not return. |
| @@ -135,53 +147,66 @@ | |||
| 135 | */ | 147 | */ |
| 136 | #define HV_FAST_MACH_SIR 0x02 | 148 | #define HV_FAST_MACH_SIR 0x02 |
| 137 | 149 | ||
| 138 | /* mach_set_soft_state() | 150 | #ifndef __ASSEMBLY__ |
| 151 | extern void sun4v_mach_sir(void); | ||
| 152 | #endif | ||
| 153 | |||
| 154 | /* mach_set_watchdog() | ||
| 139 | * TRAP: HV_FAST_TRAP | 155 | * TRAP: HV_FAST_TRAP |
| 140 | * FUNCTION: HV_FAST_MACH_SET_SOFT_STATE | 156 | * FUNCTION: HV_FAST_MACH_SET_WATCHDOG |
| 141 | * ARG0: software state | 157 | * ARG0: timeout in milliseconds |
| 142 | * ARG1: software state description pointer | ||
| 143 | * RET0: status | 158 | * RET0: status |
| 144 | * ERRORS: EINVAL software state not valid or software state | 159 | * RET1: time remaining in milliseconds |
| 145 | * description is not NULL terminated | ||
| 146 | * ENORADDR software state description pointer is not a | ||
| 147 | * valid real address | ||
| 148 | * EBADALIGNED software state description is not correctly | ||
| 149 | * aligned | ||
| 150 | * | 160 | * |
| 151 | * This allows the guest to report it's soft state to the hypervisor. There | 161 | * A guest uses this API to set a watchdog timer. Once the gues has set |
| 152 | * are two primary components to this state. The first part states whether | 162 | * the timer, it must call the timer service again either to disable or |
| 153 | * the guest software is running or not. The second containts optional | 163 | * postpone the expiration. If the timer expires before being reset or |
| 154 | * details specific to the software. | 164 | * disabled, then the hypervisor take a platform specific action leading |
| 165 | * to guest termination within a bounded time period. The platform action | ||
| 166 | * may include recovery actions such as reporting the expiration to a | ||
| 167 | * Service Processor, and/or automatically restarting the gues. | ||
| 155 | * | 168 | * |
| 156 | * The software state argument is defined below in HV_SOFT_STATE_*, and | 169 | * The 'timeout' parameter is specified in milliseconds, however the |
| 157 | * indicates whether the guest is operating normally or in a transitional | 170 | * implementated granularity is given by the 'watchdog-resolution' |
| 158 | * state. | 171 | * property in the 'platform' node of the guest's machine description. |
| 172 | * The largest allowed timeout value is specified by the | ||
| 173 | * 'watchdog-max-timeout' property of the 'platform' node. | ||
| 159 | * | 174 | * |
| 160 | * The software state description argument is a real address of a data buffer | 175 | * If the 'timeout' argument is not zero, the watchdog timer is set to |
| 161 | * of size 32-bytes aligned on a 32-byte boundary. It is treated as a NULL | 176 | * expire after a minimum of 'timeout' milliseconds. |
| 162 | * terminated 7-bit ASCII string of up to 31 characters not including the | ||
| 163 | * NULL termination. | ||
| 164 | */ | ||
| 165 | #define HV_FAST_MACH_SET_SOFT_STATE 0x03 | ||
| 166 | #define HV_SOFT_STATE_NORMAL 0x01 | ||
| 167 | #define HV_SOFT_STATE_TRANSITION 0x02 | ||
| 168 | |||
| 169 | /* mach_get_soft_state() | ||
| 170 | * TRAP: HV_FAST_TRAP | ||
| 171 | * FUNCTION: HV_FAST_MACH_GET_SOFT_STATE | ||
| 172 | * ARG0: software state description pointer | ||
| 173 | * RET0: status | ||
| 174 | * RET1: software state | ||
| 175 | * ERRORS: ENORADDR software state description pointer is not a | ||
| 176 | * valid real address | ||
| 177 | * EBADALIGNED software state description is not correctly | ||
| 178 | * aligned | ||
| 179 | * | 177 | * |
| 180 | * Retrieve the current value of the guest's software state. The rules | 178 | * If the 'timeout' argument is zero, the watchdog timer is disabled. |
| 181 | * for the software state pointer are the same as for mach_set_soft_state() | 179 | * |
| 182 | * above. | 180 | * If the 'timeout' value exceeds the value of the 'max-watchdog-timeout' |
| 181 | * property, the hypervisor leaves the watchdog timer state unchanged, | ||
| 182 | * and returns a status of EINVAL. | ||
| 183 | * | ||
| 184 | * The 'time remaining' return value is valid regardless of whether the | ||
| 185 | * return status is EOK or EINVAL. A non-zero return value indicates the | ||
| 186 | * number of milliseconds that were remaining until the timer was to expire. | ||
| 187 | * If less than one millisecond remains, the return value is '1'. If the | ||
| 188 | * watchdog timer was disabled at the time of the call, the return value is | ||
| 189 | * zero. | ||
| 190 | * | ||
| 191 | * If the hypervisor cannot support the exact timeout value requested, but | ||
| 192 | * can support a larger timeout value, the hypervisor may round the actual | ||
| 193 | * timeout to a value larger than the requested timeout, consequently the | ||
| 194 | * 'time remaining' return value may be larger than the previously requested | ||
| 195 | * timeout value. | ||
| 196 | * | ||
| 197 | * Any guest OS debugger should be aware that the watchdog service may be in | ||
| 198 | * use. Consequently, it is recommended that the watchdog service is | ||
| 199 | * disabled upon debugger entry (e.g. reaching a breakpoint), and then | ||
| 200 | * re-enabled upon returning to normal execution. The API has been designed | ||
| 201 | * with this in mind, and the 'time remaining' result of the disable call may | ||
| 202 | * be used directly as the timeout argument of the re-enable call. | ||
| 183 | */ | 203 | */ |
| 184 | #define HV_FAST_MACH_GET_SOFT_STATE 0x04 | 204 | #define HV_FAST_MACH_SET_WATCHDOG 0x05 |
| 205 | |||
| 206 | #ifndef __ASSEMBLY__ | ||
| 207 | extern unsigned long sun4v_mach_set_watchdog(unsigned long timeout, | ||
| 208 | unsigned long *orig_timeout); | ||
| 209 | #endif | ||
| 185 | 210 | ||
| 186 | /* CPU services. | 211 | /* CPU services. |
| 187 | * | 212 | * |
| @@ -206,8 +231,8 @@ | |||
| 206 | * FUNCTION: HV_FAST_CPU_START | 231 | * FUNCTION: HV_FAST_CPU_START |
| 207 | * ARG0: CPU ID | 232 | * ARG0: CPU ID |
| 208 | * ARG1: PC | 233 | * ARG1: PC |
| 209 | * ARG1: RTBA | 234 | * ARG2: RTBA |
| 210 | * ARG1: target ARG0 | 235 | * ARG3: target ARG0 |
| 211 | * RET0: status | 236 | * RET0: status |
| 212 | * ERRORS: ENOCPU Invalid CPU ID | 237 | * ERRORS: ENOCPU Invalid CPU ID |
| 213 | * EINVAL Target CPU ID is not in the stopped state | 238 | * EINVAL Target CPU ID is not in the stopped state |
| @@ -224,6 +249,13 @@ | |||
| 224 | */ | 249 | */ |
| 225 | #define HV_FAST_CPU_START 0x10 | 250 | #define HV_FAST_CPU_START 0x10 |
| 226 | 251 | ||
| 252 | #ifndef __ASSEMBLY__ | ||
| 253 | extern unsigned long sun4v_cpu_start(unsigned long cpuid, | ||
| 254 | unsigned long pc, | ||
| 255 | unsigned long rtba, | ||
| 256 | unsigned long arg0); | ||
| 257 | #endif | ||
| 258 | |||
| 227 | /* cpu_stop() | 259 | /* cpu_stop() |
| 228 | * TRAP: HV_FAST_TRAP | 260 | * TRAP: HV_FAST_TRAP |
| 229 | * FUNCTION: HV_FAST_CPU_STOP | 261 | * FUNCTION: HV_FAST_CPU_STOP |
| @@ -245,6 +277,10 @@ | |||
| 245 | */ | 277 | */ |
| 246 | #define HV_FAST_CPU_STOP 0x11 | 278 | #define HV_FAST_CPU_STOP 0x11 |
| 247 | 279 | ||
| 280 | #ifndef __ASSEMBLY__ | ||
| 281 | extern unsigned long sun4v_cpu_stop(unsigned long cpuid); | ||
| 282 | #endif | ||
| 283 | |||
| 248 | /* cpu_yield() | 284 | /* cpu_yield() |
| 249 | * TRAP: HV_FAST_TRAP | 285 | * TRAP: HV_FAST_TRAP |
| 250 | * FUNCTION: HV_FAST_CPU_YIELD | 286 | * FUNCTION: HV_FAST_CPU_YIELD |
| @@ -588,6 +624,11 @@ struct hv_fault_status { | |||
| 588 | */ | 624 | */ |
| 589 | #define HV_FAST_MMU_TSB_CTX0 0x20 | 625 | #define HV_FAST_MMU_TSB_CTX0 0x20 |
| 590 | 626 | ||
| 627 | #ifndef __ASSEMBLY__ | ||
| 628 | extern unsigned long sun4v_mmu_tsb_ctx0(unsigned long num_descriptions, | ||
| 629 | unsigned long tsb_desc_ra); | ||
| 630 | #endif | ||
| 631 | |||
| 591 | /* mmu_tsb_ctxnon0() | 632 | /* mmu_tsb_ctxnon0() |
| 592 | * TRAP: HV_FAST_TRAP | 633 | * TRAP: HV_FAST_TRAP |
| 593 | * FUNCTION: HV_FAST_MMU_TSB_CTXNON0 | 634 | * FUNCTION: HV_FAST_MMU_TSB_CTXNON0 |
| @@ -694,6 +735,13 @@ struct hv_fault_status { | |||
| 694 | */ | 735 | */ |
| 695 | #define HV_FAST_MMU_MAP_PERM_ADDR 0x25 | 736 | #define HV_FAST_MMU_MAP_PERM_ADDR 0x25 |
| 696 | 737 | ||
| 738 | #ifndef __ASSEMBLY__ | ||
| 739 | extern unsigned long sun4v_mmu_map_perm_addr(unsigned long vaddr, | ||
| 740 | unsigned long set_to_zero, | ||
| 741 | unsigned long tte, | ||
| 742 | unsigned long flags); | ||
| 743 | #endif | ||
| 744 | |||
| 697 | /* mmu_fault_area_conf() | 745 | /* mmu_fault_area_conf() |
| 698 | * TRAP: HV_FAST_TRAP | 746 | * TRAP: HV_FAST_TRAP |
| 699 | * FUNCTION: HV_FAST_MMU_FAULT_AREA_CONF | 747 | * FUNCTION: HV_FAST_MMU_FAULT_AREA_CONF |
| @@ -892,6 +940,10 @@ struct hv_fault_status { | |||
| 892 | */ | 940 | */ |
| 893 | #define HV_FAST_TOD_GET 0x50 | 941 | #define HV_FAST_TOD_GET 0x50 |
| 894 | 942 | ||
| 943 | #ifndef __ASSEMBLY__ | ||
| 944 | extern unsigned long sun4v_tod_get(unsigned long *time); | ||
| 945 | #endif | ||
| 946 | |||
| 895 | /* tod_set() | 947 | /* tod_set() |
| 896 | * TRAP: HV_FAST_TRAP | 948 | * TRAP: HV_FAST_TRAP |
| 897 | * FUNCTION: HV_FAST_TOD_SET | 949 | * FUNCTION: HV_FAST_TOD_SET |
| @@ -905,6 +957,10 @@ struct hv_fault_status { | |||
| 905 | */ | 957 | */ |
| 906 | #define HV_FAST_TOD_SET 0x51 | 958 | #define HV_FAST_TOD_SET 0x51 |
| 907 | 959 | ||
| 960 | #ifndef __ASSEMBLY__ | ||
| 961 | extern unsigned long sun4v_tod_set(unsigned long time); | ||
| 962 | #endif | ||
| 963 | |||
| 908 | /* Console services */ | 964 | /* Console services */ |
| 909 | 965 | ||
| 910 | /* con_getchar() | 966 | /* con_getchar() |
| @@ -988,6 +1044,133 @@ extern unsigned long sun4v_con_write(unsigned long buffer, | |||
| 988 | unsigned long *bytes_written); | 1044 | unsigned long *bytes_written); |
| 989 | #endif | 1045 | #endif |
| 990 | 1046 | ||
| 1047 | /* mach_set_soft_state() | ||
| 1048 | * TRAP: HV_FAST_TRAP | ||
| 1049 | * FUNCTION: HV_FAST_MACH_SET_SOFT_STATE | ||
| 1050 | * ARG0: software state | ||
| 1051 | * ARG1: software state description pointer | ||
| 1052 | * RET0: status | ||
| 1053 | * ERRORS: EINVAL software state not valid or software state | ||
| 1054 | * description is not NULL terminated | ||
| 1055 | * ENORADDR software state description pointer is not a | ||
| 1056 | * valid real address | ||
| 1057 | * EBADALIGNED software state description is not correctly | ||
| 1058 | * aligned | ||
| 1059 | * | ||
| 1060 | * This allows the guest to report it's soft state to the hypervisor. There | ||
| 1061 | * are two primary components to this state. The first part states whether | ||
| 1062 | * the guest software is running or not. The second containts optional | ||
| 1063 | * details specific to the software. | ||
| 1064 | * | ||
| 1065 | * The software state argument is defined below in HV_SOFT_STATE_*, and | ||
| 1066 | * indicates whether the guest is operating normally or in a transitional | ||
| 1067 | * state. | ||
| 1068 | * | ||
| 1069 | * The software state description argument is a real address of a data buffer | ||
| 1070 | * of size 32-bytes aligned on a 32-byte boundary. It is treated as a NULL | ||
| 1071 | * terminated 7-bit ASCII string of up to 31 characters not including the | ||
| 1072 | * NULL termination. | ||
| 1073 | */ | ||
| 1074 | #define HV_FAST_MACH_SET_SOFT_STATE 0x70 | ||
| 1075 | #define HV_SOFT_STATE_NORMAL 0x01 | ||
| 1076 | #define HV_SOFT_STATE_TRANSITION 0x02 | ||
| 1077 | |||
| 1078 | #ifndef __ASSEMBLY__ | ||
| 1079 | extern unsigned long sun4v_mach_set_soft_state(unsigned long soft_state, | ||
| 1080 | unsigned long msg_string_ra); | ||
| 1081 | #endif | ||
| 1082 | |||
| 1083 | /* mach_get_soft_state() | ||
| 1084 | * TRAP: HV_FAST_TRAP | ||
| 1085 | * FUNCTION: HV_FAST_MACH_GET_SOFT_STATE | ||
| 1086 | * ARG0: software state description pointer | ||
| 1087 | * RET0: status | ||
| 1088 | * RET1: software state | ||
| 1089 | * ERRORS: ENORADDR software state description pointer is not a | ||
| 1090 | * valid real address | ||
| 1091 | * EBADALIGNED software state description is not correctly | ||
| 1092 | * aligned | ||
| 1093 | * | ||
| 1094 | * Retrieve the current value of the guest's software state. The rules | ||
| 1095 | * for the software state pointer are the same as for mach_set_soft_state() | ||
| 1096 | * above. | ||
| 1097 | */ | ||
| 1098 | #define HV_FAST_MACH_GET_SOFT_STATE 0x71 | ||
| 1099 | |||
| 1100 | /* svc_send() | ||
| 1101 | * TRAP: HV_FAST_TRAP | ||
| 1102 | * FUNCTION: HV_FAST_SVC_SEND | ||
| 1103 | * ARG0: service ID | ||
| 1104 | * ARG1: buffer real address | ||
| 1105 | * ARG2: buffer size | ||
| 1106 | * RET0: STATUS | ||
| 1107 | * RET1: sent_bytes | ||
| 1108 | * | ||
| 1109 | * Be careful, all output registers are clobbered by this operation, | ||
| 1110 | * so for example it is not possible to save away a value in %o4 | ||
| 1111 | * across the trap. | ||
| 1112 | */ | ||
| 1113 | #define HV_FAST_SVC_SEND 0x80 | ||
| 1114 | |||
| 1115 | /* svc_recv() | ||
| 1116 | * TRAP: HV_FAST_TRAP | ||
| 1117 | * FUNCTION: HV_FAST_SVC_RECV | ||
| 1118 | * ARG0: service ID | ||
| 1119 | * ARG1: buffer real address | ||
| 1120 | * ARG2: buffer size | ||
| 1121 | * RET0: STATUS | ||
| 1122 | * RET1: recv_bytes | ||
| 1123 | * | ||
| 1124 | * Be careful, all output registers are clobbered by this operation, | ||
| 1125 | * so for example it is not possible to save away a value in %o4 | ||
| 1126 | * across the trap. | ||
| 1127 | */ | ||
| 1128 | #define HV_FAST_SVC_RECV 0x81 | ||
| 1129 | |||
| 1130 | /* svc_getstatus() | ||
| 1131 | * TRAP: HV_FAST_TRAP | ||
| 1132 | * FUNCTION: HV_FAST_SVC_GETSTATUS | ||
| 1133 | * ARG0: service ID | ||
| 1134 | * RET0: STATUS | ||
| 1135 | * RET1: status bits | ||
| 1136 | */ | ||
| 1137 | #define HV_FAST_SVC_GETSTATUS 0x82 | ||
| 1138 | |||
| 1139 | /* svc_setstatus() | ||
| 1140 | * TRAP: HV_FAST_TRAP | ||
| 1141 | * FUNCTION: HV_FAST_SVC_SETSTATUS | ||
| 1142 | * ARG0: service ID | ||
| 1143 | * ARG1: bits to set | ||
| 1144 | * RET0: STATUS | ||
| 1145 | */ | ||
| 1146 | #define HV_FAST_SVC_SETSTATUS 0x83 | ||
| 1147 | |||
| 1148 | /* svc_clrstatus() | ||
| 1149 | * TRAP: HV_FAST_TRAP | ||
| 1150 | * FUNCTION: HV_FAST_SVC_CLRSTATUS | ||
| 1151 | * ARG0: service ID | ||
| 1152 | * ARG1: bits to clear | ||
| 1153 | * RET0: STATUS | ||
| 1154 | */ | ||
| 1155 | #define HV_FAST_SVC_CLRSTATUS 0x84 | ||
| 1156 | |||
| 1157 | #ifndef __ASSEMBLY__ | ||
| 1158 | extern unsigned long sun4v_svc_send(unsigned long svc_id, | ||
| 1159 | unsigned long buffer, | ||
| 1160 | unsigned long buffer_size, | ||
| 1161 | unsigned long *sent_bytes); | ||
| 1162 | extern unsigned long sun4v_svc_recv(unsigned long svc_id, | ||
| 1163 | unsigned long buffer, | ||
| 1164 | unsigned long buffer_size, | ||
| 1165 | unsigned long *recv_bytes); | ||
| 1166 | extern unsigned long sun4v_svc_getstatus(unsigned long svc_id, | ||
| 1167 | unsigned long *status_bits); | ||
| 1168 | extern unsigned long sun4v_svc_setstatus(unsigned long svc_id, | ||
| 1169 | unsigned long status_bits); | ||
| 1170 | extern unsigned long sun4v_svc_clrstatus(unsigned long svc_id, | ||
| 1171 | unsigned long status_bits); | ||
| 1172 | #endif | ||
| 1173 | |||
| 991 | /* Trap trace services. | 1174 | /* Trap trace services. |
| 992 | * | 1175 | * |
| 993 | * The hypervisor provides a trap tracing capability for privileged | 1176 | * The hypervisor provides a trap tracing capability for privileged |
| @@ -1379,6 +1562,113 @@ extern unsigned long sun4v_intr_gettarget(unsigned long sysino); | |||
| 1379 | extern unsigned long sun4v_intr_settarget(unsigned long sysino, unsigned long cpuid); | 1562 | extern unsigned long sun4v_intr_settarget(unsigned long sysino, unsigned long cpuid); |
| 1380 | #endif | 1563 | #endif |
| 1381 | 1564 | ||
| 1565 | /* vintr_get_cookie() | ||
| 1566 | * TRAP: HV_FAST_TRAP | ||
| 1567 | * FUNCTION: HV_FAST_VINTR_GET_COOKIE | ||
| 1568 | * ARG0: device handle | ||
| 1569 | * ARG1: device ino | ||
| 1570 | * RET0: status | ||
| 1571 | * RET1: cookie | ||
| 1572 | */ | ||
| 1573 | #define HV_FAST_VINTR_GET_COOKIE 0xa7 | ||
| 1574 | |||
| 1575 | /* vintr_set_cookie() | ||
| 1576 | * TRAP: HV_FAST_TRAP | ||
| 1577 | * FUNCTION: HV_FAST_VINTR_SET_COOKIE | ||
| 1578 | * ARG0: device handle | ||
| 1579 | * ARG1: device ino | ||
| 1580 | * ARG2: cookie | ||
| 1581 | * RET0: status | ||
| 1582 | */ | ||
| 1583 | #define HV_FAST_VINTR_SET_COOKIE 0xa8 | ||
| 1584 | |||
| 1585 | /* vintr_get_valid() | ||
| 1586 | * TRAP: HV_FAST_TRAP | ||
| 1587 | * FUNCTION: HV_FAST_VINTR_GET_VALID | ||
| 1588 | * ARG0: device handle | ||
| 1589 | * ARG1: device ino | ||
| 1590 | * RET0: status | ||
| 1591 | * RET1: valid state | ||
| 1592 | */ | ||
| 1593 | #define HV_FAST_VINTR_GET_VALID 0xa9 | ||
| 1594 | |||
| 1595 | /* vintr_set_valid() | ||
| 1596 | * TRAP: HV_FAST_TRAP | ||
| 1597 | * FUNCTION: HV_FAST_VINTR_SET_VALID | ||
| 1598 | * ARG0: device handle | ||
| 1599 | * ARG1: device ino | ||
| 1600 | * ARG2: valid state | ||
| 1601 | * RET0: status | ||
| 1602 | */ | ||
| 1603 | #define HV_FAST_VINTR_SET_VALID 0xaa | ||
| 1604 | |||
| 1605 | /* vintr_get_state() | ||
| 1606 | * TRAP: HV_FAST_TRAP | ||
| 1607 | * FUNCTION: HV_FAST_VINTR_GET_STATE | ||
| 1608 | * ARG0: device handle | ||
| 1609 | * ARG1: device ino | ||
| 1610 | * RET0: status | ||
| 1611 | * RET1: state | ||
| 1612 | */ | ||
| 1613 | #define HV_FAST_VINTR_GET_STATE 0xab | ||
| 1614 | |||
| 1615 | /* vintr_set_state() | ||
| 1616 | * TRAP: HV_FAST_TRAP | ||
| 1617 | * FUNCTION: HV_FAST_VINTR_SET_STATE | ||
| 1618 | * ARG0: device handle | ||
| 1619 | * ARG1: device ino | ||
| 1620 | * ARG2: state | ||
| 1621 | * RET0: status | ||
| 1622 | */ | ||
| 1623 | #define HV_FAST_VINTR_SET_STATE 0xac | ||
| 1624 | |||
| 1625 | /* vintr_get_target() | ||
| 1626 | * TRAP: HV_FAST_TRAP | ||
| 1627 | * FUNCTION: HV_FAST_VINTR_GET_TARGET | ||
| 1628 | * ARG0: device handle | ||
| 1629 | * ARG1: device ino | ||
| 1630 | * RET0: status | ||
| 1631 | * RET1: cpuid | ||
| 1632 | */ | ||
| 1633 | #define HV_FAST_VINTR_GET_TARGET 0xad | ||
| 1634 | |||
| 1635 | /* vintr_set_target() | ||
| 1636 | * TRAP: HV_FAST_TRAP | ||
| 1637 | * FUNCTION: HV_FAST_VINTR_SET_TARGET | ||
| 1638 | * ARG0: device handle | ||
| 1639 | * ARG1: device ino | ||
| 1640 | * ARG2: cpuid | ||
| 1641 | * RET0: status | ||
| 1642 | */ | ||
| 1643 | #define HV_FAST_VINTR_SET_TARGET 0xae | ||
| 1644 | |||
| 1645 | #ifndef __ASSEMBLY__ | ||
| 1646 | extern unsigned long sun4v_vintr_get_cookie(unsigned long dev_handle, | ||
| 1647 | unsigned long dev_ino, | ||
| 1648 | unsigned long *cookie); | ||
| 1649 | extern unsigned long sun4v_vintr_set_cookie(unsigned long dev_handle, | ||
| 1650 | unsigned long dev_ino, | ||
| 1651 | unsigned long cookie); | ||
| 1652 | extern unsigned long sun4v_vintr_get_valid(unsigned long dev_handle, | ||
| 1653 | unsigned long dev_ino, | ||
| 1654 | unsigned long *valid); | ||
| 1655 | extern unsigned long sun4v_vintr_set_valid(unsigned long dev_handle, | ||
| 1656 | unsigned long dev_ino, | ||
| 1657 | unsigned long valid); | ||
| 1658 | extern unsigned long sun4v_vintr_get_state(unsigned long dev_handle, | ||
| 1659 | unsigned long dev_ino, | ||
| 1660 | unsigned long *state); | ||
| 1661 | extern unsigned long sun4v_vintr_set_state(unsigned long dev_handle, | ||
| 1662 | unsigned long dev_ino, | ||
| 1663 | unsigned long state); | ||
| 1664 | extern unsigned long sun4v_vintr_get_target(unsigned long dev_handle, | ||
| 1665 | unsigned long dev_ino, | ||
| 1666 | unsigned long *cpuid); | ||
| 1667 | extern unsigned long sun4v_vintr_set_target(unsigned long dev_handle, | ||
| 1668 | unsigned long dev_ino, | ||
| 1669 | unsigned long cpuid); | ||
| 1670 | #endif | ||
| 1671 | |||
| 1382 | /* PCI IO services. | 1672 | /* PCI IO services. |
| 1383 | * | 1673 | * |
| 1384 | * See the terminology descriptions in the device interrupt services | 1674 | * See the terminology descriptions in the device interrupt services |
| @@ -2037,6 +2327,346 @@ extern unsigned long sun4v_intr_settarget(unsigned long sysino, unsigned long cp | |||
| 2037 | */ | 2327 | */ |
| 2038 | #define HV_FAST_PCI_MSG_SETVALID 0xd3 | 2328 | #define HV_FAST_PCI_MSG_SETVALID 0xd3 |
| 2039 | 2329 | ||
| 2330 | /* Logical Domain Channel services. */ | ||
| 2331 | |||
| 2332 | #define LDC_CHANNEL_DOWN 0 | ||
| 2333 | #define LDC_CHANNEL_UP 1 | ||
| 2334 | #define LDC_CHANNEL_RESETTING 2 | ||
| 2335 | |||
| 2336 | /* ldc_tx_qconf() | ||
| 2337 | * TRAP: HV_FAST_TRAP | ||
| 2338 | * FUNCTION: HV_FAST_LDC_TX_QCONF | ||
| 2339 | * ARG0: channel ID | ||
| 2340 | * ARG1: real address base of queue | ||
| 2341 | * ARG2: num entries in queue | ||
| 2342 | * RET0: status | ||
| 2343 | * | ||
| 2344 | * Configure transmit queue for the LDC endpoint specified by the | ||
| 2345 | * given channel ID, to be placed at the given real address, and | ||
| 2346 | * be of the given num entries. Num entries must be a power of two. | ||
| 2347 | * The real address base of the queue must be aligned on the queue | ||
| 2348 | * size. Each queue entry is 64-bytes, so for example, a 32 entry | ||
| 2349 | * queue must be aligned on a 2048 byte real address boundary. | ||
| 2350 | * | ||
| 2351 | * Upon configuration of a valid transmit queue the head and tail | ||
| 2352 | * pointers are set to a hypervisor specific identical value indicating | ||
| 2353 | * that the queue initially is empty. | ||
| 2354 | * | ||
| 2355 | * The endpoint's transmit queue is un-configured if num entries is zero. | ||
| 2356 | * | ||
| 2357 | * The maximum number of entries for each queue for a specific cpu may be | ||
| 2358 | * determined from the machine description. A transmit queue may be | ||
| 2359 | * specified even in the event that the LDC is down (peer endpoint has no | ||
| 2360 | * receive queue specified). Transmission will begin as soon as the peer | ||
| 2361 | * endpoint defines a receive queue. | ||
| 2362 | * | ||
| 2363 | * It is recommended that a guest wait for a transmit queue to empty prior | ||
| 2364 | * to reconfiguring it, or un-configuring it. Re or un-configuring of a | ||
| 2365 | * non-empty transmit queue behaves exactly as defined above, however it | ||
| 2366 | * is undefined as to how many of the pending entries in the original queue | ||
| 2367 | * will be delivered prior to the re-configuration taking effect. | ||
| 2368 | * Furthermore, as the queue configuration causes a reset of the head and | ||
| 2369 | * tail pointers there is no way for a guest to determine how many entries | ||
| 2370 | * have been sent after the configuration operation. | ||
| 2371 | */ | ||
| 2372 | #define HV_FAST_LDC_TX_QCONF 0xe0 | ||
| 2373 | |||
| 2374 | /* ldc_tx_qinfo() | ||
| 2375 | * TRAP: HV_FAST_TRAP | ||
| 2376 | * FUNCTION: HV_FAST_LDC_TX_QINFO | ||
| 2377 | * ARG0: channel ID | ||
| 2378 | * RET0: status | ||
| 2379 | * RET1: real address base of queue | ||
| 2380 | * RET2: num entries in queue | ||
| 2381 | * | ||
| 2382 | * Return the configuration info for the transmit queue of LDC endpoint | ||
| 2383 | * defined by the given channel ID. The real address is the currently | ||
| 2384 | * defined real address base of the defined queue, and num entries is the | ||
| 2385 | * size of the queue in terms of number of entries. | ||
| 2386 | * | ||
| 2387 | * If the specified channel ID is a valid endpoint number, but no transmit | ||
| 2388 | * queue has been defined this service will return success, but with num | ||
| 2389 | * entries set to zero and the real address will have an undefined value. | ||
| 2390 | */ | ||
| 2391 | #define HV_FAST_LDC_TX_QINFO 0xe1 | ||
| 2392 | |||
| 2393 | /* ldc_tx_get_state() | ||
| 2394 | * TRAP: HV_FAST_TRAP | ||
| 2395 | * FUNCTION: HV_FAST_LDC_TX_GET_STATE | ||
| 2396 | * ARG0: channel ID | ||
| 2397 | * RET0: status | ||
| 2398 | * RET1: head offset | ||
| 2399 | * RET2: tail offset | ||
| 2400 | * RET3: channel state | ||
| 2401 | * | ||
| 2402 | * Return the transmit state, and the head and tail queue pointers, for | ||
| 2403 | * the transmit queue of the LDC endpoint defined by the given channel ID. | ||
| 2404 | * The head and tail values are the byte offset of the head and tail | ||
| 2405 | * positions of the transmit queue for the specified endpoint. | ||
| 2406 | */ | ||
| 2407 | #define HV_FAST_LDC_TX_GET_STATE 0xe2 | ||
| 2408 | |||
| 2409 | /* ldc_tx_set_qtail() | ||
| 2410 | * TRAP: HV_FAST_TRAP | ||
| 2411 | * FUNCTION: HV_FAST_LDC_TX_SET_QTAIL | ||
| 2412 | * ARG0: channel ID | ||
| 2413 | * ARG1: tail offset | ||
| 2414 | * RET0: status | ||
| 2415 | * | ||
| 2416 | * Update the tail pointer for the transmit queue associated with the LDC | ||
| 2417 | * endpoint defined by the given channel ID. The tail offset specified | ||
| 2418 | * must be aligned on a 64 byte boundary, and calculated so as to increase | ||
| 2419 | * the number of pending entries on the transmit queue. Any attempt to | ||
| 2420 | * decrease the number of pending transmit queue entires is considered | ||
| 2421 | * an invalid tail offset and will result in an EINVAL error. | ||
| 2422 | * | ||
| 2423 | * Since the tail of the transmit queue may not be moved backwards, the | ||
| 2424 | * transmit queue may be flushed by configuring a new transmit queue, | ||
| 2425 | * whereupon the hypervisor will configure the initial transmit head and | ||
| 2426 | * tail pointers to be equal. | ||
| 2427 | */ | ||
| 2428 | #define HV_FAST_LDC_TX_SET_QTAIL 0xe3 | ||
| 2429 | |||
| 2430 | /* ldc_rx_qconf() | ||
| 2431 | * TRAP: HV_FAST_TRAP | ||
| 2432 | * FUNCTION: HV_FAST_LDC_RX_QCONF | ||
| 2433 | * ARG0: channel ID | ||
| 2434 | * ARG1: real address base of queue | ||
| 2435 | * ARG2: num entries in queue | ||
| 2436 | * RET0: status | ||
| 2437 | * | ||
| 2438 | * Configure receive queue for the LDC endpoint specified by the | ||
| 2439 | * given channel ID, to be placed at the given real address, and | ||
| 2440 | * be of the given num entries. Num entries must be a power of two. | ||
| 2441 | * The real address base of the queue must be aligned on the queue | ||
| 2442 | * size. Each queue entry is 64-bytes, so for example, a 32 entry | ||
| 2443 | * queue must be aligned on a 2048 byte real address boundary. | ||
| 2444 | * | ||
| 2445 | * The endpoint's transmit queue is un-configured if num entries is zero. | ||
| 2446 | * | ||
| 2447 | * If a valid receive queue is specified for a local endpoint the LDC is | ||
| 2448 | * in the up state for the purpose of transmission to this endpoint. | ||
| 2449 | * | ||
| 2450 | * The maximum number of entries for each queue for a specific cpu may be | ||
| 2451 | * determined from the machine description. | ||
| 2452 | * | ||
| 2453 | * As receive queue configuration causes a reset of the queue's head and | ||
| 2454 | * tail pointers there is no way for a gues to determine how many entries | ||
| 2455 | * have been received between a preceeding ldc_get_rx_state() API call | ||
| 2456 | * and the completion of the configuration operation. It should be noted | ||
| 2457 | * that datagram delivery is not guarenteed via domain channels anyway, | ||
| 2458 | * and therefore any higher protocol should be resilient to datagram | ||
| 2459 | * loss if necessary. However, to overcome this specific race potential | ||
| 2460 | * it is recommended, for example, that a higher level protocol be employed | ||
| 2461 | * to ensure either retransmission, or ensure that no datagrams are pending | ||
| 2462 | * on the peer endpoint's transmit queue prior to the configuration process. | ||
| 2463 | */ | ||
| 2464 | #define HV_FAST_LDC_RX_QCONF 0xe4 | ||
| 2465 | |||
| 2466 | /* ldc_rx_qinfo() | ||
| 2467 | * TRAP: HV_FAST_TRAP | ||
| 2468 | * FUNCTION: HV_FAST_LDC_RX_QINFO | ||
| 2469 | * ARG0: channel ID | ||
| 2470 | * RET0: status | ||
| 2471 | * RET1: real address base of queue | ||
| 2472 | * RET2: num entries in queue | ||
| 2473 | * | ||
| 2474 | * Return the configuration info for the receive queue of LDC endpoint | ||
| 2475 | * defined by the given channel ID. The real address is the currently | ||
| 2476 | * defined real address base of the defined queue, and num entries is the | ||
| 2477 | * size of the queue in terms of number of entries. | ||
| 2478 | * | ||
| 2479 | * If the specified channel ID is a valid endpoint number, but no receive | ||
| 2480 | * queue has been defined this service will return success, but with num | ||
| 2481 | * entries set to zero and the real address will have an undefined value. | ||
| 2482 | */ | ||
| 2483 | #define HV_FAST_LDC_RX_QINFO 0xe5 | ||
| 2484 | |||
| 2485 | /* ldc_rx_get_state() | ||
| 2486 | * TRAP: HV_FAST_TRAP | ||
| 2487 | * FUNCTION: HV_FAST_LDC_RX_GET_STATE | ||
| 2488 | * ARG0: channel ID | ||
| 2489 | * RET0: status | ||
| 2490 | * RET1: head offset | ||
| 2491 | * RET2: tail offset | ||
| 2492 | * RET3: channel state | ||
| 2493 | * | ||
| 2494 | * Return the receive state, and the head and tail queue pointers, for | ||
| 2495 | * the receive queue of the LDC endpoint defined by the given channel ID. | ||
| 2496 | * The head and tail values are the byte offset of the head and tail | ||
| 2497 | * positions of the receive queue for the specified endpoint. | ||
| 2498 | */ | ||
| 2499 | #define HV_FAST_LDC_RX_GET_STATE 0xe6 | ||
| 2500 | |||
| 2501 | /* ldc_rx_set_qhead() | ||
| 2502 | * TRAP: HV_FAST_TRAP | ||
| 2503 | * FUNCTION: HV_FAST_LDC_RX_SET_QHEAD | ||
| 2504 | * ARG0: channel ID | ||
| 2505 | * ARG1: head offset | ||
| 2506 | * RET0: status | ||
| 2507 | * | ||
| 2508 | * Update the head pointer for the receive queue associated with the LDC | ||
| 2509 | * endpoint defined by the given channel ID. The head offset specified | ||
| 2510 | * must be aligned on a 64 byte boundary, and calculated so as to decrease | ||
| 2511 | * the number of pending entries on the receive queue. Any attempt to | ||
| 2512 | * increase the number of pending receive queue entires is considered | ||
| 2513 | * an invalid head offset and will result in an EINVAL error. | ||
| 2514 | * | ||
| 2515 | * The receive queue may be flushed by setting the head offset equal | ||
| 2516 | * to the current tail offset. | ||
| 2517 | */ | ||
| 2518 | #define HV_FAST_LDC_RX_SET_QHEAD 0xe7 | ||
| 2519 | |||
| 2520 | /* LDC Map Table Entry. Each slot is defined by a translation table | ||
| 2521 | * entry, as specified by the LDC_MTE_* bits below, and a 64-bit | ||
| 2522 | * hypervisor invalidation cookie. | ||
| 2523 | */ | ||
| 2524 | #define LDC_MTE_PADDR 0x0fffffffffffe000 /* pa[55:13] */ | ||
| 2525 | #define LDC_MTE_COPY_W 0x0000000000000400 /* copy write access */ | ||
| 2526 | #define LDC_MTE_COPY_R 0x0000000000000200 /* copy read access */ | ||
| 2527 | #define LDC_MTE_IOMMU_W 0x0000000000000100 /* IOMMU write access */ | ||
| 2528 | #define LDC_MTE_IOMMU_R 0x0000000000000080 /* IOMMU read access */ | ||
| 2529 | #define LDC_MTE_EXEC 0x0000000000000040 /* execute */ | ||
| 2530 | #define LDC_MTE_WRITE 0x0000000000000020 /* read */ | ||
| 2531 | #define LDC_MTE_READ 0x0000000000000010 /* write */ | ||
| 2532 | #define LDC_MTE_SZALL 0x000000000000000f /* page size bits */ | ||
| 2533 | #define LDC_MTE_SZ16GB 0x0000000000000007 /* 16GB page */ | ||
| 2534 | #define LDC_MTE_SZ2GB 0x0000000000000006 /* 2GB page */ | ||
| 2535 | #define LDC_MTE_SZ256MB 0x0000000000000005 /* 256MB page */ | ||
| 2536 | #define LDC_MTE_SZ32MB 0x0000000000000004 /* 32MB page */ | ||
| 2537 | #define LDC_MTE_SZ4MB 0x0000000000000003 /* 4MB page */ | ||
| 2538 | #define LDC_MTE_SZ512K 0x0000000000000002 /* 512K page */ | ||
| 2539 | #define LDC_MTE_SZ64K 0x0000000000000001 /* 64K page */ | ||
| 2540 | #define LDC_MTE_SZ8K 0x0000000000000000 /* 8K page */ | ||
| 2541 | |||
| 2542 | #ifndef __ASSEMBLY__ | ||
| 2543 | struct ldc_mtable_entry { | ||
| 2544 | unsigned long mte; | ||
| 2545 | unsigned long cookie; | ||
| 2546 | }; | ||
| 2547 | #endif | ||
| 2548 | |||
| 2549 | /* ldc_set_map_table() | ||
| 2550 | * TRAP: HV_FAST_TRAP | ||
| 2551 | * FUNCTION: HV_FAST_LDC_SET_MAP_TABLE | ||
| 2552 | * ARG0: channel ID | ||
| 2553 | * ARG1: table real address | ||
| 2554 | * ARG2: num entries | ||
| 2555 | * RET0: status | ||
| 2556 | * | ||
| 2557 | * Register the MTE table at the given table real address, with the | ||
| 2558 | * specified num entries, for the LDC indicated by the given channel | ||
| 2559 | * ID. | ||
| 2560 | */ | ||
| 2561 | #define HV_FAST_LDC_SET_MAP_TABLE 0xea | ||
| 2562 | |||
| 2563 | /* ldc_get_map_table() | ||
| 2564 | * TRAP: HV_FAST_TRAP | ||
| 2565 | * FUNCTION: HV_FAST_LDC_GET_MAP_TABLE | ||
| 2566 | * ARG0: channel ID | ||
| 2567 | * RET0: status | ||
| 2568 | * RET1: table real address | ||
| 2569 | * RET2: num entries | ||
| 2570 | * | ||
| 2571 | * Return the configuration of the current mapping table registered | ||
| 2572 | * for the given channel ID. | ||
| 2573 | */ | ||
| 2574 | #define HV_FAST_LDC_GET_MAP_TABLE 0xeb | ||
| 2575 | |||
| 2576 | #define LDC_COPY_IN 0 | ||
| 2577 | #define LDC_COPY_OUT 1 | ||
| 2578 | |||
| 2579 | /* ldc_copy() | ||
| 2580 | * TRAP: HV_FAST_TRAP | ||
| 2581 | * FUNCTION: HV_FAST_LDC_COPY | ||
| 2582 | * ARG0: channel ID | ||
| 2583 | * ARG1: LDC_COPY_* direction code | ||
| 2584 | * ARG2: target real address | ||
| 2585 | * ARG3: local real address | ||
| 2586 | * ARG4: length in bytes | ||
| 2587 | * RET0: status | ||
| 2588 | * RET1: actual length in bytes | ||
| 2589 | */ | ||
| 2590 | #define HV_FAST_LDC_COPY 0xec | ||
| 2591 | |||
| 2592 | #define LDC_MEM_READ 1 | ||
| 2593 | #define LDC_MEM_WRITE 2 | ||
| 2594 | #define LDC_MEM_EXEC 4 | ||
| 2595 | |||
| 2596 | /* ldc_mapin() | ||
| 2597 | * TRAP: HV_FAST_TRAP | ||
| 2598 | * FUNCTION: HV_FAST_LDC_MAPIN | ||
| 2599 | * ARG0: channel ID | ||
| 2600 | * ARG1: cookie | ||
| 2601 | * RET0: status | ||
| 2602 | * RET1: real address | ||
| 2603 | * RET2: LDC_MEM_* permissions | ||
| 2604 | */ | ||
| 2605 | #define HV_FAST_LDC_MAPIN 0xed | ||
| 2606 | |||
| 2607 | /* ldc_unmap() | ||
| 2608 | * TRAP: HV_FAST_TRAP | ||
| 2609 | * FUNCTION: HV_FAST_LDC_UNMAP | ||
| 2610 | * ARG0: real address | ||
| 2611 | * RET0: status | ||
| 2612 | */ | ||
| 2613 | #define HV_FAST_LDC_UNMAP 0xee | ||
| 2614 | |||
| 2615 | /* ldc_revoke() | ||
| 2616 | * TRAP: HV_FAST_TRAP | ||
| 2617 | * FUNCTION: HV_FAST_LDC_REVOKE | ||
| 2618 | * ARG0: cookie | ||
| 2619 | * ARG1: ldc_mtable_entry cookie | ||
| 2620 | * RET0: status | ||
| 2621 | */ | ||
| 2622 | #define HV_FAST_LDC_REVOKE 0xef | ||
| 2623 | |||
| 2624 | #ifndef __ASSEMBLY__ | ||
| 2625 | extern unsigned long sun4v_ldc_tx_qconf(unsigned long channel, | ||
| 2626 | unsigned long ra, | ||
| 2627 | unsigned long num_entries); | ||
| 2628 | extern unsigned long sun4v_ldc_tx_qinfo(unsigned long channel, | ||
| 2629 | unsigned long *ra, | ||
| 2630 | unsigned long *num_entries); | ||
| 2631 | extern unsigned long sun4v_ldc_tx_get_state(unsigned long channel, | ||
| 2632 | unsigned long *head_off, | ||
| 2633 | unsigned long *tail_off, | ||
| 2634 | unsigned long *chan_state); | ||
| 2635 | extern unsigned long sun4v_ldc_tx_set_qtail(unsigned long channel, | ||
| 2636 | unsigned long tail_off); | ||
| 2637 | extern unsigned long sun4v_ldc_rx_qconf(unsigned long channel, | ||
| 2638 | unsigned long ra, | ||
| 2639 | unsigned long num_entries); | ||
| 2640 | extern unsigned long sun4v_ldc_rx_qinfo(unsigned long channel, | ||
| 2641 | unsigned long *ra, | ||
| 2642 | unsigned long *num_entries); | ||
| 2643 | extern unsigned long sun4v_ldc_rx_get_state(unsigned long channel, | ||
| 2644 | unsigned long *head_off, | ||
| 2645 | unsigned long *tail_off, | ||
| 2646 | unsigned long *chan_state); | ||
| 2647 | extern unsigned long sun4v_ldc_rx_set_qhead(unsigned long channel, | ||
| 2648 | unsigned long head_off); | ||
| 2649 | extern unsigned long sun4v_ldc_set_map_table(unsigned long channel, | ||
| 2650 | unsigned long ra, | ||
| 2651 | unsigned long num_entries); | ||
| 2652 | extern unsigned long sun4v_ldc_get_map_table(unsigned long channel, | ||
| 2653 | unsigned long *ra, | ||
| 2654 | unsigned long *num_entries); | ||
| 2655 | extern unsigned long sun4v_ldc_copy(unsigned long channel, | ||
| 2656 | unsigned long dir_code, | ||
| 2657 | unsigned long tgt_raddr, | ||
| 2658 | unsigned long lcl_raddr, | ||
| 2659 | unsigned long len, | ||
| 2660 | unsigned long *actual_len); | ||
| 2661 | extern unsigned long sun4v_ldc_mapin(unsigned long channel, | ||
| 2662 | unsigned long cookie, | ||
| 2663 | unsigned long *ra, | ||
| 2664 | unsigned long *perm); | ||
| 2665 | extern unsigned long sun4v_ldc_unmap(unsigned long ra); | ||
| 2666 | extern unsigned long sun4v_ldc_revoke(unsigned long cookie, | ||
| 2667 | unsigned long mte_cookie); | ||
| 2668 | #endif | ||
| 2669 | |||
| 2040 | /* Performance counter services. */ | 2670 | /* Performance counter services. */ |
| 2041 | 2671 | ||
| 2042 | #define HV_PERF_JBUS_PERF_CTRL_REG 0x00 | 2672 | #define HV_PERF_JBUS_PERF_CTRL_REG 0x00 |
| @@ -2168,6 +2798,100 @@ struct hv_mmu_statistics { | |||
| 2168 | */ | 2798 | */ |
| 2169 | #define HV_FAST_MMUSTAT_INFO 0x103 | 2799 | #define HV_FAST_MMUSTAT_INFO 0x103 |
| 2170 | 2800 | ||
| 2801 | /* NCS crypto services */ | ||
| 2802 | |||
| 2803 | /* ncs_request() sub-function numbers */ | ||
| 2804 | #define HV_NCS_QCONF 0x01 | ||
| 2805 | #define HV_NCS_QTAIL_UPDATE 0x02 | ||
| 2806 | |||
| 2807 | #ifndef __ASSEMBLY__ | ||
| 2808 | struct hv_ncs_queue_entry { | ||
| 2809 | /* MAU Control Register */ | ||
| 2810 | unsigned long mau_control; | ||
| 2811 | #define MAU_CONTROL_INV_PARITY 0x0000000000002000 | ||
| 2812 | #define MAU_CONTROL_STRAND 0x0000000000001800 | ||
| 2813 | #define MAU_CONTROL_BUSY 0x0000000000000400 | ||
| 2814 | #define MAU_CONTROL_INT 0x0000000000000200 | ||
| 2815 | #define MAU_CONTROL_OP 0x00000000000001c0 | ||
| 2816 | #define MAU_CONTROL_OP_SHIFT 6 | ||
| 2817 | #define MAU_OP_LOAD_MA_MEMORY 0x0 | ||
| 2818 | #define MAU_OP_STORE_MA_MEMORY 0x1 | ||
| 2819 | #define MAU_OP_MODULAR_MULT 0x2 | ||
| 2820 | #define MAU_OP_MODULAR_REDUCE 0x3 | ||
| 2821 | #define MAU_OP_MODULAR_EXP_LOOP 0x4 | ||
| 2822 | #define MAU_CONTROL_LEN 0x000000000000003f | ||
| 2823 | #define MAU_CONTROL_LEN_SHIFT 0 | ||
| 2824 | |||
| 2825 | /* Real address of bytes to load or store bytes | ||
| 2826 | * into/out-of the MAU. | ||
| 2827 | */ | ||
| 2828 | unsigned long mau_mpa; | ||
| 2829 | |||
| 2830 | /* Modular Arithmetic MA Offset Register. */ | ||
| 2831 | unsigned long mau_ma; | ||
| 2832 | |||
| 2833 | /* Modular Arithmetic N Prime Register. */ | ||
| 2834 | unsigned long mau_np; | ||
| 2835 | }; | ||
| 2836 | |||
| 2837 | struct hv_ncs_qconf_arg { | ||
| 2838 | unsigned long mid; /* MAU ID, 1 per core on Niagara */ | ||
| 2839 | unsigned long base; /* Real address base of queue */ | ||
| 2840 | unsigned long end; /* Real address end of queue */ | ||
| 2841 | unsigned long num_ents; /* Number of entries in queue */ | ||
| 2842 | }; | ||
| 2843 | |||
| 2844 | struct hv_ncs_qtail_update_arg { | ||
| 2845 | unsigned long mid; /* MAU ID, 1 per core on Niagara */ | ||
| 2846 | unsigned long tail; /* New tail index to use */ | ||
| 2847 | unsigned long syncflag; /* only SYNCFLAG_SYNC is implemented */ | ||
| 2848 | #define HV_NCS_SYNCFLAG_SYNC 0x00 | ||
| 2849 | #define HV_NCS_SYNCFLAG_ASYNC 0x01 | ||
| 2850 | }; | ||
| 2851 | #endif | ||
| 2852 | |||
| 2853 | /* ncs_request() | ||
| 2854 | * TRAP: HV_FAST_TRAP | ||
| 2855 | * FUNCTION: HV_FAST_NCS_REQUEST | ||
| 2856 | * ARG0: NCS sub-function | ||
| 2857 | * ARG1: sub-function argument real address | ||
| 2858 | * ARG2: size in bytes of sub-function argument | ||
| 2859 | * RET0: status | ||
| 2860 | * | ||
| 2861 | * The MAU chip of the Niagara processor is not directly accessible | ||
| 2862 | * to privileged code, instead it is programmed indirectly via this | ||
| 2863 | * hypervisor API. | ||
| 2864 | * | ||
| 2865 | * The interfaces defines a queue of MAU operations to perform. | ||
| 2866 | * Privileged code registers a queue with the hypervisor by invoking | ||
| 2867 | * this HVAPI with the HV_NCS_QCONF sub-function, which defines the | ||
| 2868 | * base, end, and number of entries of the queue. Each queue entry | ||
| 2869 | * contains a MAU register struct block. | ||
| 2870 | * | ||
| 2871 | * The privileged code then proceeds to add entries to the queue and | ||
| 2872 | * then invoke the HV_NCS_QTAIL_UPDATE sub-function. Since only | ||
| 2873 | * synchronous operations are supported by the current hypervisor, | ||
| 2874 | * HV_NCS_QTAIL_UPDATE will run all the pending queue entries to | ||
| 2875 | * completion and return HV_EOK, or return an error code. | ||
| 2876 | * | ||
| 2877 | * The real address of the sub-function argument must be aligned on at | ||
| 2878 | * least an 8-byte boundary. | ||
| 2879 | * | ||
| 2880 | * The tail argument of HV_NCS_QTAIL_UPDATE is an index, not a byte | ||
| 2881 | * offset, into the queue and must be less than or equal the 'num_ents' | ||
| 2882 | * argument given in the HV_NCS_QCONF call. | ||
| 2883 | */ | ||
| 2884 | #define HV_FAST_NCS_REQUEST 0x110 | ||
| 2885 | |||
| 2886 | #ifndef __ASSEMBLY__ | ||
| 2887 | extern unsigned long sun4v_ncs_request(unsigned long request, | ||
| 2888 | unsigned long arg_ra, | ||
| 2889 | unsigned long arg_size); | ||
| 2890 | #endif | ||
| 2891 | |||
| 2892 | #define HV_FAST_FIRE_GET_PERFREG 0x120 | ||
| 2893 | #define HV_FAST_FIRE_SET_PERFREG 0x121 | ||
| 2894 | |||
| 2171 | /* Function numbers for HV_CORE_TRAP. */ | 2895 | /* Function numbers for HV_CORE_TRAP. */ |
| 2172 | #define HV_CORE_SET_VER 0x00 | 2896 | #define HV_CORE_SET_VER 0x00 |
| 2173 | #define HV_CORE_PUTCHAR 0x01 | 2897 | #define HV_CORE_PUTCHAR 0x01 |
| @@ -2204,6 +2928,7 @@ extern void sun4v_hvapi_unregister(unsigned long group); | |||
| 2204 | extern int sun4v_hvapi_get(unsigned long group, | 2928 | extern int sun4v_hvapi_get(unsigned long group, |
| 2205 | unsigned long *major, | 2929 | unsigned long *major, |
| 2206 | unsigned long *minor); | 2930 | unsigned long *minor); |
| 2931 | extern void sun4v_hvapi_init(void); | ||
| 2207 | #endif | 2932 | #endif |
| 2208 | 2933 | ||
| 2209 | #endif /* !(_SPARC64_HYPERVISOR_H) */ | 2934 | #endif /* !(_SPARC64_HYPERVISOR_H) */ |
diff --git a/include/asm-sparc64/kdebug.h b/include/asm-sparc64/kdebug.h index 627e3396a5f0..9974c7b0aebc 100644 --- a/include/asm-sparc64/kdebug.h +++ b/include/asm-sparc64/kdebug.h | |||
| @@ -32,7 +32,6 @@ enum die_val { | |||
| 32 | DIE_TRAP, | 32 | DIE_TRAP, |
| 33 | DIE_TRAP_TL1, | 33 | DIE_TRAP_TL1, |
| 34 | DIE_CALL, | 34 | DIE_CALL, |
| 35 | DIE_PAGE_FAULT, | ||
| 36 | }; | 35 | }; |
| 37 | 36 | ||
| 38 | #endif | 37 | #endif |
diff --git a/include/asm-sparc64/mdesc.h b/include/asm-sparc64/mdesc.h new file mode 100644 index 000000000000..124eb8ca2378 --- /dev/null +++ b/include/asm-sparc64/mdesc.h | |||
| @@ -0,0 +1,39 @@ | |||
| 1 | #ifndef _SPARC64_MDESC_H | ||
| 2 | #define _SPARC64_MDESC_H | ||
| 3 | |||
| 4 | #include <linux/types.h> | ||
| 5 | #include <asm/prom.h> | ||
| 6 | |||
| 7 | struct mdesc_node; | ||
| 8 | struct mdesc_arc { | ||
| 9 | const char *name; | ||
| 10 | struct mdesc_node *arc; | ||
| 11 | }; | ||
| 12 | |||
| 13 | struct mdesc_node { | ||
| 14 | const char *name; | ||
| 15 | u64 node; | ||
| 16 | unsigned int unique_id; | ||
| 17 | unsigned int num_arcs; | ||
| 18 | struct property *properties; | ||
| 19 | struct mdesc_node *hash_next; | ||
| 20 | struct mdesc_node *allnodes_next; | ||
| 21 | struct mdesc_arc arcs[0]; | ||
| 22 | }; | ||
| 23 | |||
| 24 | extern struct mdesc_node *md_find_node_by_name(struct mdesc_node *from, | ||
| 25 | const char *name); | ||
| 26 | #define md_for_each_node_by_name(__mn, __name) \ | ||
| 27 | for (__mn = md_find_node_by_name(NULL, __name); __mn; \ | ||
| 28 | __mn = md_find_node_by_name(__mn, __name)) | ||
| 29 | |||
| 30 | extern struct property *md_find_property(const struct mdesc_node *mp, | ||
| 31 | const char *name, | ||
| 32 | int *lenp); | ||
| 33 | extern const void *md_get_property(const struct mdesc_node *mp, | ||
| 34 | const char *name, | ||
| 35 | int *lenp); | ||
| 36 | |||
| 37 | extern void sun4v_mdesc_init(void); | ||
| 38 | |||
| 39 | #endif | ||
diff --git a/include/asm-sparc64/oplib.h b/include/asm-sparc64/oplib.h index 6a0da3b1695c..992f9f7a476c 100644 --- a/include/asm-sparc64/oplib.h +++ b/include/asm-sparc64/oplib.h | |||
| @@ -316,11 +316,8 @@ extern int prom_setprop(int node, const char *prop_name, char *prop_value, | |||
| 316 | 316 | ||
| 317 | extern int prom_pathtoinode(const char *path); | 317 | extern int prom_pathtoinode(const char *path); |
| 318 | extern int prom_inst2pkg(int); | 318 | extern int prom_inst2pkg(int); |
| 319 | 319 | extern int prom_service_exists(const char *service_name); | |
| 320 | /* CPU probing helpers. */ | 320 | extern void prom_sun4v_guest_soft_state(void); |
| 321 | struct device_node; | ||
| 322 | int cpu_find_by_instance(int instance, struct device_node **dev_node, int *mid); | ||
| 323 | int cpu_find_by_mid(int mid, struct device_node **prom_node); | ||
| 324 | 321 | ||
| 325 | /* Client interface level routines. */ | 322 | /* Client interface level routines. */ |
| 326 | extern void prom_set_trap_table(unsigned long tba); | 323 | extern void prom_set_trap_table(unsigned long tba); |
diff --git a/include/asm-sparc64/percpu.h b/include/asm-sparc64/percpu.h index ced8cbde046d..88db872ce2f8 100644 --- a/include/asm-sparc64/percpu.h +++ b/include/asm-sparc64/percpu.h | |||
| @@ -5,7 +5,8 @@ | |||
| 5 | 5 | ||
| 6 | #ifdef CONFIG_SMP | 6 | #ifdef CONFIG_SMP |
| 7 | 7 | ||
| 8 | extern void setup_per_cpu_areas(void); | 8 | #define setup_per_cpu_areas() do { } while (0) |
| 9 | extern void real_setup_per_cpu_areas(void); | ||
| 9 | 10 | ||
| 10 | extern unsigned long __per_cpu_base; | 11 | extern unsigned long __per_cpu_base; |
| 11 | extern unsigned long __per_cpu_shift; | 12 | extern unsigned long __per_cpu_shift; |
| @@ -34,6 +35,7 @@ do { \ | |||
| 34 | } while (0) | 35 | } while (0) |
| 35 | #else /* ! SMP */ | 36 | #else /* ! SMP */ |
| 36 | 37 | ||
| 38 | #define real_setup_per_cpu_areas() do { } while (0) | ||
| 37 | #define DEFINE_PER_CPU(type, name) \ | 39 | #define DEFINE_PER_CPU(type, name) \ |
| 38 | __typeof__(type) per_cpu__##name | 40 | __typeof__(type) per_cpu__##name |
| 39 | 41 | ||
diff --git a/include/asm-sparc64/prom.h b/include/asm-sparc64/prom.h index ddad5f99ac7f..b4df3042add0 100644 --- a/include/asm-sparc64/prom.h +++ b/include/asm-sparc64/prom.h | |||
| @@ -90,6 +90,7 @@ extern struct device_node *of_find_compatible_node(struct device_node *from, | |||
| 90 | const char *type, const char *compat); | 90 | const char *type, const char *compat); |
| 91 | extern struct device_node *of_find_node_by_path(const char *path); | 91 | extern struct device_node *of_find_node_by_path(const char *path); |
| 92 | extern struct device_node *of_find_node_by_phandle(phandle handle); | 92 | extern struct device_node *of_find_node_by_phandle(phandle handle); |
| 93 | extern struct device_node *of_find_node_by_cpuid(int cpuid); | ||
| 93 | extern struct device_node *of_get_parent(const struct device_node *node); | 94 | extern struct device_node *of_get_parent(const struct device_node *node); |
| 94 | extern struct device_node *of_get_next_child(const struct device_node *node, | 95 | extern struct device_node *of_get_next_child(const struct device_node *node, |
| 95 | struct device_node *prev); | 96 | struct device_node *prev); |
diff --git a/include/asm-sparc64/smp.h b/include/asm-sparc64/smp.h index 869d16fb907b..f76e1492add5 100644 --- a/include/asm-sparc64/smp.h +++ b/include/asm-sparc64/smp.h | |||
| @@ -41,7 +41,7 @@ extern cpumask_t cpu_sibling_map[NR_CPUS]; | |||
| 41 | extern int hard_smp_processor_id(void); | 41 | extern int hard_smp_processor_id(void); |
| 42 | #define raw_smp_processor_id() (current_thread_info()->cpu) | 42 | #define raw_smp_processor_id() (current_thread_info()->cpu) |
| 43 | 43 | ||
| 44 | extern void smp_setup_cpu_possible_map(void); | 44 | extern void smp_fill_in_sib_core_maps(void); |
| 45 | extern unsigned char boot_cpu_id; | 45 | extern unsigned char boot_cpu_id; |
| 46 | 46 | ||
| 47 | #endif /* !(__ASSEMBLY__) */ | 47 | #endif /* !(__ASSEMBLY__) */ |
| @@ -49,7 +49,7 @@ extern unsigned char boot_cpu_id; | |||
| 49 | #else | 49 | #else |
| 50 | 50 | ||
| 51 | #define hard_smp_processor_id() 0 | 51 | #define hard_smp_processor_id() 0 |
| 52 | #define smp_setup_cpu_possible_map() do { } while (0) | 52 | #define smp_fill_in_sib_core_maps() do { } while (0) |
| 53 | #define boot_cpu_id (0) | 53 | #define boot_cpu_id (0) |
| 54 | 54 | ||
| 55 | #endif /* !(CONFIG_SMP) */ | 55 | #endif /* !(CONFIG_SMP) */ |
diff --git a/include/asm-sparc64/sstate.h b/include/asm-sparc64/sstate.h new file mode 100644 index 000000000000..a7c35dbcb281 --- /dev/null +++ b/include/asm-sparc64/sstate.h | |||
| @@ -0,0 +1,13 @@ | |||
| 1 | #ifndef _SPARC64_SSTATE_H | ||
| 2 | #define _SPARC64_SSTATE_H | ||
| 3 | |||
| 4 | extern void sstate_booting(void); | ||
| 5 | extern void sstate_running(void); | ||
| 6 | extern void sstate_halt(void); | ||
| 7 | extern void sstate_poweroff(void); | ||
| 8 | extern void sstate_panic(void); | ||
| 9 | extern void sstate_reboot(void); | ||
| 10 | |||
| 11 | extern void sun4v_sstate_init(void); | ||
| 12 | |||
| 13 | #endif /* _SPARC64_SSTATE_H */ | ||
diff --git a/include/asm-sparc64/thread_info.h b/include/asm-sparc64/thread_info.h index 2ebf7f27bf91..98252cd44dd6 100644 --- a/include/asm-sparc64/thread_info.h +++ b/include/asm-sparc64/thread_info.h | |||
| @@ -38,8 +38,8 @@ struct thread_info { | |||
| 38 | /* D$ line 1 */ | 38 | /* D$ line 1 */ |
| 39 | struct task_struct *task; | 39 | struct task_struct *task; |
| 40 | unsigned long flags; | 40 | unsigned long flags; |
| 41 | __u8 cpu; | ||
| 42 | __u8 fpsaved[7]; | 41 | __u8 fpsaved[7]; |
| 42 | __u8 pad; | ||
| 43 | unsigned long ksp; | 43 | unsigned long ksp; |
| 44 | 44 | ||
| 45 | /* D$ line 2 */ | 45 | /* D$ line 2 */ |
| @@ -49,7 +49,7 @@ struct thread_info { | |||
| 49 | int preempt_count; /* 0 => preemptable, <0 => BUG */ | 49 | int preempt_count; /* 0 => preemptable, <0 => BUG */ |
| 50 | __u8 new_child; | 50 | __u8 new_child; |
| 51 | __u8 syscall_noerror; | 51 | __u8 syscall_noerror; |
| 52 | __u16 __pad; | 52 | __u16 cpu; |
| 53 | 53 | ||
| 54 | unsigned long *utraps; | 54 | unsigned long *utraps; |
| 55 | 55 | ||
| @@ -83,8 +83,7 @@ struct thread_info { | |||
| 83 | #define TI_CURRENT_DS (TI_FLAGS + TI_FLAG_BYTE_CURRENT_DS) | 83 | #define TI_CURRENT_DS (TI_FLAGS + TI_FLAG_BYTE_CURRENT_DS) |
| 84 | #define TI_FPDEPTH (TI_FLAGS + TI_FLAG_BYTE_FPDEPTH) | 84 | #define TI_FPDEPTH (TI_FLAGS + TI_FLAG_BYTE_FPDEPTH) |
| 85 | #define TI_WSAVED (TI_FLAGS + TI_FLAG_BYTE_WSAVED) | 85 | #define TI_WSAVED (TI_FLAGS + TI_FLAG_BYTE_WSAVED) |
| 86 | #define TI_CPU 0x00000010 | 86 | #define TI_FPSAVED 0x00000010 |
| 87 | #define TI_FPSAVED 0x00000011 | ||
| 88 | #define TI_KSP 0x00000018 | 87 | #define TI_KSP 0x00000018 |
| 89 | #define TI_FAULT_ADDR 0x00000020 | 88 | #define TI_FAULT_ADDR 0x00000020 |
| 90 | #define TI_KREGS 0x00000028 | 89 | #define TI_KREGS 0x00000028 |
| @@ -92,6 +91,7 @@ struct thread_info { | |||
| 92 | #define TI_PRE_COUNT 0x00000038 | 91 | #define TI_PRE_COUNT 0x00000038 |
| 93 | #define TI_NEW_CHILD 0x0000003c | 92 | #define TI_NEW_CHILD 0x0000003c |
| 94 | #define TI_SYS_NOERROR 0x0000003d | 93 | #define TI_SYS_NOERROR 0x0000003d |
| 94 | #define TI_CPU 0x0000003e | ||
| 95 | #define TI_UTRAPS 0x00000040 | 95 | #define TI_UTRAPS 0x00000040 |
| 96 | #define TI_REG_WINDOW 0x00000048 | 96 | #define TI_REG_WINDOW 0x00000048 |
| 97 | #define TI_RWIN_SPTRS 0x000003c8 | 97 | #define TI_RWIN_SPTRS 0x000003c8 |
diff --git a/include/asm-sparc64/topology.h b/include/asm-sparc64/topology.h index 98a6c613589d..e0d450d600ec 100644 --- a/include/asm-sparc64/topology.h +++ b/include/asm-sparc64/topology.h | |||
| @@ -6,4 +6,7 @@ | |||
| 6 | 6 | ||
| 7 | #include <asm-generic/topology.h> | 7 | #include <asm-generic/topology.h> |
| 8 | 8 | ||
| 9 | #define topology_core_id(cpu) (cpu_data(cpu).core_id) | ||
| 10 | #define topology_thread_siblings(cpu) (cpu_sibling_map[cpu]) | ||
| 11 | |||
| 9 | #endif /* _ASM_SPARC64_TOPOLOGY_H */ | 12 | #endif /* _ASM_SPARC64_TOPOLOGY_H */ |
diff --git a/include/asm-sparc64/tsb.h b/include/asm-sparc64/tsb.h index ab55ffcb7bf4..76e4299dd9bc 100644 --- a/include/asm-sparc64/tsb.h +++ b/include/asm-sparc64/tsb.h | |||
| @@ -271,7 +271,7 @@ extern struct tsb_phys_patch_entry __tsb_phys_patch, __tsb_phys_patch_end; | |||
| 271 | #define KERN_TSB4M_LOOKUP_TL1(TAG, REG1, REG2, REG3, REG4, OK_LABEL) \ | 271 | #define KERN_TSB4M_LOOKUP_TL1(TAG, REG1, REG2, REG3, REG4, OK_LABEL) \ |
| 272 | sethi %hi(swapper_4m_tsb), REG1; \ | 272 | sethi %hi(swapper_4m_tsb), REG1; \ |
| 273 | or REG1, %lo(swapper_4m_tsb), REG1; \ | 273 | or REG1, %lo(swapper_4m_tsb), REG1; \ |
| 274 | and TAG, (KERNEL_TSB_NENTRIES - 1), REG2; \ | 274 | and TAG, (KERNEL_TSB4M_NENTRIES - 1), REG2; \ |
| 275 | sllx REG2, 4, REG2; \ | 275 | sllx REG2, 4, REG2; \ |
| 276 | add REG1, REG2, REG2; \ | 276 | add REG1, REG2, REG2; \ |
| 277 | KTSB_LOAD_QUAD(REG2, REG3); \ | 277 | KTSB_LOAD_QUAD(REG2, REG3); \ |
diff --git a/include/linux/Kbuild b/include/linux/Kbuild index e1013156c25e..f317c270d4bf 100644 --- a/include/linux/Kbuild +++ b/include/linux/Kbuild | |||
| @@ -62,6 +62,8 @@ header-y += fadvise.h | |||
| 62 | header-y += fd.h | 62 | header-y += fd.h |
| 63 | header-y += fdreg.h | 63 | header-y += fdreg.h |
| 64 | header-y += fib_rules.h | 64 | header-y += fib_rules.h |
| 65 | header-y += firewire-cdev.h | ||
| 66 | header-y += firewire-constants.h | ||
| 65 | header-y += fuse.h | 67 | header-y += fuse.h |
| 66 | header-y += genetlink.h | 68 | header-y += genetlink.h |
| 67 | header-y += gen_stats.h | 69 | header-y += gen_stats.h |
diff --git a/include/linux/bootmem.h b/include/linux/bootmem.h index 0365ec9fc0c9..c83534ee1e79 100644 --- a/include/linux/bootmem.h +++ b/include/linux/bootmem.h | |||
| @@ -59,6 +59,7 @@ extern void *__alloc_bootmem_core(struct bootmem_data *bdata, | |||
| 59 | unsigned long align, | 59 | unsigned long align, |
| 60 | unsigned long goal, | 60 | unsigned long goal, |
| 61 | unsigned long limit); | 61 | unsigned long limit); |
| 62 | extern void *alloc_bootmem_high_node(pg_data_t *pgdat, unsigned long size); | ||
| 62 | 63 | ||
| 63 | #ifndef CONFIG_HAVE_ARCH_BOOTMEM_NODE | 64 | #ifndef CONFIG_HAVE_ARCH_BOOTMEM_NODE |
| 64 | extern void reserve_bootmem(unsigned long addr, unsigned long size); | 65 | extern void reserve_bootmem(unsigned long addr, unsigned long size); |
diff --git a/include/linux/errno.h b/include/linux/errno.h index d90b80f9b28c..46685832ed99 100644 --- a/include/linux/errno.h +++ b/include/linux/errno.h | |||
| @@ -5,7 +5,12 @@ | |||
| 5 | 5 | ||
| 6 | #ifdef __KERNEL__ | 6 | #ifdef __KERNEL__ |
| 7 | 7 | ||
| 8 | /* Should never be seen by user programs */ | 8 | /* |
| 9 | * These should never be seen by user programs. To return one of ERESTART* | ||
| 10 | * codes, signal_pending() MUST be set. Note that ptrace can observe these | ||
| 11 | * at syscall exit tracing, but they will never be left for the debugged user | ||
| 12 | * process to see. | ||
| 13 | */ | ||
| 9 | #define ERESTARTSYS 512 | 14 | #define ERESTARTSYS 512 |
| 10 | #define ERESTARTNOINTR 513 | 15 | #define ERESTARTNOINTR 513 |
| 11 | #define ERESTARTNOHAND 514 /* restart if no handler.. */ | 16 | #define ERESTARTNOHAND 514 /* restart if no handler.. */ |
diff --git a/include/linux/ext4_fs.h b/include/linux/ext4_fs.h index 54c576d414c3..de1f9f78625a 100644 --- a/include/linux/ext4_fs.h +++ b/include/linux/ext4_fs.h | |||
| @@ -32,9 +32,9 @@ | |||
| 32 | /* | 32 | /* |
| 33 | * Define EXT4_RESERVATION to reserve data blocks for expanding files | 33 | * Define EXT4_RESERVATION to reserve data blocks for expanding files |
| 34 | */ | 34 | */ |
| 35 | #define EXT4_DEFAULT_RESERVE_BLOCKS 8 | 35 | #define EXT4_DEFAULT_RESERVE_BLOCKS 8 |
| 36 | /*max window size: 1024(direct blocks) + 3([t,d]indirect blocks) */ | 36 | /*max window size: 1024(direct blocks) + 3([t,d]indirect blocks) */ |
| 37 | #define EXT4_MAX_RESERVE_BLOCKS 1027 | 37 | #define EXT4_MAX_RESERVE_BLOCKS 1027 |
| 38 | #define EXT4_RESERVE_WINDOW_NOT_ALLOCATED 0 | 38 | #define EXT4_RESERVE_WINDOW_NOT_ALLOCATED 0 |
| 39 | /* | 39 | /* |
| 40 | * Always enable hashed directories | 40 | * Always enable hashed directories |
| @@ -204,12 +204,12 @@ struct ext4_group_desc | |||
| 204 | 204 | ||
| 205 | /* Used to pass group descriptor data when online resize is done */ | 205 | /* Used to pass group descriptor data when online resize is done */ |
| 206 | struct ext4_new_group_input { | 206 | struct ext4_new_group_input { |
| 207 | __u32 group; /* Group number for this data */ | 207 | __u32 group; /* Group number for this data */ |
| 208 | __u64 block_bitmap; /* Absolute block number of block bitmap */ | 208 | __u64 block_bitmap; /* Absolute block number of block bitmap */ |
| 209 | __u64 inode_bitmap; /* Absolute block number of inode bitmap */ | 209 | __u64 inode_bitmap; /* Absolute block number of inode bitmap */ |
| 210 | __u64 inode_table; /* Absolute block number of inode table start */ | 210 | __u64 inode_table; /* Absolute block number of inode table start */ |
| 211 | __u32 blocks_count; /* Total number of blocks in this group */ | 211 | __u32 blocks_count; /* Total number of blocks in this group */ |
| 212 | __u16 reserved_blocks; /* Number of reserved blocks in this group */ | 212 | __u16 reserved_blocks; /* Number of reserved blocks in this group */ |
| 213 | __u16 unused; | 213 | __u16 unused; |
| 214 | }; | 214 | }; |
| 215 | 215 | ||
| @@ -310,7 +310,7 @@ struct ext4_inode { | |||
| 310 | __u8 l_i_frag; /* Fragment number */ | 310 | __u8 l_i_frag; /* Fragment number */ |
| 311 | __u8 l_i_fsize; /* Fragment size */ | 311 | __u8 l_i_fsize; /* Fragment size */ |
| 312 | __le16 l_i_file_acl_high; | 312 | __le16 l_i_file_acl_high; |
| 313 | __le16 l_i_uid_high; /* these 2 fields */ | 313 | __le16 l_i_uid_high; /* these 2 fields */ |
| 314 | __le16 l_i_gid_high; /* were reserved2[0] */ | 314 | __le16 l_i_gid_high; /* were reserved2[0] */ |
| 315 | __u32 l_i_reserved2; | 315 | __u32 l_i_reserved2; |
| 316 | } linux2; | 316 | } linux2; |
| @@ -513,7 +513,14 @@ struct ext4_super_block { | |||
| 513 | /*150*/ __le32 s_blocks_count_hi; /* Blocks count */ | 513 | /*150*/ __le32 s_blocks_count_hi; /* Blocks count */ |
| 514 | __le32 s_r_blocks_count_hi; /* Reserved blocks count */ | 514 | __le32 s_r_blocks_count_hi; /* Reserved blocks count */ |
| 515 | __le32 s_free_blocks_count_hi; /* Free blocks count */ | 515 | __le32 s_free_blocks_count_hi; /* Free blocks count */ |
| 516 | __u32 s_reserved[169]; /* Padding to the end of the block */ | 516 | __u16 s_min_extra_isize; /* All inodes have at least # bytes */ |
| 517 | __u16 s_want_extra_isize; /* New inodes should reserve # bytes */ | ||
| 518 | __u32 s_flags; /* Miscellaneous flags */ | ||
| 519 | __u16 s_raid_stride; /* RAID stride */ | ||
| 520 | __u16 s_mmp_interval; /* # seconds to wait in MMP checking */ | ||
| 521 | __u64 s_mmp_block; /* Block for multi-mount protection */ | ||
| 522 | __u32 s_raid_stripe_width; /* blocks on all data disks (N*stride)*/ | ||
| 523 | __u32 s_reserved[163]; /* Padding to the end of the block */ | ||
| 517 | }; | 524 | }; |
| 518 | 525 | ||
| 519 | #ifdef __KERNEL__ | 526 | #ifdef __KERNEL__ |
| @@ -780,9 +787,9 @@ void ext4_get_group_no_and_offset(struct super_block *sb, ext4_fsblk_t blocknr, | |||
| 780 | * Ok, these declarations are also in <linux/kernel.h> but none of the | 787 | * Ok, these declarations are also in <linux/kernel.h> but none of the |
| 781 | * ext4 source programs needs to include it so they are duplicated here. | 788 | * ext4 source programs needs to include it so they are duplicated here. |
| 782 | */ | 789 | */ |
| 783 | # define NORET_TYPE /**/ | 790 | # define NORET_TYPE /**/ |
| 784 | # define ATTRIB_NORET __attribute__((noreturn)) | 791 | # define ATTRIB_NORET __attribute__((noreturn)) |
| 785 | # define NORET_AND noreturn, | 792 | # define NORET_AND noreturn, |
| 786 | 793 | ||
| 787 | /* balloc.c */ | 794 | /* balloc.c */ |
| 788 | extern unsigned int ext4_block_group(struct super_block *sb, | 795 | extern unsigned int ext4_block_group(struct super_block *sb, |
diff --git a/include/linux/ext4_fs_extents.h b/include/linux/ext4_fs_extents.h index 7eb1d73fc5d1..acfe59740b03 100644 --- a/include/linux/ext4_fs_extents.h +++ b/include/linux/ext4_fs_extents.h | |||
| @@ -151,8 +151,8 @@ typedef int (*ext_prepare_callback)(struct inode *, struct ext4_ext_path *, | |||
| 151 | ((struct ext4_extent_idx *) (((char *) (__hdr__)) + \ | 151 | ((struct ext4_extent_idx *) (((char *) (__hdr__)) + \ |
| 152 | sizeof(struct ext4_extent_header))) | 152 | sizeof(struct ext4_extent_header))) |
| 153 | #define EXT_HAS_FREE_INDEX(__path__) \ | 153 | #define EXT_HAS_FREE_INDEX(__path__) \ |
| 154 | (le16_to_cpu((__path__)->p_hdr->eh_entries) \ | 154 | (le16_to_cpu((__path__)->p_hdr->eh_entries) \ |
| 155 | < le16_to_cpu((__path__)->p_hdr->eh_max)) | 155 | < le16_to_cpu((__path__)->p_hdr->eh_max)) |
| 156 | #define EXT_LAST_EXTENT(__hdr__) \ | 156 | #define EXT_LAST_EXTENT(__hdr__) \ |
| 157 | (EXT_FIRST_EXTENT((__hdr__)) + le16_to_cpu((__hdr__)->eh_entries) - 1) | 157 | (EXT_FIRST_EXTENT((__hdr__)) + le16_to_cpu((__hdr__)->eh_entries) - 1) |
| 158 | #define EXT_LAST_INDEX(__hdr__) \ | 158 | #define EXT_LAST_INDEX(__hdr__) \ |
| @@ -190,6 +190,7 @@ ext4_ext_invalidate_cache(struct inode *inode) | |||
| 190 | 190 | ||
| 191 | extern int ext4_extent_tree_init(handle_t *, struct inode *); | 191 | extern int ext4_extent_tree_init(handle_t *, struct inode *); |
| 192 | extern int ext4_ext_calc_credits_for_insert(struct inode *, struct ext4_ext_path *); | 192 | extern int ext4_ext_calc_credits_for_insert(struct inode *, struct ext4_ext_path *); |
| 193 | extern unsigned int ext4_ext_check_overlap(struct inode *, struct ext4_extent *, struct ext4_ext_path *); | ||
| 193 | extern int ext4_ext_insert_extent(handle_t *, struct inode *, struct ext4_ext_path *, struct ext4_extent *); | 194 | extern int ext4_ext_insert_extent(handle_t *, struct inode *, struct ext4_ext_path *, struct ext4_extent *); |
| 194 | extern int ext4_ext_walk_space(struct inode *, unsigned long, unsigned long, ext_prepare_callback, void *); | 195 | extern int ext4_ext_walk_space(struct inode *, unsigned long, unsigned long, ext_prepare_callback, void *); |
| 195 | extern struct ext4_ext_path * ext4_ext_find_extent(struct inode *, int, struct ext4_ext_path *); | 196 | extern struct ext4_ext_path * ext4_ext_find_extent(struct inode *, int, struct ext4_ext_path *); |
diff --git a/include/linux/ext4_fs_i.h b/include/linux/ext4_fs_i.h index d5b177e5b395..9de494406995 100644 --- a/include/linux/ext4_fs_i.h +++ b/include/linux/ext4_fs_i.h | |||
| @@ -41,14 +41,14 @@ struct ext4_reserve_window_node { | |||
| 41 | 41 | ||
| 42 | struct ext4_block_alloc_info { | 42 | struct ext4_block_alloc_info { |
| 43 | /* information about reservation window */ | 43 | /* information about reservation window */ |
| 44 | struct ext4_reserve_window_node rsv_window_node; | 44 | struct ext4_reserve_window_node rsv_window_node; |
| 45 | /* | 45 | /* |
| 46 | * was i_next_alloc_block in ext4_inode_info | 46 | * was i_next_alloc_block in ext4_inode_info |
| 47 | * is the logical (file-relative) number of the | 47 | * is the logical (file-relative) number of the |
| 48 | * most-recently-allocated block in this file. | 48 | * most-recently-allocated block in this file. |
| 49 | * We use this for detecting linearly ascending allocation requests. | 49 | * We use this for detecting linearly ascending allocation requests. |
| 50 | */ | 50 | */ |
| 51 | __u32 last_alloc_logical_block; | 51 | __u32 last_alloc_logical_block; |
| 52 | /* | 52 | /* |
| 53 | * Was i_next_alloc_goal in ext4_inode_info | 53 | * Was i_next_alloc_goal in ext4_inode_info |
| 54 | * is the *physical* companion to i_next_alloc_block. | 54 | * is the *physical* companion to i_next_alloc_block. |
| @@ -56,7 +56,7 @@ struct ext4_block_alloc_info { | |||
| 56 | * allocated to this file. This give us the goal (target) for the next | 56 | * allocated to this file. This give us the goal (target) for the next |
| 57 | * allocation when we detect linearly ascending requests. | 57 | * allocation when we detect linearly ascending requests. |
| 58 | */ | 58 | */ |
| 59 | ext4_fsblk_t last_alloc_physical_block; | 59 | ext4_fsblk_t last_alloc_physical_block; |
| 60 | }; | 60 | }; |
| 61 | 61 | ||
| 62 | #define rsv_start rsv_window._rsv_start | 62 | #define rsv_start rsv_window._rsv_start |
diff --git a/include/linux/fb.h b/include/linux/fb.h index c654d0e9ce33..66226824ab68 100644 --- a/include/linux/fb.h +++ b/include/linux/fb.h | |||
| @@ -942,6 +942,7 @@ extern int fb_new_modelist(struct fb_info *info); | |||
| 942 | 942 | ||
| 943 | extern struct fb_info *registered_fb[FB_MAX]; | 943 | extern struct fb_info *registered_fb[FB_MAX]; |
| 944 | extern int num_registered_fb; | 944 | extern int num_registered_fb; |
| 945 | extern struct class *fb_class; | ||
| 945 | 946 | ||
| 946 | static inline void __fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, | 947 | static inline void __fb_pad_aligned_buffer(u8 *dst, u32 d_pitch, |
| 947 | u8 *src, u32 s_pitch, u32 height) | 948 | u8 *src, u32 s_pitch, u32 height) |
diff --git a/include/linux/firewire-cdev.h b/include/linux/firewire-cdev.h index d4455eb2ae35..efbe1fda1a22 100644 --- a/include/linux/firewire-cdev.h +++ b/include/linux/firewire-cdev.h | |||
| @@ -198,13 +198,15 @@ struct fw_cdev_create_iso_context { | |||
| 198 | __u32 handle; | 198 | __u32 handle; |
| 199 | }; | 199 | }; |
| 200 | 200 | ||
| 201 | #define FW_CDEV_ISO_PAYLOAD_LENGTH(v) (v) | ||
| 202 | #define FW_CDEV_ISO_INTERRUPT (1 << 16) | ||
| 203 | #define FW_CDEV_ISO_SKIP (1 << 17) | ||
| 204 | #define FW_CDEV_ISO_TAG(v) ((v) << 18) | ||
| 205 | #define FW_CDEV_ISO_SY(v) ((v) << 20) | ||
| 206 | #define FW_CDEV_ISO_HEADER_LENGTH(v) ((v) << 24) | ||
| 207 | |||
| 201 | struct fw_cdev_iso_packet { | 208 | struct fw_cdev_iso_packet { |
| 202 | __u16 payload_length; /* Length of indirect payload. */ | 209 | __u32 control; |
| 203 | __u32 interrupt : 1; /* Generate interrupt on this packet */ | ||
| 204 | __u32 skip : 1; /* Set to not send packet at all. */ | ||
| 205 | __u32 tag : 2; | ||
| 206 | __u32 sy : 4; | ||
| 207 | __u32 header_length : 8; /* Length of immediate header. */ | ||
| 208 | __u32 header[0]; | 210 | __u32 header[0]; |
| 209 | }; | 211 | }; |
| 210 | 212 | ||
diff --git a/include/linux/ipv6.h b/include/linux/ipv6.h index 09ea01a8a99c..648bd1f0912d 100644 --- a/include/linux/ipv6.h +++ b/include/linux/ipv6.h | |||
| @@ -209,9 +209,8 @@ enum { | |||
| 209 | DEVCONF_RTR_PROBE_INTERVAL, | 209 | DEVCONF_RTR_PROBE_INTERVAL, |
| 210 | DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN, | 210 | DEVCONF_ACCEPT_RA_RT_INFO_MAX_PLEN, |
| 211 | DEVCONF_PROXY_NDP, | 211 | DEVCONF_PROXY_NDP, |
| 212 | __DEVCONF_OPTIMISTIC_DAD, | ||
| 213 | DEVCONF_ACCEPT_SOURCE_ROUTE, | ||
| 214 | DEVCONF_OPTIMISTIC_DAD, | 212 | DEVCONF_OPTIMISTIC_DAD, |
| 213 | DEVCONF_ACCEPT_SOURCE_ROUTE, | ||
| 215 | DEVCONF_MAX | 214 | DEVCONF_MAX |
| 216 | }; | 215 | }; |
| 217 | 216 | ||
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index f671cd2f133f..3a70f553b28f 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
| @@ -910,6 +910,17 @@ static inline int netif_rx_reschedule(struct net_device *dev, int undo) | |||
| 910 | return 0; | 910 | return 0; |
| 911 | } | 911 | } |
| 912 | 912 | ||
| 913 | /* same as netif_rx_complete, except that local_irq_save(flags) | ||
| 914 | * has already been issued | ||
| 915 | */ | ||
| 916 | static inline void __netif_rx_complete(struct net_device *dev) | ||
| 917 | { | ||
| 918 | BUG_ON(!test_bit(__LINK_STATE_RX_SCHED, &dev->state)); | ||
| 919 | list_del(&dev->poll_list); | ||
| 920 | smp_mb__before_clear_bit(); | ||
| 921 | clear_bit(__LINK_STATE_RX_SCHED, &dev->state); | ||
| 922 | } | ||
| 923 | |||
| 913 | /* Remove interface from poll list: it must be in the poll list | 924 | /* Remove interface from poll list: it must be in the poll list |
| 914 | * on current cpu. This primitive is called by dev->poll(), when | 925 | * on current cpu. This primitive is called by dev->poll(), when |
| 915 | * it completes the work. The device cannot be out of poll list at this | 926 | * it completes the work. The device cannot be out of poll list at this |
| @@ -920,10 +931,7 @@ static inline void netif_rx_complete(struct net_device *dev) | |||
| 920 | unsigned long flags; | 931 | unsigned long flags; |
| 921 | 932 | ||
| 922 | local_irq_save(flags); | 933 | local_irq_save(flags); |
| 923 | BUG_ON(!test_bit(__LINK_STATE_RX_SCHED, &dev->state)); | 934 | __netif_rx_complete(dev); |
| 924 | list_del(&dev->poll_list); | ||
| 925 | smp_mb__before_clear_bit(); | ||
| 926 | clear_bit(__LINK_STATE_RX_SCHED, &dev->state); | ||
| 927 | local_irq_restore(flags); | 935 | local_irq_restore(flags); |
| 928 | } | 936 | } |
| 929 | 937 | ||
| @@ -940,17 +948,6 @@ static inline void netif_poll_enable(struct net_device *dev) | |||
| 940 | clear_bit(__LINK_STATE_RX_SCHED, &dev->state); | 948 | clear_bit(__LINK_STATE_RX_SCHED, &dev->state); |
| 941 | } | 949 | } |
| 942 | 950 | ||
| 943 | /* same as netif_rx_complete, except that local_irq_save(flags) | ||
| 944 | * has already been issued | ||
| 945 | */ | ||
| 946 | static inline void __netif_rx_complete(struct net_device *dev) | ||
| 947 | { | ||
| 948 | BUG_ON(!test_bit(__LINK_STATE_RX_SCHED, &dev->state)); | ||
| 949 | list_del(&dev->poll_list); | ||
| 950 | smp_mb__before_clear_bit(); | ||
| 951 | clear_bit(__LINK_STATE_RX_SCHED, &dev->state); | ||
| 952 | } | ||
| 953 | |||
| 954 | static inline void netif_tx_lock(struct net_device *dev) | 951 | static inline void netif_tx_lock(struct net_device *dev) |
| 955 | { | 952 | { |
| 956 | spin_lock(&dev->_xmit_lock); | 953 | spin_lock(&dev->_xmit_lock); |
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h index 4712e269d8d3..6a115cffea34 100644 --- a/include/linux/pci_ids.h +++ b/include/linux/pci_ids.h | |||
| @@ -1292,6 +1292,7 @@ | |||
| 1292 | #define PCI_DEVICE_ID_VIA_P4M890 0x0327 | 1292 | #define PCI_DEVICE_ID_VIA_P4M890 0x0327 |
| 1293 | #define PCI_DEVICE_ID_VIA_VT3324 0x0324 | 1293 | #define PCI_DEVICE_ID_VIA_VT3324 0x0324 |
| 1294 | #define PCI_DEVICE_ID_VIA_VT3336 0x0336 | 1294 | #define PCI_DEVICE_ID_VIA_VT3336 0x0336 |
| 1295 | #define PCI_DEVICE_ID_VIA_VT3351 0x0351 | ||
| 1295 | #define PCI_DEVICE_ID_VIA_8371_0 0x0391 | 1296 | #define PCI_DEVICE_ID_VIA_8371_0 0x0391 |
| 1296 | #define PCI_DEVICE_ID_VIA_8501_0 0x0501 | 1297 | #define PCI_DEVICE_ID_VIA_8501_0 0x0501 |
| 1297 | #define PCI_DEVICE_ID_VIA_82C561 0x0561 | 1298 | #define PCI_DEVICE_ID_VIA_82C561 0x0561 |
| @@ -1437,6 +1438,7 @@ | |||
| 1437 | #define PCI_DEVICE_ID_SERVERWORKS_LE 0x0009 | 1438 | #define PCI_DEVICE_ID_SERVERWORKS_LE 0x0009 |
| 1438 | #define PCI_DEVICE_ID_SERVERWORKS_GCNB_LE 0x0017 | 1439 | #define PCI_DEVICE_ID_SERVERWORKS_GCNB_LE 0x0017 |
| 1439 | #define PCI_DEVICE_ID_SERVERWORKS_EPB 0x0103 | 1440 | #define PCI_DEVICE_ID_SERVERWORKS_EPB 0x0103 |
| 1441 | #define PCI_DEVICE_ID_SERVERWORKS_HT1000_PCIX 0x0104 | ||
| 1440 | #define PCI_DEVICE_ID_SERVERWORKS_HT2000_PCIE 0x0132 | 1442 | #define PCI_DEVICE_ID_SERVERWORKS_HT2000_PCIE 0x0132 |
| 1441 | #define PCI_DEVICE_ID_SERVERWORKS_OSB4 0x0200 | 1443 | #define PCI_DEVICE_ID_SERVERWORKS_OSB4 0x0200 |
| 1442 | #define PCI_DEVICE_ID_SERVERWORKS_CSB5 0x0201 | 1444 | #define PCI_DEVICE_ID_SERVERWORKS_CSB5 0x0201 |
| @@ -2267,11 +2269,11 @@ | |||
| 2267 | #define PCI_DEVICE_ID_INTEL_ICH8_5 0x283e | 2269 | #define PCI_DEVICE_ID_INTEL_ICH8_5 0x283e |
| 2268 | #define PCI_DEVICE_ID_INTEL_ICH8_6 0x2850 | 2270 | #define PCI_DEVICE_ID_INTEL_ICH8_6 0x2850 |
| 2269 | #define PCI_DEVICE_ID_INTEL_ICH9_0 0x2910 | 2271 | #define PCI_DEVICE_ID_INTEL_ICH9_0 0x2910 |
| 2270 | #define PCI_DEVICE_ID_INTEL_ICH9_1 0x2911 | 2272 | #define PCI_DEVICE_ID_INTEL_ICH9_1 0x2917 |
| 2271 | #define PCI_DEVICE_ID_INTEL_ICH9_2 0x2912 | 2273 | #define PCI_DEVICE_ID_INTEL_ICH9_2 0x2912 |
| 2272 | #define PCI_DEVICE_ID_INTEL_ICH9_3 0x2913 | 2274 | #define PCI_DEVICE_ID_INTEL_ICH9_3 0x2913 |
| 2273 | #define PCI_DEVICE_ID_INTEL_ICH9_4 0x2914 | 2275 | #define PCI_DEVICE_ID_INTEL_ICH9_4 0x2914 |
| 2274 | #define PCI_DEVICE_ID_INTEL_ICH9_5 0x2915 | 2276 | #define PCI_DEVICE_ID_INTEL_ICH9_5 0x2919 |
| 2275 | #define PCI_DEVICE_ID_INTEL_ICH9_6 0x2930 | 2277 | #define PCI_DEVICE_ID_INTEL_ICH9_6 0x2930 |
| 2276 | #define PCI_DEVICE_ID_INTEL_82855PM_HB 0x3340 | 2278 | #define PCI_DEVICE_ID_INTEL_82855PM_HB 0x3340 |
| 2277 | #define PCI_DEVICE_ID_INTEL_82830_HB 0x3575 | 2279 | #define PCI_DEVICE_ID_INTEL_82830_HB 0x3575 |
diff --git a/include/linux/serial_core.h b/include/linux/serial_core.h index a3ac4c896831..7f2c99d66e9d 100644 --- a/include/linux/serial_core.h +++ b/include/linux/serial_core.h | |||
| @@ -152,6 +152,7 @@ | |||
| 152 | #include <linux/sched.h> | 152 | #include <linux/sched.h> |
| 153 | #include <linux/tty.h> | 153 | #include <linux/tty.h> |
| 154 | #include <linux/mutex.h> | 154 | #include <linux/mutex.h> |
| 155 | #include <linux/sysrq.h> | ||
| 155 | 156 | ||
| 156 | struct uart_port; | 157 | struct uart_port; |
| 157 | struct uart_info; | 158 | struct uart_info; |
diff --git a/include/linux/timer.h b/include/linux/timer.h index e0c5c16c992f..c661710d3627 100644 --- a/include/linux/timer.h +++ b/include/linux/timer.h | |||
| @@ -69,6 +69,12 @@ extern int __mod_timer(struct timer_list *timer, unsigned long expires); | |||
| 69 | extern int mod_timer(struct timer_list *timer, unsigned long expires); | 69 | extern int mod_timer(struct timer_list *timer, unsigned long expires); |
| 70 | 70 | ||
| 71 | /* | 71 | /* |
| 72 | * The jiffies value which is added to now, when there is no timer | ||
| 73 | * in the timer wheel: | ||
| 74 | */ | ||
| 75 | #define NEXT_TIMER_MAX_DELTA ((1UL << 30) - 1) | ||
| 76 | |||
| 77 | /* | ||
| 72 | * Return when the next timer-wheel timeout occurs (in absolute jiffies), | 78 | * Return when the next timer-wheel timeout occurs (in absolute jiffies), |
| 73 | * locks the timer base: | 79 | * locks the timer base: |
| 74 | */ | 80 | */ |
diff --git a/include/net/sock.h b/include/net/sock.h index 689b886038da..dfeb8b13024f 100644 --- a/include/net/sock.h +++ b/include/net/sock.h | |||
| @@ -218,13 +218,13 @@ struct sock { | |||
| 218 | atomic_t sk_rmem_alloc; | 218 | atomic_t sk_rmem_alloc; |
| 219 | atomic_t sk_wmem_alloc; | 219 | atomic_t sk_wmem_alloc; |
| 220 | atomic_t sk_omem_alloc; | 220 | atomic_t sk_omem_alloc; |
| 221 | int sk_sndbuf; | ||
| 221 | struct sk_buff_head sk_receive_queue; | 222 | struct sk_buff_head sk_receive_queue; |
| 222 | struct sk_buff_head sk_write_queue; | 223 | struct sk_buff_head sk_write_queue; |
| 223 | struct sk_buff_head sk_async_wait_queue; | 224 | struct sk_buff_head sk_async_wait_queue; |
| 224 | int sk_wmem_queued; | 225 | int sk_wmem_queued; |
| 225 | int sk_forward_alloc; | 226 | int sk_forward_alloc; |
| 226 | gfp_t sk_allocation; | 227 | gfp_t sk_allocation; |
| 227 | int sk_sndbuf; | ||
| 228 | int sk_route_caps; | 228 | int sk_route_caps; |
| 229 | int sk_gso_type; | 229 | int sk_gso_type; |
| 230 | int sk_rcvlowat; | 230 | int sk_rcvlowat; |
diff --git a/include/net/tcp.h b/include/net/tcp.h index e22b4f0305a3..a8af9ae00177 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h | |||
| @@ -254,6 +254,12 @@ static inline int between(__u32 seq1, __u32 seq2, __u32 seq3) | |||
| 254 | return seq3 - seq2 >= seq1 - seq2; | 254 | return seq3 - seq2 >= seq1 - seq2; |
| 255 | } | 255 | } |
| 256 | 256 | ||
| 257 | static inline int tcp_too_many_orphans(struct sock *sk, int num) | ||
| 258 | { | ||
| 259 | return (num > sysctl_tcp_max_orphans) || | ||
| 260 | (sk->sk_wmem_queued > SOCK_MIN_SNDBUF && | ||
| 261 | atomic_read(&tcp_memory_allocated) > sysctl_tcp_mem[2]); | ||
| 262 | } | ||
| 257 | 263 | ||
| 258 | extern struct proto tcp_prot; | 264 | extern struct proto tcp_prot; |
| 259 | 265 | ||
diff --git a/include/net/xfrm.h b/include/net/xfrm.h index 39ef925d39dd..90185e8b335e 100644 --- a/include/net/xfrm.h +++ b/include/net/xfrm.h | |||
| @@ -237,7 +237,6 @@ extern int xfrm_policy_register_afinfo(struct xfrm_policy_afinfo *afinfo); | |||
| 237 | extern int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo); | 237 | extern int xfrm_policy_unregister_afinfo(struct xfrm_policy_afinfo *afinfo); |
| 238 | extern void km_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c); | 238 | extern void km_policy_notify(struct xfrm_policy *xp, int dir, struct km_event *c); |
| 239 | extern void km_state_notify(struct xfrm_state *x, struct km_event *c); | 239 | extern void km_state_notify(struct xfrm_state *x, struct km_event *c); |
| 240 | #define XFRM_ACQ_EXPIRES 30 | ||
| 241 | 240 | ||
| 242 | struct xfrm_tmpl; | 241 | struct xfrm_tmpl; |
| 243 | extern int km_query(struct xfrm_state *x, struct xfrm_tmpl *t, struct xfrm_policy *pol); | 242 | extern int km_query(struct xfrm_state *x, struct xfrm_tmpl *t, struct xfrm_policy *pol); |
diff --git a/include/sound/version.h b/include/sound/version.h index 50ee4fd420fa..8e5b2f0f5946 100644 --- a/include/sound/version.h +++ b/include/sound/version.h | |||
| @@ -1,3 +1,3 @@ | |||
| 1 | /* include/version.h. Generated by alsa/ksync script. */ | 1 | /* include/version.h. Generated by alsa/ksync script. */ |
| 2 | #define CONFIG_SND_VERSION "1.0.14rc4" | 2 | #define CONFIG_SND_VERSION "1.0.14" |
| 3 | #define CONFIG_SND_DATE " (Wed May 16 09:45:46 2007 UTC)" | 3 | #define CONFIG_SND_DATE " (Thu May 31 09:03:25 2007 UTC)" |
