init.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* linux/arch/arm/mach-s5pv210/init.c
  2. *
  3. * Copyright (c) 2010 Samsung Electronics Co., Ltd.
  4. * http://www.samsung.com/
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #include <linux/kernel.h>
  11. #include <linux/types.h>
  12. #include <linux/init.h>
  13. #include <linux/serial_core.h>
  14. #include <plat/cpu.h>
  15. #include <plat/devs.h>
  16. #include <plat/s5pv210.h>
  17. #include <plat/regs-serial.h>
  18. static struct s3c24xx_uart_clksrc s5pv210_serial_clocks[] = {
  19. [0] = {
  20. .name = "pclk",
  21. .divisor = 1,
  22. .min_baud = 0,
  23. .max_baud = 0,
  24. },
  25. };
  26. /* uart registration process */
  27. void __init s5pv210_common_init_uarts(struct s3c2410_uartcfg *cfg, int no)
  28. {
  29. struct s3c2410_uartcfg *tcfg = cfg;
  30. u32 ucnt;
  31. for (ucnt = 0; ucnt < no; ucnt++, tcfg++) {
  32. if (!tcfg->clocks) {
  33. tcfg->clocks = s5pv210_serial_clocks;
  34. tcfg->clocks_size = ARRAY_SIZE(s5pv210_serial_clocks);
  35. }
  36. }
  37. s3c24xx_init_uartdevs("s5pv210-uart", s5p_uart_resources, cfg, no);
  38. }