clk_get()

struct clk *clk_get(struct device *dev, const char *id),对于SPI时钟,第一个参数必须不能为NULL。

函数用于获取时钟信息,函数内部会将传入的“spi”字符串和系统中各时钟的名字进行比较,看是否匹配,看上面的分析可知,SPI控制器时钟注册时的时钟名也是“spi”,这个过程实际上和device,driver的匹配过程是类似的。clk_get源码如下:
struct clk *clk_get(struct device *dev, const char *id)
{
  struct clk *p;
  struct clk *clk = ERR_PTR(-ENOENT);
  int idno;
  if (dev == NULL || dev->bus != &platform_bus_type)
  idno = -1;
  else
  idno = to_platform_device(dev)->id;
 
  spin_lock(&clocks_lock);
  list_for_each_entry(p, &clocks, list) {
  if (p->id == idno &&
  strcmp(id, p->name) == 0 &&
  try_module_get(p->owner)) {
  clk = p;
  break;
  }
  }

你可能感兴趣的:(linux/kernel)